Project

General

Profile

Activity

From 2012-07-27 to 2012-08-09

2012-08-09

21:05 Revision ef2a98ee (github): Fixed: Errors with string formatting
With QString-based classes, sprintf() is not needed: just
use the arg() methods to replace any %1, %2, etc. markers.
...
skyjake
21:03 Revision c0648b53 (github): GCC|Clang: Fixed build
C++ STL headers must not be included from inside namespaces. skyjake
04:54 Revision d3ab9a03 (github): Documentation|Fixed: Fix various doxygen markup issues
danij
04:06 Revision 1acf2a03 (github): Cleanup
danij
01:57 Revision 738b0cb3 (github): GCC|Fixed: Fix deprecated string constant conversion warnings
danij
01:20 Revision 234b278e (github): Homepage: Further minor style tweaks
danij

2012-08-06

08:43 Revision 18edf78a (github): Homepage: Tweaked stylesheet for the new forums theme
Added a new custom "Deng" phpBB forum theme. This theme has been
designed to inherit most of its rules from the homep...
danij

2012-08-05

17:08 Revision 6dbb2eaa (github): Console: Added notes to "help" command ouput re "listgames" and "listvars"
danij
15:59 Revision 29ab1aea (github): Refactor: materialvariant_t is now a class named de::MaterialVariant
MaterialVariant is the name of the opaque pointer used with the
C wrapper API for de::MaterialVariant
danij
13:38 Revision 886f465a (github): Refactor: Switched source files for material_t and materialvariant_t to C++
danij
07:35 Bug #1073 (Closed): Automap - secret line flag and door glows
It would appear that the behavior that locked door glows don't appear on lines flagged as secret, on the automap, has... vermil
03:26 Revision 372e520b (github): Cleanup
danij
03:15 Revision f533753c (github): Refactor|de::Texture: Do not take ownership of analysis data
Also, do not destroy analysis data when the GL textures of derived
variants are released (unnecessary as the analyses...
danij
02:34 Revision 96d402b0 (github): Refactor|de::Texture: Do not take ownership of the user data
danij
02:17 Revision 961376d2 (github): Fixed: de::Texture not correctly initialized
C++ doesn't (yet) feature constructor delegation, so we'll just live
with this minor duplication. This will be overha...
danij

2012-08-04

20:12 Revision d4fc6c8d (github): Refactor: texture_t is now a class named de::Texture
Texture is the name of the opaque pointer used with the C wrapper
API for de::Texture
danij
14:19 Revision a97a997a (github): de::TextureVariant|Refactor: Add default TexSource to constructor, use QFlag for flags
danij
13:54 Revision bf77235c (github): Refactor: texturevariant_t is now a class named de::TextureVariant
TextureVariant is the name of the opague pointer used with the
C wrapper API for de::TextureVariant
danij
12:07 Revision 0e8dbc40 (github): Refactor: Switched source files for Texture and Textures to C++
danij
11:22 Revision 98c62176 (github): Documentation: Add material and texture sources to the 'resource' group
danij
11:11 Revision 264ef5f9 (github): Refactor: Moved material and texture source files under /resource
danij
10:25 Revision e80251a0 (github): Refactor|Textures: Updates following switch to C++
danij

2012-08-03

23:49 Revision 16801ba0 (github): Textures|Refactor: Switched to C++
danij
23:46 Revision 6151c510 (github): Textures: Cleanup
danij
22:44 Revision dde4234e (github): Refactor|Materials: Began refactorings to address a crash during engine reset
danij
14:06 Revision a5215c10 (github): Materials|Refactor: Switched to C++
danij
14:01 Revision d858c173 (github): Materials: Cleanup
danij
13:20 Revision 025c73a6 (github): Fix typo
danij

2012-07-31

21:49 Revision 90a83deb (github): Refactor|Game Save: SaveInfos are now freely swappable (in Hexen) as intended
danij
13:34 Revision d6e62ae8 (github): Refactor|Game Save: Moved the save file path out of SaveInfo
The save file path for a game save state should not be stored within
SaveInfo as this prevents us from "hot swapping"...
danij
11:43 Revision 1a2e6e9d (github): Refactor|Game Save: Various game save code clarity refactorings
danij
09:28 Revision f5f47182 (github): Documentation|Game Save: Updated doxygen boilerplate
danij
09:23 Revision 8e13c951 (github): Refactor|Game Save: Hide save path composition with the Game Save module
Other modules should not need knowledge of the save file paths or
how they are composited.
danij
08:27 Revision 24dc3676 (github): Fixed|All Games: Do not allow loading non-userwritable save slots with -loadgame
Previously it was possible to coax Hexen into loading the base slot
from an earlier game session from the command lin...
danij
07:05 Revision e4cce639 (github): Fixed|Game Save|Hexen: Mismanagement of SaveInfo data when saving in Hexen
In Hexen the save state is written to the "base" slot before later
being copied behind the scenes to whichever user-w...
danij
04:56 Revision d0e5f2d0 (github): All Games|Added: Optional load confirmation on player reborn
When the game is configured to automatically choose a game state
for loading upon player reborn, present the user wit...
danij
02:14 Revision e92dd3c8 (github): libcommon: Minor cleanup
danij
00:33 Revision 23223012 (github): Added|Game Menu: Simple menu page for configuring game save options
danij

2012-07-30

22:16 Revision 4bc97033 (github): Fixed|Ubuntu|dsFluidSynth: Compilation settings
The define _BSD_SOURCE is required for usleep(). skyjake
21:57 Revision a0c9f997 (github): Fixed|Unix|libdeng2: String comparison functions for C code
On Unix platforms, always include <strings.h> for the platform's
string comparison functions when using the libdeng2 ...
skyjake
21:22 Revision 83a83cd8 (github): Wad Map Converter|Refactor: Catch thrown Id1Map::LumpBufferErrors in ConvertMapHook()
We can recover from such an error, abandoning the conversion and
trashing all data built up until failure. It is not ...
danij
19:56 Revision 4204d123 (github): Wad Map Converter: Cleanup
danij
19:40 Revision e0d78046 (github): Wad Map Converter|Refactor: Replaced lumpInfos with a std::map<MapLumpType, MapLumpInfo*> set
danij
18:35 Revision 3174c971 (github): Merge branch 'master' of ssh://deng.git.sourceforge.net/gitroot/deng/deng
danij
18:33 Revision 3d348cf8 (github): GCC|Fixed|Clang: Fixed build
Goto jump past variable initialization is not permitted. danij
18:28 Revision 137aad62 (github): Wad Map Converter|Fixed: Fixed warning about comparison between signed and unsigned
danij
14:11 Revision d0bb5b8b (github): Fixed|Dehacked Reader|Ubuntu: String comparison functions
The <strings.h> system header is required. skyjake
14:10 Revision e8766546 (github): Fixed|libdeng|Ubuntu: String comparison functions
The <strings.h> system header is required. skyjake
13:58 Revision 4fb8eecf (github): Unix|libdeng: Attempting to fix uint/ushort declarations
skyjake
13:24 Revision bbc840f6 (github): Fixed|Snowberry: Unicode conversion in List widget (load order dialog)
skyjake
13:23 Revision 1631e53a (github): Fixed|libdeng: Use "uint32_t" instead of "uint"
Todo for later: Fix the declaration of "uint" on Ubuntu. skyjake
13:17 Revision ef99fbac (github): Mac OS X|Builder: Do not bundle dsFluidSynth if not included in build
skyjake
10:41 Bug #1073: Automap - secret line flag and door glows
- **status**: open --> fixed
danij

2012-07-29

17:46 Bug #779: Bouncing off edges
It seems to happen quite more frequently on Doom, specially when you're running alongside the walls (not sure if that... roffalcopter
15:35 Revision a5427bc7 (github): Refactor: Moved StringPool and unittest.h to libdeng1
danij
14:21 Revision caaf5041 (github): libdeng2: Added macro DENG2_UNUSED for hiding unused parameter warnings
danij
14:15 Revision 6e8fe405 (github): Cleanup
danij
13:14 Revision ab5225e7 (github): Wad Map Converter|Cleanup: Renamed mapformatid_t as MapFormatId
danij
13:09 Revision 14a5737c (github): Wad Map Converter|Refactor: Moved the mapFormat global into Id1Map
danij
02:06 Bug #1073: Automap - secret line flag and door glows
Fixed for the upcoming Doomsday v1.9.9. danij
02:02 Bug #1072 (Closed): [Snowberry] Unicode conversion in Load Order dialog
Hello, i just obtain this bug:
Runtime Error
An unexpected error occured during the processing of event load-orde...
legluondunet

2012-07-28

12:39 Revision 948221d0 (github): Fix typo
danij
11:46 Revision a167ca0b (github): Wad Map Converter: Cleanup
danij
11:00 Revision 7d2b5b06 (github): Documentation|Wad Map Converter: Add apidocs for the data definition readers
danij
10:58 Revision d885b642 (github): Wad Map Converter: Cleanup
danij
10:17 Revision 87f4ca5c (github): Wad Map Converter: Cleanup
danij
09:53 Revision 35fde8c8 (github): Wad Map Converter|Refactor: Made private all of Id1Map's data structures
danij
09:28 Revision f76a56a6 (github): Wad Map Converter|Refactor: Further cleanup refactorings
danij
08:02 Revision cae47e69 (github): Wad Map Converter|Refactor: Use STL containers in place of the map object arrays
Also removed the fixed MAXPOLYLINES limit (was 32) on the maximum
number of linedefs a "line explicit" polyobj can co...
danij

2012-07-27

19:30 Feature #1561: Send MIDI data to external GM synth
One thing to add. While on other OS it is possible to solve this issue externally (for example on Windows XP using th... amanojyakux
18:50 Revision 6838252a (github): Merge branch 'master' of ssh://deng.git.sourceforge.net/gitroot/deng/deng
danij
18:49 Revision f6c8ad9d (github): Cleanup|Wad Map Converter: Remove unnecessary include of de/LegacyCore
danij
18:01 Revision f8319165 (github): Win32|Fixed: Set an icon for the main window
Doomsday's main window was using the default window icon instead of the
Doomsday.exe icon.
skyjake
16:52 Revision f95bf5a4 (github): Fixed|dsFluidSynth|dsFMOD: Pausing and resuming the song
When a map is loaded, the song may be paused and resumed later.
This way causing a few hundred milliseconds to be los...
skyjake
14:48 Revision 15168c57 (github): Merge branch 'master' into scriptsys
Conflicts:
doomsday/engine/portable/src/dd_init.cpp
doomsday/libdeng2/include/de/c_wrapper.h
doomsday/libdeng2/src...
skyjake
14:21 Revision 97cdb241 (github): libdeng|Memory Zone: Print status in release builds, too
skyjake
14:12 Revision eb2ea479 (github): GCC|Unix: Allow //-comments (C99) and anonymous structs
Our code is not quite standard C. skyjake
09:22 Revision 8d65593d (github): Fixed|Wad Map Converter: Typo
skyjake
09:19 Revision 562dc562 (github): Fixed|libdeng: Typo in "fake memory zone" build define
skyjake
09:14 Revision d8c9fac0 (github): Documentation: Added missing Doxygen stylesheet for libdeng2
skyjake
09:14 Revision e28c071a (github): Documentation|libdeng: Fixed Doxygen issues
skyjake
02:08 Revision e2f2854f (github): Optimize: Use a dictionary of resolved materials during map conversion
Rather than repeatedly resolve material URIs supplied by the map
converter, record them in a StringPool-based diction...
danij
 

Also available in: Atom