1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
ChangeLog for ModeLine Utility by Anders strem & Vidar Hoel
0.6.1 -> 0.6.5
--------------
- Cleaned up the code a bit.
- Decided to use automake, for a more standard installation routine.
- Fixed the error with modeline not recognizing videomemory less than 1 Mb.
(now set to go nuts with memory less than 256kb, if this bothers anyone,
just let me know:)
- Added support for interlaced mode and updated the doublescan mode support
(haven't tried theese out yet, but the might work :/)
Thanks again to Laurent Latil (laurent.latil7@libertysurf.fr) :)
- Moved all the global variables into structures.
+ Probably some more stuff I've forgotten about... :)
0.6.0 -> 0.6.1
--------------
- Just a bugfix
(renamed cmdstr to readstr in src/readfile.c)
0.5.1 -> 0.6.0
--------------
- Made a man page. (modeline.1)
- Updated the configure script and the makefiles.
(removed the --with-[path] stuff and now use the standard
stuff for this)
- Changed the install rule so that the configfile will not be overwritten.
- Removed uninstall rule from makefile
- Added a new option:
-d, --double Specify doublescan mode
Thanks to Laurent Latil (laurent.latil@france.sun.com) :)
NB! I'm not sure it's correct calculation, so use this with extreme care!
- Changed option --widescreen to --wide
- Updated ReadFile() again, so that now you can also use tabs as
separators, not just spaces
- Fixed a bug in GetMemory() which returned -1 if type was not 'M'
It now works to give memory in bytes and kilobytes
- Split the code into three files:
args.c - all parsing of commandline options are done here
readfile.c - here the config file is parsed
modeline.c - the main file. math and output is done here
this was done in an atempt to clean up the code a bit
- Made a small function called getint() to read integers from stdin
(used to get width, heigth and refreshrate)
- Made a new INSTALL file
- Updated the README file (again)
- Added the PLEASE.READ.PLEASE.HELP file
- Added Monitor timings for Hitachi CM751ET 19"
(basicaly the same as 752, with a smaller dot clock)
0.5.0 -> 0.5.1
--------------
- Added COPYING file
- Updated the README file
- Added a warning that is displayed when you start modeline
(disable it with --nowarn)
- Fixed the code for reading the config file, so that you can use just as
many spaces before each line and on either side of the '='
0.4.7 -> 0.5.0
--------------
- Added FrameBuffer output (outputs mode sections for fb.modes and/or
the lilo append line required for matrox cards)
- Added INSTALL file
- Did some changes in the code (renamed some functions and variables)
- Fixed some bugs
0.46 -> 0.4.7
-------------
- Changed the source structure
- Added configure script
- Changed version look (x.yz -> x.y.z)
0.45 -> 0.46
------------
- Added README file
- Added this ChangeLog file
- Fixed some spelling
0.4 -> 0.45
-----------
- Changed name of executable back to modeline...
(Uppercase was a bit unpracticle)
- Added "install"-rule in Makefile
- Made modeline look for config in ~/.mode.conf
0.3 -> 0.4
----------
- Added long options (like --help)
- Changed some options:
* -H to -h for help
* -W to -w for widescreen
* -h to -H for heigth
* -w to -W for width
- Added option "aspect" for use in guessing special modes
(like 1280x1024, which has aspectratio 5:4 instead of 4:3)
- Added prefix & etcdir in Makefile for location of mode.conf
(default of etcdir is /usr/etc)
- Changed name of executable from modeline to ModeLine
- Fixed some spelling errors
|