2025-09-11 10:41 CEST

Changesets: spring

Search ] Browse ] Back to Index ]
develop 69ff467c
Timestamp: 2011-09-29 21:13:11
Author: hoijui
Details ] Diff ]
cleanup casing in Util.cmake [CMake] [nlc]
mod - rts/build/cmake/ConfigureFile.cmake Diff ] File ]
mod - rts/build/cmake/Util.cmake Diff ] File ]
develop 8a98dca9
Timestamp: 2011-09-29 20:58:42
Author: hoijui
Details ] Diff ]
reduce var spam in cmake-gui [CMake]
mod - rts/build/cmake/Util.cmake Diff ] File ]
develop 9ab05160
Timestamp: 2011-09-29 20:57:22
Author: hoijui
Details ] Diff ]
rename build source dirs to match their make targets [CMake]
mod - rts/builds/CMakeLists.txt Diff ] File ]
develop 6ce74ffc
Timestamp: 2011-09-29 20:11:49
Author: hoijui
Details ] Diff ]
allow to disable each build type individually at configure stage [CMake]

examples:

cmake -DCONFIGURE_BUILD_default=FALSE
cmake -DCONFIGURE_BUILD_DS=FALSE -DCONFIGURE_BUILD_HL=FALSE
cmake -DCONFIGURE_BUILD_GML=FALSE
mod - rts/builds/CMakeLists.txt Diff ] File ]
develop 17b56631
Timestamp: 2011-09-29 19:00:09
Author: abma
Details ] Diff ]
fix "make demotool" too +
* styled
* added fixme
* cleanup INCLUDE_DIRECTORIES
mod - rts/lib/gml/CMakeLists.txt Diff ] File ]
mod - rts/lib/lobby/Test/CMakeLists.txt Diff ] File ]
mod - tools/DemoTool/CMakeLists.txt Diff ] File ]
mod - tools/unitsync/CMakeLists.txt Diff ] File ]
develop 6ec9d109
Timestamp: 2011-09-29 18:28:56
Author: abma
Details ] Diff ]
fix compile of "make lobby-test"
mod - rts/lib/lobby/Test/CMakeLists.txt Diff ] File ]
develop d3d3f15c
Timestamp: 2011-09-29 14:02:06
Author: abma
Details ] Diff ]
(buildbot) create LATEST that contains the latest version of a branch

http://springrts.com/dl/buildbot/default/develop/LATEST
http://springrts.com/dl/buildbot/default/master/LATEST
mod - buildbot/slave/make_installer.sh Diff ] File ]
develop 1e26e2fe
Timestamp: 2011-09-29 01:39:53
Author: jK
Details ] Diff ]
SMFReadMap: solve gcc warning
mod - rts/Map/SMF/SMFReadMap.cpp Diff ] File ]
develop e307165a
Timestamp: 2011-09-29 01:39:08
Author: jK
Details ] Diff ]
SMFReadMap: build shadingTex again from center heightmap (reverts ece29c593a07)
* shadingTex size is (mapxpw2, mapypw2)
if you now index it with vertex coords you get max: (mapx + 1, mapy + 1)

-> (mapxpw2, mapypw2) ? (mapx + 1, mapy + 1)
<-> (pot(mapx), pot(mapy)) ? (mapx + 1, mapy + 1)

now assume: (pot(mapx), pot(mapy)) = (mapx, mapy)
-> (mapx, mapy) < (mapx + 1, mapy + 1)
--> so ece29c593a07 was causing bufferoverruns in the gfx drivers!

* switching to (pot(mapx + 1), pot(mapy + 1)) is not a solution cause it would increase the memory footprint of the texture a lot, also parts of the rendering queue would need to get adjusted for these new coords
mod - rts/Map/SMF/SMFReadMap.cpp Diff ] File ]
mod - rts/Map/SMF/SMFReadMap.h Diff ] File ]
develop 93cdce79
Timestamp: 2011-09-29 01:23:31
Author: jK
Details ] Diff ]
SMFReadMap: make a few functions private
mod - rts/Map/SMF/SMFReadMap.h Diff ] File ]
develop eee457df
Timestamp: 2011-09-29 01:21:36
Author: jK
Details ] Diff ]
SMFReadMap: fix bug, don't loop waterHeightColors
mod - rts/Map/SMF/SMFReadMap.cpp Diff ] File ]
develop ec2e0e1c
Timestamp: 2011-09-29 00:26:08
Author: hoijui
Details ] Diff ]
allow to use a system-supplied minizip library (thanks dansan & jk) [mantis#2673]
mod - rts/CMakeLists.txt Diff ] File ]
mod - rts/Lua/LuaZip.cpp Diff ] File ]
mod - rts/Sim/Path/Default/PathEstimator.cpp Diff ] File ]
mod - rts/System/FileSystem/ZipArchive.h Diff ] File ]
mod - rts/System/LoadSave/LuaLoadSaveHandler.cpp Diff ] File ]
add - rts/build/cmake/FindMiniZip.cmake Diff ] File ]
mod - rts/builds/DS/CMakeLists.txt Diff ] File ]
mod - rts/lib/minizip/CMakeLists.txt Diff ] File ]
mod - tools/ArchiveMover/ArchiveMover.cpp Diff ] File ]
mod - tools/ArchiveMover/CMakeLists.txt Diff ] File ]
mod - tools/unitsync/CMakeLists.txt Diff ] File ]
develop 2ee67eab
Timestamp: 2011-09-28 20:55:04
Author: hoijui
Details ] Diff ]
initialize configHandler to NULL (thanks Beherith) [fix]

This might fix a crash on startup in MSVC, described here:
http://springrts.com/phpbb/viewtopic.php?p=501464#p501464
mod - rts/System/Config/ConfigHandler.cpp Diff ] File ]
develop 0af42dd9
Timestamp: 2011-09-27 08:34:02
Author: hoijui
Details ] Diff ]
empty the log file before starting to write to it [fix]
mod - rts/System/Log/FileSink.cpp Diff ] File ]
develop cf337bd6
Timestamp: 2011-09-27 02:33:17
Author: jK
Details ] Diff ]
SMFReadMap: reduce var-scope & remove redundant 0-check before glDeleteTextures
mod - rts/Map/SMF/SMFReadMap.cpp Diff ] File ]
develop dc63f6ad
Timestamp: 2011-09-27 00:29:51
Author: hoijui
Details ] Diff ]
turn off flushing to log-file completely

This was discussed and decided in the engine dev meeting of
26. September 2011.
This might lower performance issues, especially with dedicated server.
mod - rts/System/Log/FileSink.cpp Diff ] File ]
develop d193d36c
Timestamp: 2011-09-26 22:39:23
Author: jK
Details ] Diff ]
whitespace
mod - rts/Map/SMF/SMFReadMap.cpp Diff ] File ]
develop 9187c1ba
Timestamp: 2011-09-26 21:36:16
Author: abma
Details ] Diff ]
Revert "(unitsync) add SetMinLogLevel(int level) to api"

This reverts commit f89666e6203cf3ce9952d1dc1144b608f7ca2665.
mod - tools/unitsync/unitsync.cpp Diff ] File ]
mod - tools/unitsync/unitsync_api.h Diff ] File ]
develop 5fdaec66
Timestamp: 2011-09-26 21:05:49
Author: hoijui
Details ] Diff ]
disable console logging for unitsync [CMake]

It just spammed the console of the application that used the library.
It still logs to unitsync.log.
mod - tools/unitsync/CMakeLists.txt Diff ] File ]
develop eec54a1e
Timestamp: 2011-09-26 20:45:06
Author: hoijui
Details ] Diff ]
Revert "allow to override the default data-dir locations with env vars USERPROFILE and PROGRAMDATA on windows"

This reverts commit a84151f62f37e9f5fc9a2aff01f359b16521cd1c.

re-simplification
mod - rts/System/FileSystem/DataDirLocater.cpp Diff ] File ]
develop 4bf206a6
Timestamp: 2011-09-26 20:44:07
Author: hoijui
Details ] Diff ]
Revert "adjust global data-dir location on windows to match previous location [fix] [mantis#2670]"

This reverts commit da75dd3277d72d572f917693b72d3cbe06f5eb61.

re-simplification
mod - rts/System/FileSystem/DataDirLocater.cpp Diff ] File ]
develop 62942431
Timestamp: 2011-09-26 20:43:38
Author: hoijui
Details ] Diff ]
adjust global data-dir location on windows to match previous location [fix] [mantis#2670]
mod - rts/System/FileSystem/DataDirLocater.cpp Diff ] File ]
develop f89666e6
Timestamp: 2011-09-26 19:52:16
Author: abma
Details ] Diff ]
(unitsync) add SetMinLogLevel(int level) to api
mod - tools/unitsync/unitsync.cpp Diff ] File ]
mod - tools/unitsync/unitsync_api.h Diff ] File ]
develop d188a76b
Timestamp: 2011-09-26 00:41:30
Author: Tobi Vollebregt
Details ] Diff ]
(buildbot) warn on warnings in validationtests
mod - buildbot/master/master.cfg Diff ] File ]
develop da13b1d5
Timestamp: 2011-09-26 00:40:42
Author: Tobi Vollebregt
Details ] Diff ]
(buildbot) check config before reload
mod - buildbot/master/buildbot.mk Diff ] File ]
First  Prev  1 2 3 ... 110 ... 220 ... 330 ... 440 ... 459 460 461 462 463 464 465 ... 550 ... 660 ... 770 ... 880 ... 990 ... 1057 1058 1059  Next  Last