Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
RELEASE 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Jun 26, 2014
1 parent 804110f commit 5a00b26
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
18 changes: 18 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
=============

Expand Down
18 changes: 0 additions & 18 deletions TODO
Original file line number Diff line number Diff line change
@@ -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
=============

Expand Down
2 changes: 1 addition & 1 deletion geocoders/nominatim.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion poor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

"""An application to display maps and stuff."""

__version__ = "0.4"
__version__ = "0.5"

try:
import pyotherside
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-poor-maps.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand Down

0 comments on commit 5a00b26

Please sign in to comment.