Custom Query (518 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 518)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#174 fixed Inifile Viewer/editor broken since 3.06 - mutilating display data, truncating edit data Gregg Young guest
Description

Was last operational in 3.0509 See comparative graphics 3.0509 vs. 3.0.8 Commencing binary edits resulted in e.g only 10 of 20 data values presented.

I ran ini.exe from versions 3.5.9, 3.6.0, 3.7.0 & 3.8.0 from separate directories containing just the following 4 files:

fm3dll.dll fm3res.dll fm3res.str \FM2Tools\ini.exe

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-5-9_FM2UTILS-1-1

14/05/07 1:16 2,249,683 0 a--- fm2-3-5-9.wpi 13/05/07 18:05 660,102 0 a--- fm3dll.dll 13/05/07 18:06 145,682 0 a--- fm3res.dll 13/05/07 18:06 33,983 0 a--- fm3res.str 11/11/07 2:42 0 242 a--- ini.exe works OK

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-5-9_FM2UTILS-1-1\FM2Tools

13/05/07 18:06 17,988 0 a--- ini.exe

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-6-0

26/06/07 0:18 1,962,338 65 a--- fm2-3-6-0.wpi 24/06/07 20:39 567,940 0 a--- fm3dll.dll 24/06/07 17:52 146,068 0 a--- fm3res.dll 24/06/07 17:52 33,983 0 a--- FM3RES.STR 11/11/07 2:42 0 240 a--- ini.exe Failed

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-6-0\FM2Tools

24/06/07 17:52 3,500 0 a--- ini.exe

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-7-0

31/08/07 23:22 1,903,007 0 a--- fm2-3-7-0.wpi 31/08/07 17:22 1,068,203 0 a--- fm3dll.dll 31/08/07 17:22 353,158 0 a--- fm3res.dll 31/08/07 17:22 33,980 0 a--- FM3RES.STR 11/11/07 2:42 0 240 a--- ini.exe Failed

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-7-0\FM2Tools

31/08/07 17:22 9,890 0 a--- ini.exe

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-8-0

13/11/07 4:31 1,968,075 305 a--- fm2-3-8-0.WPI 12/11/07 10:03 561,169 0 a--- fm3dll.dll 12/11/07 10:03 148,408 0 a--- fm3res.dll 12/11/07 10:03 33,982 0 a--- FM3RES.STR 11/11/07 2:42 0 240 a--- ini.exe Failed

Directory of D:\VAR\TEMP\OLDER-FM2\FM2-3-8-0\FM2Tools

12/11/07 10:03 3,479 0 a--- ini.exe

#1 wontfix Use Innotek FT2LIB in FM2 Gregg Young
Description

Globally activate the font engine on font engine enabled systems. http://www.edm2.com/index.php/Ft2lib

What I recommend is to use DosLoadModule? and DosQueryProcAddr? to conditionally load and enable the library. This also needs a settings page entry before it can go into production along with code to disable the library when the setting is toggled off.

The enable/disable code should to be wrapped in utility function rather than being done in-line.

The enable code needs to go into InitFM3DLL() in init.c and should be similar to

If lib wanted

EnableFT2Lib()

EnableFT2Lib() will look something like

Try to load library If not loaded

complain

Else

Try to get address

If fail

complain

Else

enable remember enabled

The disable function, DisableFt2Lib(), will look something like

If enabled

Try to load library If not loaded

complain

Else

Try to get address If fail

complain

Else

disable remember disabled unload library unload library (since loaded by enable too)

For an example of how to use DosLoadModule? etc., see the code near line 1819 of misc.c.

#2 fixed Fix progress indicators so they update appropriately Steven Levine Gregg Young
Description

Seek and Scan is probably the worst

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.