Custom Query (1067 matches)
Results (37 - 39 of 1067)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1253 | fixed | Add build scripts from build server to Navit SVN | KaZeR | mvglasow (2) |
Description |
The Navit build server, which prepares the binaries available at download.navit-project.org, appears to use scripts that do a completely automated build.
In particular, it supplies all the parameters needed to build a particular flavor of Navit, which is of particular interest for the more exotic ones such as android-x86 or android-armv4. I suggest making these available in the SVN code tree. This would simplify building the more exotic flavors, as well as ensuring consistency between private builds and downloaded binaries. (I've had quite a few instances in which I was unable to build versions/flavors of navit that would build on the server, and being able to retry the build with the exact same parameters as the server would have been a lot of help.) |
|||
#306 | fixed | Add danish letters to gui-internal keyboard | cp15 | Odlg |
Description |
Here is a patch to add danish letters to the gui-internal keyboard.
{{{ Index: navit/gui/internal/gui_internal.c =================================================================== --- navit/gui/internal/gui_internal.c (revision 2055) +++ navit/gui/internal/gui_internal.c (working copy) @@ -2537,6 +2537,9 @@ gui_internal_keyboard_key(this, wkbd, "Ä","Ä",max_w,max_h); gui_internal_keyboard_key(this, wkbd, "Ö","Ö",max_w,max_h); gui_internal_keyboard_key(this, wkbd, "Ü","Ü",max_w,max_h); + gui_internal_keyboard_key(this, wkbd, "Æ","Æ",max_w,max_h); + gui_internal_keyboard_key(this, wkbd, "Ø","Ø",max_w,max_h); + gui_internal_keyboard_key(this, wkbd, "Å","Å",max_w,max_h); for (i = 0 ; i < 27 ; i++) { gui_internal_keyboard_key_data(this, wkbd, "", NULL, NULL, NULL,max_w,max_h); } @@ -2548,6 +2551,9 @@ gui_internal_keyboard_key(this, wkbd, "ä","ä",max_w,max_h); gui_internal_keyboard_key(this, wkbd, "ö","ö",max_w,max_h); gui_internal_keyboard_key(this, wkbd, "ü","ü",max_w,max_h); + gui_internal_keyboard_key(this, wkbd, "æ","æ",max_w,max_h); + gui_internal_keyboard_key(this, wkbd, "ø","ø",max_w,max_h); + gui_internal_keyboard_key(this, wkbd, "å","å",max_w,max_h); for (i = 0 ; i < 27 ; i++) { gui_internal_keyboard_key_data(this, wkbd, "", NULL, NULL, NULL,max_w,max_h); } }}} |
|||
#677 | Incomplete/Missing infos | Add google maps search for mobile devices | cp15 | hape |
Description |
Add a google maps based search for mobile devices. The most modern devices has an internet connection. So google maps api could be used for searching in addition of the map index.
The api can be used with a simple get request. You get a list of results with the needed geo data as a nice XML or json object. It could be implemented with the existing giu internal elements. Idea: Add a new entry to the action screen for google map search, open a text list to enter the adress like the one for city search. Then show the result list with the same options as you have for streets in the city search. Here are some example requests and the link to the api documentation: http://maps.google.com/maps/geo?output=xml&q=Buchenbuschweg%2045,%20Dorfweil http://maps.googleapis.com/maps/api/geocode/xml?address=Buchenbuschweg&sensor=true http://code.google.com/apis/maps/documentation/geocoding/index.html |
Note: See TracQuery
for help on using queries.