diff --git a/Makefile b/Makefile index d29240c..b50982e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # -*- coding: us-ascii-unix -*- name = harbour-poor-maps -version = 0.4 +version = 0.5 DESTDIR = PREFIX = /usr/local datadir = $(DESTDIR)$(PREFIX)/share/$(name) diff --git a/NEWS b/NEWS index 5c9052b..cc25233 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +Poor Maps 0.5 +============= + + * Show maneuver points along the route polyline + * Keep POIs and routes across sessions + * Allow removing places from history (long tap, context menu) + * Add OpenStreetMap Nominatim geocoder (this is mainly + for redundancy, in case MapQuest Nominatim's servers are down, + but also the version of Nominatim in use might differ) + * Use a redundant Nominatim geocoder for MapQuest Open and OSRM routers + * Add U-line switch in HSL Journey Planner + * Use stock icons on menu page + * Don't auto-center when panning or pinching + * Fix partial tile loading after changing tile source + * Change default GPS polling to one second + * Remove viewbox and nmax arguments from geocoders + * Add an about page + Poor Maps 0.4 ============= diff --git a/TODO b/TODO index 59ec83e..1cb1fa9 100644 --- a/TODO +++ b/TODO @@ -1,21 +1,3 @@ -Poor Maps 0.5 -============= - - [X] Show maneuver points along the route polyline - [X] Keep POIs and routes across sessions - [X] Allow removing places from history (long tap, context menu) - [X] Add OpenStreetMap Nominatim geocoder (this is mainly - for redundancy, in case MapQuest Nominatim's servers are down, - but also the version of Nominatim in use might differ from MapQuest) - [X] Use a redundant Nominatim geocoder for MapQuest Open and OSRM routers - [X] Add U-line switch in HSL Journey Planner - [X] Use stock icons on menu page - [X] Don't auto-center when panning or pinching - [X] Fix partial tile loading after changing tile source - [X] Change default GPS polling to one second - [X] Remove viewbox and nmax arguments from geocoders - [X] Add an about page - Poor Maps 1.0 ============= diff --git a/geocoders/nominatim.py b/geocoders/nominatim.py index 6da5b70..4b6edb6 100644 --- a/geocoders/nominatim.py +++ b/geocoders/nominatim.py @@ -34,7 +34,7 @@ def geocode(query): """Return a list of dictionaries of places matching `query`.""" for i, provider in enumerate(providers): geocoder = poor.Geocoder(provider) - # 'geocode' returns an empty list in case an error. + # 'geocode' returns an empty list in case of an error. results = geocoder.geocode(query) if results: if i > 0: diff --git a/poor/__init__.py b/poor/__init__.py index 9da5972..1396737 100644 --- a/poor/__init__.py +++ b/poor/__init__.py @@ -17,7 +17,7 @@ """An application to display maps and stuff.""" -__version__ = "0.4" +__version__ = "0.5" try: import pyotherside diff --git a/rpm/harbour-poor-maps.spec b/rpm/harbour-poor-maps.spec index 5c7ef95..31db786 100644 --- a/rpm/harbour-poor-maps.spec +++ b/rpm/harbour-poor-maps.spec @@ -2,7 +2,7 @@ %define __os_install_post %{___build_post} Name: harbour-poor-maps -Version: 0.4 +Version: 0.5 Release: 1 Summary: An application to display maps and stuff License: GPLv3+