Note
Please note that this is original list of differences written by Marcin when forking Gnokii, so it represents state of the code in that time.
phones (they return everything in Unicode) things are converted from Unicode and again to Unicode in other places. No more unnecessary conversions.
in files, not in “main” phone structure. It can make some problems, when will try to support two phones on two serial ports in one application.
to “main” phone modules. Very good idea for things, which are available only for few models and for all other will be UNIMPLEMENTED. It includes also some obsolete functions - why should we compile RLP source, when all new better phones have modems built in ?
Gnokii/MyGnokii has to have some compatibility with previously written source. In Gammu some solutions are reimplemented and done easier.
no more reimplementing C libraries in source - see snprintf in gnokii.
more OS supported.
better sharing source. Less source = smaller application easier to debug.
better user friendly interface
no more 2 years rewriting source...
it’s easier to see, what frames are implemented, what not (in phone modules they’re put line after line).
better compatibility with ANSI C = no warnings in MS VC 6
all locations for user start from 0 (in Gnokii some from 0, some from 1)
some things like SMS can be accessed few ways
when possible, there are used “constant” locations. I will explain on the example:
This is not good. When for example delete one entry from phonebook, other locations “stays” on their places. These are “constant” locations.
With “constant” locations, when delete one location from PC, don’t have to read full memory from phone.
etc. etc.
Of course, some of these things can be in the future in gnokii too...