Changesets: spring
develop 554ce716
Timestamp: 2011-08-22 11:09:37 Author: hoijui [ Details ] [ Diff ] |
re-enable runtime enable/disable functionality for special log-record-subscribers [fix] This prevents endless loops in the CrashHandler's on certain fatal errors. |
||
mod - rts/System/Log/LogSinkHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/System/Log/LogSinkHandler.h | [ Diff ] [ File ] | ||
mod - rts/System/Platform/Linux/CrashHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/System/Platform/Win/CrashHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/System/Platform/errorhandler.cpp | [ Diff ] [ File ] | ||
develop 60dfef9b
Timestamp: 2011-08-21 23:12:07 Author: Kaylewt [ Details ] [ Diff ] |
fix memory corruption with stacked transports (0002618) | ||
mod - rts/Sim/Units/Unit.cpp | [ Diff ] [ File ] | ||
mod - rts/Sim/Units/UnitTypes/TransportUnit.cpp | [ Diff ] [ File ] | ||
mod - rts/Sim/Units/UnitTypes/TransportUnit.h | [ Diff ] [ File ] | ||
develop f8c0f8bc
Timestamp: 2011-08-21 21:25:46 Author: abma [ Details ] [ Diff ] |
(installer) remove slim mode (use portable-minimal-archive!) | ||
mod - installer/sections/portable.nsh | [ Diff ] [ File ] | ||
mod - installer/sections/sectiondesc.nsh | [ Diff ] [ File ] | ||
mod - installer/sections/setupSections.nsh | [ Diff ] [ File ] | ||
mod - installer/sections/shortcuts_startMenu.nsh | [ Diff ] [ File ] | ||
mod - installer/sections/springsettings.nsh | [ Diff ] [ File ] | ||
mod - installer/spring.nsi | [ Diff ] [ File ] | ||
mod - installer/springsettings.nsh | [ Diff ] [ File ] | ||
develop 6e7668ee
Timestamp: 2011-08-21 21:10:41 Author: abma [ Details ] [ Diff ] |
(installer) fix portable mode | ||
mod - installer/sections/main.nsh | [ Diff ] [ File ] | ||
mod - installer/sections/portable.nsh | [ Diff ] [ File ] | ||
mod - installer/spring.nsi | [ Diff ] [ File ] | ||
develop 5271e09e
Timestamp: 2011-08-21 04:36:40 Author: daftalx [ Details ] [ Diff ] |
rename Mac bundle to specify OS version | ||
mod - buildbot/slave/create_Mac_bundle.sh | [ Diff ] [ File ] | ||
develop 94702d56
Timestamp: 2011-08-21 01:28:53 Author: abma [ Details ] [ Diff ] |
(buildbot) fix config (in python - is always minus) | ||
mod - buildbot/master/master.cfg | [ Diff ] [ File ] | ||
develop 9b6262b3
Timestamp: 2011-08-21 01:12:02 Author: abma [ Details ] [ Diff ] |
(buildbot) clean correct dir + create mac-bundle only daily | ||
mod - buildbot/master/master.cfg | [ Diff ] [ File ] | ||
mod - buildbot/slave/create_Mac_bundle.sh | [ Diff ] [ File ] | ||
develop 220519e7
Timestamp: 2011-08-20 23:59:33 Author: abma [ Details ] [ Diff ] |
(buildbot) fix path for cleaning temp dir + create symlink | ||
mod - buildbot/slave/create_Mac_bundle.sh | [ Diff ] [ File ] | ||
develop 20b1d0a1
Timestamp: 2011-08-20 23:43:10 Author: abma [ Details ] [ Diff ] |
(buildbot) rsync into the same folder as the win32 buildbot + cleanup tmp dir | ||
mod - buildbot/slave/create_Mac_bundle.sh | [ Diff ] [ File ] | ||
mod - buildbot/slave/rsync-mac.sh | [ Diff ] [ File ] | ||
develop 000fac63
Timestamp: 2011-08-20 23:17:49 Author: abma [ Details ] [ Diff ] |
(buildbot) rsync mac to springrts.com | ||
mod - buildbot/master/master.cfg | [ Diff ] [ File ] | ||
develop c682dd05
Timestamp: 2011-08-20 23:15:36 Author: abma [ Details ] [ Diff ] |
(buildbot) add upload script for macos buildslave | ||
add - buildbot/slave/rsync-mac.sh | [ Diff ] [ File ] | ||
develop 6d3389a7
Timestamp: 2011-08-20 18:11:35 Author: daftalx [ Details ] [ Diff ] |
[APPLE] Fix Bundle .zip and .app file name .zip is prefixed with tested OS version (currently 10.6 SnowLeopard) |
||
mod - buildbot/slave/create_Mac_bundle.sh | [ Diff ] [ File ] | ||
develop a85cafa1
Timestamp: 2011-08-20 17:40:36 Author: abma [ Details ] [ Diff ] |
Merge pull request #23 from daftalx/patch-1 rename Mac bundle to specify OS version |
||
mod - buildbot/slave/create_Mac_bundle.sh | [ Diff ] [ File ] | ||
develop 71088224
Timestamp: 2011-08-20 17:35:16 Author: zerver [ Details ] [ Diff ] |
Fix MSVC compile errors | ||
mod - rts/Rendering/Models/ModelDrawer.cpp | [ Diff ] [ File ] | ||
mod - rts/build/vstudio8/rts.vcproj | [ Diff ] [ File ] | ||
develop 8f407adf
Timestamp: 2011-08-20 17:34:38 Author: zerver [ Details ] [ Diff ] |
LuaSyncedRead::GetFeaturesInCylinder | ||
mod - rts/Lua/LuaSyncedRead.cpp | [ Diff ] [ File ] | ||
mod - rts/Lua/LuaSyncedRead.h | [ Diff ] [ File ] | ||
mod - rts/Sim/Misc/QuadField.cpp | [ Diff ] [ File ] | ||
mod - rts/Sim/Misc/QuadField.h | [ Diff ] [ File ] | ||
develop fa4b4c86
Timestamp: 2011-08-20 16:19:57 Author: hoijui [ Details ] [ Diff ] |
make unitsync work again (broken in 5ee7220183336f729afd3d92368b103990b4f146) [fix] | ||
mod - tools/unitsync/unitsync.cpp | [ Diff ] [ File ] | ||
develop ecc48dc8
Timestamp: 2011-08-20 15:27:37 Author: hoijui [ Details ] [ Diff ] |
refactor log-message recording to event conversion instead of through LogOutput, it is now connected to the new systems backend, as an extra sink that allows registering listeners in an OO conform way. before: LogOutput -> InfoConsole -> EventHandler::AddConsoleLine() new: LOG() -> ... -> Backend -> LogSinkHandler -> InfoConsole -> EventHandler::AddConsoleLine() |
||
mod - rts/Game/Game.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UI/InfoConsole.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UI/InfoConsole.h | [ Diff ] [ File ] | ||
mod - rts/Lua/LuaEventBatch.h | [ Diff ] [ File ] | ||
mod - rts/Lua/LuaHandle.cpp | [ Diff ] [ File ] | ||
mod - rts/Lua/LuaHandle.h | [ Diff ] [ File ] | ||
mod - rts/System/CMakeLists.txt | [ Diff ] [ File ] | ||
mod - rts/System/EventClient.cpp | [ Diff ] [ File ] | ||
mod - rts/System/EventClient.h | [ Diff ] [ File ] | ||
mod - rts/System/EventHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/System/EventHandler.h | [ Diff ] [ File ] | ||
add - rts/System/Log/LogSinkHandler.cpp | [ Diff ] [ File ] | ||
add - rts/System/Log/LogSinkHandler.h | [ Diff ] [ File ] | ||
develop 3f58b24c
Timestamp: 2011-08-20 14:33:16 Author: abma [ Details ] [ Diff ] |
update changelog | ||
mod - doc/changelog.txt | [ Diff ] [ File ] | ||
develop 4dc1bf23
Timestamp: 2011-08-20 13:46:57 Author: hoijui [ Details ] [ Diff ] |
use ILog.h in Game.cpp, GuiHandler.cpp & UnsyncedGameCommands.cpp | ||
mod - rts/Game/Game.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UI/GuiHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UnsyncedGameCommands.cpp | [ Diff ] [ File ] | ||
develop 3c477c0b
Timestamp: 2011-08-20 13:43:01 Author: hoijui [ Details ] [ Diff ] |
cleanup some [nlc] | ||
mod - rts/Game/Game.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UI/GuiHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UnsyncedGameCommands.cpp | [ Diff ] [ File ] | ||
develop 8907d1e1
Timestamp: 2011-08-20 11:47:13 Author: hoijui [ Details ] [ Diff ] |
use ILog.h in PreGame.cpp | ||
mod - rts/Game/PreGame.cpp | [ Diff ] [ File ] | ||
develop f8bed306
Timestamp: 2011-08-20 11:46:30 Author: hoijui [ Details ] [ Diff ] |
add missing include for LogOutput.h | ||
mod - rts/Game/Game.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UnsyncedGameCommands.cpp | [ Diff ] [ File ] | ||
develop 618c805c
Timestamp: 2011-08-20 11:45:44 Author: hoijui [ Details ] [ Diff ] |
`logOutput.SetLastMsgPos` -> `eventHandler.LastMessagePosition` | ||
mod - rts/ExternalAI/AICallback.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/InMapDraw.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UI/InfoConsole.cpp | [ Diff ] [ File ] | ||
mod - rts/Game/UI/InfoConsole.h | [ Diff ] [ File ] | ||
mod - rts/Lua/LuaUnsyncedCtrl.cpp | [ Diff ] [ File ] | ||
mod - rts/Sim/Units/CommandAI/BuilderCAI.cpp | [ Diff ] [ File ] | ||
mod - rts/Sim/Units/CommandAI/FactoryCAI.cpp | [ Diff ] [ File ] | ||
mod - rts/Sim/Units/UnitTypes/Builder.cpp | [ Diff ] [ File ] | ||
mod - rts/System/EventClient.cpp | [ Diff ] [ File ] | ||
mod - rts/System/EventClient.h | [ Diff ] [ File ] | ||
mod - rts/System/EventHandler.cpp | [ Diff ] [ File ] | ||
mod - rts/System/EventHandler.h | [ Diff ] [ File ] | ||
mod - rts/System/LogOutput.cpp | [ Diff ] [ File ] | ||
mod - rts/System/LogOutput.h | [ Diff ] [ File ] | ||
develop 6a410b4f
Timestamp: 2011-08-20 02:20:38 Author: abma [ Details ] [ Diff ] |
(buildbot) add FIXME (delete unused files in the source-directory, as it will grow over time) | ||
mod - buildbot/slave/rsync-docs.sh | [ Diff ] [ File ] | ||
develop 280e979f
Timestamp: 2011-08-20 02:08:50 Author: abma [ Details ] [ Diff ] |
(buildbot) rsync docs to http://spring.osocial.se/ | ||
mod - buildbot/master/master.cfg | [ Diff ] [ File ] | ||
add - buildbot/slave/rsync-docs.sh | [ Diff ] [ File ] | ||