summaryrefslogtreecommitdiff
path: root/xgps
Commit message (Collapse)AuthorAgeFilesLines
...
* Change the name of the internal gps.client module to gps.clienthelpers.Eric S. Raymond2010-04-171-13/+13
| | | | | We're going to actually expose a module with the name gps.client, so this has to get out of the way
* Fix name in comment.Eric S. Raymond2010-04-161-1/+1
|
* Fixed channel-overflow bug in xgps.Eric S. Raymond2010-04-101-1/+4
|
* Implement missing argument parsing so xgps can watch a remote daemon.Eric S. Raymond2010-04-081-6/+15
|
* Add crosshairs to the sky plotChris Kuethe2010-04-021-0/+12
|
* Make xgps robust against JSON with no time field.Eric S. Raymond2010-03-141-1/+7
|
* Copyright stamps everywhere. No code changes.Eric S. Raymond2010-03-111-0/+3
|
* Python xgps is ready for production, so bump version to 1.0Eric S. Raymond2010-01-151-1/+1
|
* pygtk pango layout objects can indeed report their size.Eric S. Raymond2010-01-121-4/+7
|
* Internal IPv6 support, derived from a support patch by Olivier Mehani.Eric S. Raymond2010-01-121-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | The patch original is at: https://lists.berlios.de/pipermail/gpsd-dev/attachments/20100111/85ad4e15/attachment.bin This revision changes netlib_connectsock() to take a first argument that is an address family and can specify IPv4, IPv6, or either. It also changes gpsd.c to open two client sockets, one IPv4 and one IPv6, and listen on both. As a required cleanup, a number of defaults to "127.0.0.1" become defaults to "localhost" so we're not hardwiring in IPv4 assumptions anymore. I've omitted a significant portion of the Mehani patch that changed the interface of the client library in an incompatible way. Currently there is no way to make gpsd listen to IPv4 or IPv6 only, and no way to make a client query over IPV4 or IPv6 only. Also, we'd really like to be able to condition out IPv6 or (someday) IPv4 support for a leaner runtime, and there's no way to do that yet, either. Under IPv4, regression tests pass; live operation with a GPS mouse and the aishub feed both work. However, the resulting code does not splint clean; this will need to be fixed, and that's going to be tricky due to the new sockaddr_t struct.
* Replace tabs by spaces where they were used for identation.Bernd Zeimetz2010-01-081-4/+4
|
* More unfo in type 21 display.Eric S. Raymond2009-12-221-1/+1
|
* Mere in data from type 18 messages.Eric S. Raymond2009-12-211-2/+2
|
* Watch AIS message types 12 and 14.Eric S. Raymond2009-12-211-0/+15
|
* Monitor AIS type 4 messages.Eric S. Raymond2009-12-211-4/+10
|
* Suppress a pygtk warning.Eric S. Raymond2009-12-211-0/+1
|
* Make AIS display honor the selected degree format.Eric S. Raymond2009-12-211-3/+4
|
* Automatically turn on AIS display when we have an AIS source.Eric S. Raymond2009-12-211-11/+16
|
* Include ship type information in AIS display.Eric S. Raymond2009-12-211-5/+5
|
* Merge CNB information with Type 5 information.Eric S. Raymond2009-12-211-31/+35
|
* Make the entry-aging logic in the AIS display actually work.Eric S. Raymond2009-12-211-2/+4
|
* More AIS tweaks. Test client is turning up real bugs.Eric S. Raymond2009-12-201-4/+13
|
* Various AIS corrections turned up by working on xgps's AIS display.Eric S. Raymond2009-12-201-6/+29
|
* Add more message types to the AIS display.Eric S. Raymond2009-12-201-7/+15
|
* AIS storage managenent with timeouts.Eric S. Raymond2009-12-201-3/+20
|
* First display of AIS data from Type 5 messages.Eric S. Raymond2009-12-201-4/+6
|
* AIS window now lives in a properly-sized ScrollWindow.Eric S. Raymond2009-12-201-9/+10
|
* AIS window is hidden by default.Eric S. Raymond2009-12-201-1/+3
|
* Add an AIS window (not yet updated).Eric S. Raymond2009-12-201-3/+45
|
* A cleaner way to make the window boundary elastic.Eric S. Raymond2009-12-171-3/+2
|
* Replace many show() method calls with one show_all()Eric S. Raymond2009-12-171-9/+1
|
* Found a kluge for making the top-level window elastic.Eric S. Raymond2009-12-171-1/+6
|
* Clean up after a name change.Eric S. Raymond2009-12-171-3/+3
|
* Attempt to get xgps top-level window to resize dynamically when I hide widgets.Eric S. Raymond2009-12-161-0/+1
| | | | | It doesn't work, probably because there's some bit of black magic I'm missing. I've sent a question to the pygtk list.
* View menu for xgps.Eric S. Raymond2009-12-161-1/+29
| | | | | Not working quite right yet, we want the window to resize and repack when the view changes.
* Add File and Units menu to xgps.Eric S. Raymond2009-12-161-29/+35
|
* Rename gpsclient extension module so it initializes properly.Eric S. Raymond2009-12-161-9/+17
|
* Uniform handling of unit-system defaults and -u in xgps, cgps, and lcdgps.Eric S. Raymond2009-12-151-3/+3
|
* Replace the old Motif-based xgps with a new pygtk-based xgps (formerly xgps2).Eric S. Raymond2009-12-151-0/+468
Replaces 1200-odd lines of difficult-to-maintain C code with 400-odd-lines of Python.