comparison doc/jobs @ 12:bff0d802cb7d

Implemented some internationalization support. Implemented i18n.I18nTranslation class to load strings and descriptions from files (with unittest). MTUnknownTypeException removed: its pointless since it's always ignored without even any message. A few fixes to mde.mergetag.read.Reader regarding partial reading. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 22 Feb 2008 11:52:20 +0000
parents b940f267419e
children 0047b364b6d9
comparison
equal deleted inserted replaced
11:b940f267419e 12:bff0d802cb7d
1 In progress: 1 In progress:
2 2
3 To do: 3 To do:
4 * Submit new version of parseTo
4 * Why doesn't input.config filtering via headers "Configs" work? 5 * Why doesn't input.config filtering via headers "Configs" work?
5 * add options support; in particular for whether or not to use threads (and adjust Init to use this).
6 * OutOfMemoryException is not currently checked for − it should be at least in critical places (use high-level catching of all errors?). 6 * OutOfMemoryException is not currently checked for − it should be at least in critical places (use high-level catching of all errors?).
7 * Sensitivity adjustments. From es_a_out: 7 * Sensitivity adjustments. From es_a_out:
8 /+ FIXME: revise. 8 /+ FIXME: revise.
9 + I can't see any point using HALF_RANGE here, since it should really be used dependant on 9 + I can't see any point using HALF_RANGE here, since it should really be used dependant on
10 + the device attached, not the axis. Also what about adjusted range like X3's throttle? 10 + the device attached, not the axis. Also what about adjusted range like X3's throttle?
31 y = sign(y) * pow(abs(y), a); // sensitivity adjustment by a +/ 31 y = sign(y) * pow(abs(y), a); // sensitivity adjustment by a +/
32 myThis.axis[cast(inputID) s.pop()] = y; 32 myThis.axis[cast(inputID) s.pop()] = y;
33 +/ 33 +/
34 34
35 Done (for git log message): 35 Done (for git log message):
36 * Options class created (barebones). Loading/saving from Init. 36 * Implemented i18n.I18nTranslation class to load strings and descriptions from files (with unittest).
37 * Init no longer runs cleanup functions after initialisation failure. 37 * MTUnknownTypeException removed: its pointless since it's always ignored without even any message.
38 * Improved mergetag exception messages & error reporting. 38 * A few fixes to mde.mergetag.read.Reader regarding partial reading.