tex2rtf-updates Mailing List for tex2rtf
Status: Beta
Brought to you by:
pstieber
You can subscribe to this list here.
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(40) |
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2012 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(6) |
Nov
(14) |
Dec
|
2014 |
Jan
|
Feb
(1) |
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <pst...@us...> - 2014-04-19 08:16:19
|
Revision: 83 http://sourceforge.net/p/tex2rtf/code/83 Author: pstieber Date: 2014-04-19 08:16:17 +0000 (Sat, 19 Apr 2014) Log Message: ----------- Removed VS2008 and VS2012 support. Removed Paths: ------------- trunk/vc11/ trunk/vc9/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2014-04-19 08:11:59
|
Revision: 82 http://sourceforge.net/p/tex2rtf/code/82 Author: pstieber Date: 2014-04-19 08:11:55 +0000 (Sat, 19 Apr 2014) Log Message: ----------- Changed header sentry. Modified Paths: -------------- trunk/src/symbols.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2014-04-19 08:11:13
|
Revision: 81 http://sourceforge.net/p/tex2rtf/code/81 Author: pstieber Date: 2014-04-19 08:11:11 +0000 (Sat, 19 Apr 2014) Log Message: ----------- Updated the copyright year. Modified Paths: -------------- trunk/src/tex2rtf.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2014-04-19 07:56:54
|
Revision: 80 http://sourceforge.net/p/tex2rtf/code/80 Author: pstieber Date: 2014-04-19 07:56:52 +0000 (Sat, 19 Apr 2014) Log Message: ----------- Changed wxSnprintf to wxString stream operator. Modified Paths: -------------- trunk/src/texutils.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2014-04-19 06:40:27
|
Revision: 79 http://sourceforge.net/p/tex2rtf/code/79 Author: pstieber Date: 2014-04-19 06:40:23 +0000 (Sat, 19 Apr 2014) Log Message: ----------- Cleared TitlepageName to prevent setting to the repeated file name FILEROOT_contents.htmlFILEROOT_contents.html on the second pass. Modified Paths: -------------- trunk/src/htmlutil.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2014-02-19 15:32:25
|
Revision: 78 http://sourceforge.net/p/tex2rtf/code/78 Author: pstieber Date: 2014-02-19 15:32:21 +0000 (Wed, 19 Feb 2014) Log Message: ----------- Updated to use wxWidgets 3.1.0 from revision 75931 of the wxWidgets svn repository. Revision Links: -------------- http://sourceforge.net/p/tex2rtf/code/75931 Modified Paths: -------------- trunk/vc12/tex2rtf.vcxproj trunk/vc12/tex2rtf_gui.vcxproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-20 19:11:07
|
Revision: 77 http://sourceforge.net/p/tex2rtf/code/77 Author: pstieber Date: 2013-11-20 19:11:05 +0000 (Wed, 20 Nov 2013) Log Message: ----------- Fixed include paths. Modified Paths: -------------- trunk/vc12/tex2rtf.vcxproj trunk/vc12/tex2rtf_gui.vcxproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-20 18:59:13
|
Revision: 76 http://sourceforge.net/p/tex2rtf/code/76 Author: pstieber Date: 2013-11-20 18:59:11 +0000 (Wed, 20 Nov 2013) Log Message: ----------- 1. Removed "Unicode" from the build configuration names. 2. Ignored warning C4428 "universal-character-name encountered in source". 2. Updated to use wxWidgets 3.0.0. Modified Paths: -------------- trunk/vc9/tex2rtf.sln trunk/vc9/tex2rtf.vcproj trunk/vc9/tex2rtf_gui.sln trunk/vc9/tex2rtf_gui.vcproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-20 05:40:48
|
Revision: 75 http://sourceforge.net/p/tex2rtf/code/75 Author: pstieber Date: 2013-11-20 05:40:46 +0000 (Wed, 20 Nov 2013) Log Message: ----------- Fixed the Win32 Debug library path. Modified Paths: -------------- trunk/vc9/tex2rtf_gui.vcproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-20 05:35:20
|
Revision: 74 http://sourceforge.net/p/tex2rtf/code/74 Author: pstieber Date: 2013-11-20 05:35:16 +0000 (Wed, 20 Nov 2013) Log Message: ----------- 1. Fixed BigBuffer deletes by adding square brackets. 2. Fixed wxSnprintf usage by adding constants that indicate the size of wxChar buffers const size_t bufSize = N; wxChar buf[bufSize]; wxSnprintf(buf, bufSize, ... instead of using sizeof wxChar buf[N]; wxSnprintf(buf, sizeof(buf), ... to prevent a write past the end of the wxChar buffer. The wxSnprintf function writes a null character at the end of the buffer to guarantee data that is too long is terminated. Since wxChar represents Unicode strings that are 2 bytes and sizeof(buf) returns the number of characters not elements in the wxChar buffer, the null was placed past the end of the array. Modified Paths: -------------- trunk/src/bmputils.h trunk/src/htmlutil.cpp trunk/src/rtfutils.cpp trunk/src/table.cpp trunk/src/tex2any.cpp trunk/src/tex2rtf.cpp trunk/src/texutils.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-19 18:21:17
|
Revision: 73 http://sourceforge.net/p/tex2rtf/code/73 Author: pstieber Date: 2013-11-19 18:21:15 +0000 (Tue, 19 Nov 2013) Log Message: ----------- 1. Was getting a stack corruption error when running the 64-bit debug version of the VS 2008 version built with wxWidget 2.9.4. Placing chunks of code in HTMLOnMacro in separate functions made the problem go away. 2. Changed currentMember to pCurrentMember, frame to pFrame, menuBar to pManuBar and HelpInstance to pHelpInstance. 3. Used <> instead of "" around wxWidgets includes. 4. Changed pointer specifier (*) location (Type * -> Type*) 5. Used pre-increment instead of post-increment. 6. Made cosmetic changes. Modified Paths: -------------- trunk/src/htmlutil.cpp trunk/src/rtfutils.cpp trunk/src/tex2rtf.cpp trunk/src/tex2rtf.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-18 00:13:57
|
Revision: 72 http://sourceforge.net/p/tex2rtf/code/72 Author: pstieber Date: 2013-11-18 00:13:55 +0000 (Mon, 18 Nov 2013) Log Message: ----------- Removed Unicode from the build names. Modified Paths: -------------- trunk/vc12/tex2rtf.sln trunk/vc12/tex2rtf.vcxproj trunk/vc12/tex2rtf_gui.sln trunk/vc12/tex2rtf_gui.vcxproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 23:39:24
|
Revision: 71 http://sourceforge.net/p/tex2rtf/code/71 Author: pstieber Date: 2013-11-17 23:39:22 +0000 (Sun, 17 Nov 2013) Log Message: ----------- 1. Reformatted pointer declarations. 2. Changed C-style comments to C++-style. 3. Set pNextChunk to NULL when out of data. Modified Paths: -------------- trunk/src/tex2any.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 23:36:51
|
Revision: 70 http://sourceforge.net/p/tex2rtf/code/70 Author: pstieber Date: 2013-11-17 23:36:48 +0000 (Sun, 17 Nov 2013) Log Message: ----------- 1. Added function comment headers. 2. Made cosmetic indentation changes. 3. Wrapped conditional statements with curly brackets. 4. Used pre increment instead of post increment. Modified Paths: -------------- trunk/src/texutils.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 23:04:47
|
Revision: 69 http://sourceforge.net/p/tex2rtf/code/69 Author: pstieber Date: 2013-11-17 23:04:45 +0000 (Sun, 17 Nov 2013) Log Message: ----------- Added class comment headers and made many of the application function private. Modified Paths: -------------- trunk/src/tex2rtf.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 23:03:38
|
Revision: 68 http://sourceforge.net/p/tex2rtf/code/68 Author: pstieber Date: 2013-11-17 23:03:35 +0000 (Sun, 17 Nov 2013) Log Message: ----------- 1. Added function comment headers. 2. Changed C-style comment to C++-style. 3. Made cosmetic indentation changes. Modified Paths: -------------- trunk/src/htmlutil.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 22:52:11
|
Revision: 67 http://sourceforge.net/p/tex2rtf/code/67 Author: pstieber Date: 2013-11-17 22:52:09 +0000 (Sun, 17 Nov 2013) Log Message: ----------- Removed a blank line at the end of the file. Modified Paths: -------------- trunk/src/maths.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 20:59:05
|
Revision: 66 http://sourceforge.net/p/tex2rtf/code/66 Author: pstieber Date: 2013-11-17 20:59:03 +0000 (Sun, 17 Nov 2013) Log Message: ----------- Changed C-style comments to C++ style. Modified Paths: -------------- trunk/src/tex2any.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 20:50:55
|
Revision: 65 http://sourceforge.net/p/tex2rtf/code/65 Author: pstieber Date: 2013-11-17 20:50:53 +0000 (Sun, 17 Nov 2013) Log Message: ----------- Changed pointer specification style. Modified Paths: -------------- trunk/src/tex2any.h This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-11-17 01:44:18
|
Revision: 64 http://sourceforge.net/p/tex2rtf/code/64 Author: pstieber Date: 2013-11-17 01:44:15 +0000 (Sun, 17 Nov 2013) Log Message: ----------- Updated to use wxWidgets 3.0.0. Modified Paths: -------------- trunk/vc12/tex2rtf.vcxproj trunk/vc12/tex2rtf_gui.vcxproj This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-10-25 23:48:25
|
Revision: 63 http://sourceforge.net/p/tex2rtf/code/63 Author: pstieber Date: 2013-10-25 23:48:21 +0000 (Fri, 25 Oct 2013) Log Message: ----------- Updated the copyright year. Modified Paths: -------------- trunk/src/tex2rtf.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-10-25 22:20:00
|
Revision: 62 http://sourceforge.net/p/tex2rtf/code/62 Author: pstieber Date: 2013-10-25 22:19:58 +0000 (Fri, 25 Oct 2013) Log Message: ----------- Added Visual Studio 2013 solution and project files. Added Paths: ----------- trunk/vc12/ trunk/vc12/tex2rtf.sln trunk/vc12/tex2rtf.vcxproj trunk/vc12/tex2rtf.vcxproj.filters trunk/vc12/tex2rtf_gui.sln trunk/vc12/tex2rtf_gui.vcxproj trunk/vc12/tex2rtf_gui.vcxproj.filters This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-10-10 17:03:05
|
Revision: 61 http://sourceforge.net/p/tex2rtf/code/61 Author: pstieber Date: 2013-10-10 17:03:03 +0000 (Thu, 10 Oct 2013) Log Message: ----------- Replaced wxSnprintf calls with wxString << operations to prevent crashes on the mac. Modified Paths: -------------- trunk/src/htmlutil.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-10-10 16:31:35
|
Revision: 60 http://sourceforge.net/p/tex2rtf/code/60 Author: pstieber Date: 2013-10-10 16:31:33 +0000 (Thu, 10 Oct 2013) Log Message: ----------- Indicated the default conversion type. Modified Paths: -------------- trunk/src/tex2rtf.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2013-10-09 18:48:09
|
Revision: 59 http://sourceforge.net/p/tex2rtf/code/59 Author: pstieber Date: 2013-10-09 18:48:06 +0000 (Wed, 09 Oct 2013) Log Message: ----------- Added Unicode values for certain characters. Modified Paths: -------------- trunk/src/rtfutils.cpp trunk/src/tex2any.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |