aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-11-08+ SFileAddListFile and SFileCompactArchive now take "const TCHAR *" instead ↵Zezula Ladislav
of "const char *" + Fixed some bugs
2017-11-07+ Fixed small bugLadislav Zezula
2017-10-30Merge branch 'master' of https://github.com/ladislav-zezula/StormLibZezula Ladislav
2017-10-30+ Fixed an AlwaysTrue conditionZezula Ladislav
2017-10-23Merge pull request #115 from Lectem/fix_cmakeLadislav Zezula
CMake: Remove misleading opts add DLL support - fixes #114 Merged. Thank you for the contribution.
2017-10-17Merge branch 'master' of https://github.com/ladislav-zezula/StormLibLadislav Zezula
2017-10-17+ CosmeticsLadislav Zezula
2017-09-19CMake: Remove misleading opts add DLL supportLectem
This commit fixes #114 The options UNICODE and BUILD_DYNAMIC_MODULE were only changing the name of the libraries and not the flags used for compilation. I removed them for now, but if we want to add Unicode/Runtime version to CMake it will be possible later. This fixes #114 as the .lib created by CMake on windows can no more be mistaken for another one. If people need to build a specific version of the library, they can for now use the cmake cache to change the /M(D/T) flag and/or add the UNICODE and _UNICODE defines. I changed the option name for the test executable so that it won't conflict with other projects, and made sure BUILD_TESTING is checked. When BUILD_TESTING (the official option for CTest) is ON, STORM_BUILD_TESTS is by default ON. If BUILD_TESTING is set to OFF, then STORM_BUILD_TESTS can only be set to OFF. I also added the stormlib_dll/StormLib.def file to the source list when using MSVC, which means you can now correctly create StormLib.dll and its associated .lib and .exp by setting BUILD_SHARED_LIBS to ON.
2017-09-18Merge pull request #113 from Lectem/STORMLIB_NO_AUTO_LINKLadislav Zezula
Stormlib no auto link
2017-09-17Add STORMLIB_NO_AUTO_LINK define to disable linking with pragmaLectem
2017-09-17cmake target_* requires v2.8.12Lectem
2017-08-29Merge branch 'master' of https://github.com/ladislav-zezula/StormLibZezula Ladislav
2017-08-29+ Fixed patching bugZezula Ladislav
2017-08-28Merge pull request #110 from Lectem/patch-2Ladislav Zezula
SFileSetFilePointer error when new pointer is <0
2017-08-28SFileSetFilePointer error when new pointer is <0Lectem
The standard behaviour for fseek / SetFilePointer when the new pointed value would be negative is to not move the pointer and return an error. See : https://msdn.microsoft.com/en-us/library/windows/desktop/aa365541(v=vs.85).aspx `If a new file pointer is a negative value, the function fails, the file pointer is not moved, and the code returned by GetLastError is ERROR_NEGATIVE_SEEK.`
2017-08-17+ Fixed issue "Internal Files Creation Settings #96"Zezula Ladislav
2017-08-17+ Fixed bug in processing Huffmann compressionZezula Ladislav
2017-08-07+ Space and tab can both be part of the file nameZezula Ladislav
2017-07-28+ Fixed bug when SFileAddFileEx could add a file with MPQ_FILE_SINGLE_UNIT ↵Zezula Ladislav
to a Warcraft III map
2017-07-26Added support for PG1.11.973 protectorLadislav Zezula
2017-03-31Merge pull request #100 from namreeb/masterLadislav Zezula
Updated CMakeLists.txt to accurately name output file under Windows
2017-03-09Updated CMakeLists.txt to accurately name output file under Windowsnamreeb
2017-03-09+ Removed DEFINE from CMakeLists.txtZezula Ladislav
+ Fixed paths to include files
2017-01-17+ Fixed leaked handle when _stat failsLadislav Zezula
2017-01-12+ By "2 GB", I really mean 2 GB.Zezula Ladislav
2017-01-11+ BZIP2 updatedLadislav Zezula
2016-12-18+ Updated subversion number in CMakeLists.txtLadislav Zezula
2016-12-16+ bzip2 upgraded to 1.0.6Ladislav Zezula
2016-12-12+ Release 9.21v9.21Ladislav Zezula
2016-11-20+ Fixes by Pali RoharLadislav Zezula
2016-11-13Merge pull request #92 from Lectem/patch-1Ladislav Zezula
Merged.
2016-11-13use DWORD for get/setlasterrorLectem
2016-11-08+ Define put backLadislav Zezula
2016-11-08+ CMakeLists.txt fixed.Ladislav Zezula
2016-11-06+ Added missing filesLadislav Zezula
2016-11-06+ Reverted include directoriesLadislav Zezula
2016-11-06+ Public include directories moved to "include" directoryLadislav Zezula
2016-11-06Merge pull request #90 from Lectem/masterLadislav Zezula
fix cmake dependency and move headers to include
2016-11-05fix cmake dependency and move headers to includeLectem
2016-10-15Merge pull request #89 from cen1/bzip2linuxLadislav Zezula
Merged. Thanks for the tuneup :-)
2016-10-14On Unix, check if bzip2-devel is installed and fail of not to avoid linker ↵cen1
errors when building. This is due to bzip2 being compiled from source for WIN32 only.
2016-09-30+ Test file updatedLadislav Zezula
2016-09-30Merge branch 'master' of https://github.com/ladislav-zezula/StormLibLadislav Zezula
2016-09-30+ Yet another protectorLadislav Zezula
2016-09-08Merge pull request #87 from heckendorfc/freebsd-openLadislav Zezula
Define O_LARGEFILE as 0 on FreeBSD.
2016-09-05Define O_LARGEFILE as 0 on FreeBSD.Christian Heckendorf
2016-08-30Merge pull request #86 from H0zen/unix-fixesLadislav Zezula
Merged. Thank you for the contribution.
2016-08-30Fix Unix buildsH0zen
-Fix static build on OSX -Fix FreeBSD build
2016-07-15+ Fixed workspace for storm_dllLadislav Zezula
+ Updated storm.dll from Warcraft 1.27
2016-07-14+ Fixed bug in opening SQP archivesLadislav Zezula
+ More efficient version of GetNearestPowerOfTwo