maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] modRana: a flexible GPS navigation system (https://talk.maemo.org/showthread.php?t=58861)

dwaradzyn 2011-07-31 18:10

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1061671)
Converting all the existing database files users might already have would be quite a headache and also some developers might be already working on supporting the format in its current form (IIRC the CloudGPS developer, maybe also some others).

I haven't started working on it yet. You may freely change it - and performance optimisations are always welcome.

MartinK 2011-08-02 12:04

Re: [Announce] modRana: a flexible GPS navigation system
 
Late V0.27-4 release announcement :)

What's new ?
  • patch for better handling of imperial units by Gkuenning - thanks ! :)
  • fix overlapping labels on height profile with imperial units
  • modRana now has a profile folder in /home/user/.modrana
  • configuration files are now in the profile folder
    • which means modified configuration files should no longer be overwritten at upgrade (not tested :) )
  • tracklogs are now in MyDocs/tracklogs
  • cleanup of example tracklogs
  • properly use os.path.join in place of simple concatenation
  • general refactoring and code cleanup
  • remove GUI source files from installation package (~40% package size reduction)
  • postinst cleanup should bring faster installation (no chmod needed anymore, yay :) )

Also, modRana is taking part in this years MeeGo coding competition. :)

MartinK 2011-08-02 12:17

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by lsolano (Post 1061710)
MyDocs/Modrana/tracklogs

I have selected just MyDocs/tracklogs, becuase:
  • it is visible for mass-storage (unlike .maps)
  • is not using an application specific namespace and other applications can thus share it without needless confusion
  • in case some users have a folder named like this, modRana never automatically deletes anything inside it, just creates some default folders and adds two example tracklogs

BTW, path to the tracklog folder can be configured in user_config.conf. :)

Quote:

Originally Posted by lsolano (Post 1061710)
MyDocs/Modrana/pois

Mappero stores POI's in .maps/poi.db and modRana supports the same database format, thus enabling sharing (even though it is not on by default). It is possible more applications will add support for POI sharing.

Quote:

Originally Posted by lsolano (Post 1061710)
MyDocs/Modrana/config (not sure about this one, maybe it is better ~/.modrana)

Yeah, configuration files should imho really be in the profile folder, to be kept out of the harms way. Some less experienced users might accidentally delete them if they are too easily available. Also, MyDocs is unmounted in mass-storage mode.

jd4200 2011-08-02 12:31

Re: [Announce] modRana: a flexible GPS navigation system
 
Martin,
I don't know if I am missing something, but is it not possible to simply search for a location (by address, postcode city etc), and then to have this location shown on the map?

Currently if I want to do this, I have to use the "address to address" routing functionality, and then follow the blue route line all the way along just to see the map of the end point.

It would be nice if there was an option within the 'search' menu to input a location/address and then be taken to this location. :)

MartinK 2011-08-02 12:54

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by jd4200 (Post 1062787)
Martin,
I don't know if I am missing something, but is it not possible to simply search for a location (by address, postcode city etc), and then to have this location shown on the map?

Currently if I want to do this, I have to use the "address to address" routing functionality, and then follow the blue route line all the way along just to see the map of the end point.

It would be nice if there was an option within the 'search' menu to input a location/address and then be taken to this location. :)

This is on my priority list - all the API's/services needed are in place, I just need to do a GUI for it. :)

jd4200 2011-08-02 14:35

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1062796)
This is on my priority list - all the API's/services needed are in place, I just need to do a GUI for it. :)

muchas gracias :D

lsolano 2011-08-02 16:05

Re: [Announce] modRana: a flexible GPS navigation system
 
I've just installed v0.27-4 and it does not save modified options. I tried to take a look at config files and I do not have a /home/user/.modrana directory :-O

MartinK 2011-08-02 16:29

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by lsolano (Post 1062870)
I've just installed v0.27-4 and it does not save modified options. I tried to take a look at config files and I do not have a /home/user/.modrana directory :-O

ModRana should create /home/user/.modrana automatically - I rewrote quite a lot of the path handling code so there might be a few bugs.

Please run modRana from the terminal by typing:
Code:

modrana
And post/pastebin the output so I can see what went wrong (there will probably be some errors or exceptions in the output). :)

lsolano 2011-08-02 18:55

Re: [Announce] modRana: a flexible GPS navigation system
 
I think I know what the problem is (was).

When running modrana from command line, it says:
cannot create directory, file already exists: '/home /user/.modrana'
however, as I said, I had not seen that directory. So I get into my phone via ssh and I see that it does exist /home/user/.modrana, but I was not able to cd into it because it is owned by the root user:
-rw-r--rw- 1 root root 4740 Jul 25 11:46 .modrana
I tried to get inside that directory, but I do not know why I could not. I thought it was a matter of permissions, but it was not:
Nokia-N900-51-1:/home/user# chmod 777 .modrana
Nokia-N900-51-1:/home/user# cd .modrana
-sh: cd: can't cd to .modrana
I erased it, and after that, I ran modrana again, and now I have the proper .modrana directory:
Nokia-N900-51-1:/home/user# ls -l .modrana
-rw-r--r-- 1 user users 3108 Aug 2 11:08 map_config.conf
-rw-r--r-- 1 user users 2024 Aug 2 12:39 options.bin
-rw-r--r-- 1 user users 5196 Aug 2 11:08 user_config.conf
Curious thing is, I do not remember that I have created that .modrana directory as root.

Here, pastebin before the "workaround", and here, the pastebin after.

JonWW 2011-08-02 19:54

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by lsolano (Post 1062937)
...I had not seen that directory. So I get into my phone via ssh and I see that it does exist /home/user/.modrana, but I was not able to cd into it because it is owned by the root user:
Code:

-rw-r--rw-    1 root    root        4740 Jul 25 11:46 .modrana
I tried to get inside that directory, but I do not know why I could not. I thought it was a matter of permissions, but it was not:...

You had a file of 4740 bytes and not a directory, that is why you couldn't cd into it. If it was a directory you sould have had a read out something like:
Code:

drw-r--rw-    1 root    root        4096 Jul 25 11:46 .modrana
Also as read permissons were set for all users you could have still cd into it if it was a directory.

lsolano 2011-08-02 19:58

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by JonWW (Post 1062959)
You had a file of 4740 bytes and not a directory, that is why you couldn't cd into it. If it was a directory you sould have had a read out something like:
Code:

drw-r--rw-    1 root    root        4096 Jul 25 11:46 .modrana

I'm ashamed that I have not seen it was a file :o

JonWW 2011-08-02 20:03

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by lsolano (Post 1062962)
I'm ashamed that I have not seen it was a file :o

We've all done it, nothing to be ashamed of.

More to the point, what was in the file and how did it get there?

MartinK 2011-08-03 12:05

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by JonWW (Post 1062965)
We've all done it, nothing to be ashamed of.

More to the point, what was in the file and how did it get there?

Now I think I know how it got there:
Code:

# migrate options.bin
if [ -w  /opt/modrana/data/options.bin ];then
  echo "migrating options.bin"
  mv /opt/modrana/data/options.bin /home/user/.modrana
fi

(excerpt from the postinst script)

Notice how there is no / after .modrana ? :D

Well, still better than the bumblebee disaster. :)

I'll release a version with updated postinst shortly (and add a fix that fixes all those .modrana files). :)

petur 2011-08-03 12:22

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1063384)
Well, still better than the bumblebee disaster. :)

Wow... that must have hurt a lot....

白い熊 2011-08-03 15:55

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1063384)
Well, still better than the bumblebee disaster. :)

Woah... Epic!

Bleeding edge really bleeding for someone right now :O)

beermad 2011-08-03 17:57

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1061671)
Well, I'm not really a database architect - I basically just thought quite a long time about how to make an universal schema and asked a friend who works with databases a bit. :) Well, like this, the lookup and store databases are independent - so when the lookup one is corrupted, it should be possible to regenerate it just form the stores.

Yeah - say we have x=1 y=2 and z=17 -> 1217, also x=1,y=21,z=7 -> 1217 ...
A hash with separators might work though: 1,2,17 vs 1,21,7 - would something like this be usable ?

Also, would it be possible to maintain backward compatibility by adding this new indexes and still storing the old info ? Converting all the existing database files users might already have would be quite a headache and also some developers might be already working on supporting the format in its current form (IIRC the CloudGPS developer, maybe also some others).

There is a version filed in the schema, so it would be possible to do something like this:
  • 1 = current version
  • 2 = old info + new indexes
  • 3 = just new indexes

I think your proposed versioning makes sense. As long as we add any new columns after the existing columns so that if anybody's already using the schema and doing "select(*)" we won't break their code.

Your idea of a hash-like index using separators seems a good idea. My only other thought was to force each of the x,y,z elements to a fixed length (perhaps by adding 1000000 to each, depending on what the biggest number each one could possibly be). But your method makes it more compact.

Then for version 2, your lookup table could be:
Code:

CREATE TABLE tiles (z INTEGER, x INTEGER, y INTEGER, store_filename STRING, extension varchar(10), unix_epoch_timestamp INTEGER, store_tilenumber INTEGER, lookup STRING, PRIMARY KEY(lookup));
CREATE TABLE version (v integer);
CREATE INDEX oldindex on tiles (z,x,y);

For version 3, drop the z,x,y and extension columns as well as the oldindex index.

Version 2 of the tile store could be:
Code:

CREATE TABLE tiles (z INTEGER, x INTEGER, y INTEGER, tile BLOB, extension VARCHAR(10), unix_epoch_timestamp INTEGER, id INTEGER AUTO INCREMENT, PRIMARY KEY(id));
CREATE TABLE version (v integer);
CREATE INDEX oldindex on tiles (z,x,y);

For version 3, drop the oldindex index. You could keep the x,y,z columns in this table for regenerating the lookup table as you mentioned. You could shrink the lookup table a bit more for version 3 by also dropping the epoch_timestamp from it. That would introduce a slight overhead when checking for updated tiles as it would need to be retrieved from the store rather than the lookup. I'm not sure which way would give the best balance of benefits.

So you'd insert the tile in the store first, then retrieve the value of the id column to populate the store_tilenumber column in the lookup table.

don_falcone 2011-08-03 18:20

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1061646)
This was for legacy reasons - Rana, the modRana predecessor was developed for the Neo FreeRunner, where everything run under root. :D So it didn't matter where they were stored.


Well, I've just sent V0.27-2 to the autobuilder, that does just this :)
check out the updated data storage article for details about the new paths.
In short:
  • map data - nothing changes, still MyDocs/.maps
  • POI- nothing changes, still MyDocs/.maps
  • tracklogs are now stored in MyDocs/tracklogs, old tracklogs should be migrated there automatically
  • configuration files are now in ~/.modrana


OK, I'll change it to reload the directory once it is listed from the GUI.


I'm looking at this right now. :)

May i strongly suggest not using MyDocs and using dirs located directly under $HOME instead? MyDocs is exportable / mountable, so for example if you have connected your N900 via USB to a laptop maybe for copying some files over, you would not be able to use modRana (or any other SW that does this) at the same time and would have to choose between using the SW or copying files.

slender 2011-08-03 19:55

Re: [Announce] modRana: a flexible GPS navigation system
 
1 Attachment(s)
Had error message when tried to upgrade modrana install. Look attachment.

x-lette 2011-08-03 20:00

Re: [Announce] modRana: a flexible GPS navigation system
 
Hi, I really like this app very much and most of it I like the downloading function. But what I'm currently missing is a layer for public transport. I guess for most countrys these data exist but I don't know whether there is one map that covers all i.e. globe. But if it was possible in any way to add a layer for public transport this would be amazing. Travelling to foreign countries is made much easier if one can use a map with highlighted transportation. Maybe you can have a look at maep which offers this layer but sadly lacks downloading ability.

Another question (I guess this is already answered but I didn't find): Is there an easy way to download all needed tiles for an area externally and afterwards just throw them into correct folder on N900? downloading a bunch of some 20k tiles at once is quite hard. My N900 gets quite hot when using 3G-connection that intense.

petur 2011-08-03 20:09

Re: [Announce] modRana: a flexible GPS navigation system
 
There are other interesting layers too: rain radar, traffic jams,...

alex25 2011-08-03 20:11

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by slender (Post 1063666)
Had error message when tried to upgrade modrana install. Look attachement.

Same here. Upgrade failed.

don_falcone 2011-08-03 20:29

Re: [Announce] modRana: a flexible GPS navigation system
 
...move /home/user/.modrana to somewhere else, and after upgrading package, move it back.

lsolano 2011-08-03 20:32

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by slender (Post 1063666)
Had error message when tried to upgrade modrana install. Look attachement.

I think is the same problem we had before.
mkdir: cannot create directory '/home/user/.modrana/': File exists
Erase that file (as root, using terminal) and try again. Before erase it, it would be useful to attach it here, to see what it has. I erase mine before taking a look at it.

MartinK 2011-08-03 21:59

Re: [Announce] modRana: a flexible GPS navigation system
 
The mysterious .modrana file should be renamed options.bin (file that stores current modRana settings) which due to missing / in the postinst script got moved to /home/user and renamed .modrana instead to be moved to /home/user/.modrana/

I have uploaded a newer version - looks like I forgot to first rename the .modrana file before creating the .modrana folder. Let me know if it works now. :)

lsolano 2011-08-04 04:29

Re: [Announce] modRana: a flexible GPS navigation system
 
I've just upgraded to 0.27-7, no problems at all so far.

petur 2011-08-04 09:59

Re: [Announce] modRana: a flexible GPS navigation system
 
0.27-7 is fine here too

MartinK 2011-08-08 13:01

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by beermad (Post 1063613)
I think your proposed versioning makes sense. As long as we add any new columns after the existing columns so that if anybody's already using the schema and doing "select(*)" we won't break their code.

Your idea of a hash-like index using separators seems a good idea. My only other thought was to force each of the x,y,z elements to a fixed length (perhaps by adding 1000000 to each, depending on what the biggest number each one could possibly be). But your method makes it more compact.

Then for version 2, your lookup table could be:
Code:

CREATE TABLE tiles (z INTEGER, x INTEGER, y INTEGER, store_filename STRING, extension varchar(10), unix_epoch_timestamp INTEGER, store_tilenumber INTEGER, lookup STRING, PRIMARY KEY(lookup));
CREATE TABLE version (v integer);
CREATE INDEX oldindex on tiles (z,x,y);

For version 3, drop the z,x,y and extension columns as well as the oldindex index.

Version 2 of the tile store could be:
Code:

CREATE TABLE tiles (z INTEGER, x INTEGER, y INTEGER, tile BLOB, extension VARCHAR(10), unix_epoch_timestamp INTEGER, id INTEGER AUTO INCREMENT, PRIMARY KEY(id));
CREATE TABLE version (v integer);
CREATE INDEX oldindex on tiles (z,x,y);

For version 3, drop the oldindex index. You could keep the x,y,z columns in this table for regenerating the lookup table as you mentioned. You could shrink the lookup table a bit more for version 3 by also dropping the epoch_timestamp from it. That would introduce a slight overhead when checking for updated tiles as it would need to be retrieved from the store rather than the lookup. I'm not sure which way would give the best balance of benefits.

So you'd insert the tile in the store first, then retrieve the value of the id column to populate the store_tilenumber column in the lookup table.

Thanks for the new schemas & hints ! I'm not really that much into database design, so this is really helpful. :) Now I just need to find some more free time to actually implement this. :D

Quote:

Originally Posted by don_falcone (Post 1063624)
May i strongly suggest not using MyDocs and using dirs located directly under $HOME instead? MyDocs is exportable / mountable, so for example if you have connected your N900 via USB to a laptop maybe for copying some files over, you would not be able to use modRana (or any other SW that does this) at the same time and would have to choose between using the SW or copying files.

Vitally important files are already in $HOME (configs and settings storage) or /opt/modrana (turn message substitution rules).
Other files just need to be in MyDocs:
  • map data - $HOME only has 2 GB & sharing with other apps
  • tracklogs - to be accessible through mass storage
  • POI - sharing with Mappero
ModRana should actually work even when the MyDocs partition is not mounted - tiles would download & display just fine, just would not be stored, tracklogs would be unavailable and it would not be possible to store new POI. Well, I have not actually tested this yet but it should work - or can be fixed to work. :)

@more layers
What is currently precluding adding more map layers (I know about quite a few nice OSM based ones for example) is actually the layer selection method. The current toggle-based one is already barely usable. I'll do something about this and then start adding new layers. :)

Quote:

Originally Posted by x-lette (Post 1063670)
Another question (I guess this is already answered but I didn't find): Is there an easy way to download all needed tiles for an area externally and afterwards just throw them into correct folder on N900? downloading a bunch of some 20k tiles at once is quite hard. My N900 gets quite hot when using 3G-connection that intense.

You can install modRana or for example GMapCatcher on your PC and then transfer the corresponding tile folders to the N900 (to /home/user/MyDocs/.maps/).

MartinK 2011-08-08 19:55

Re: [Announce] modRana: a flexible GPS navigation system
 
Yesterday, modRana V0.28-2 has been released. :)

What's new ?
  • new patch from Gkuenning
    • smart rounding of imperial units for voice output
    • fix for 2 turn announcements sometimes following each other at once
    • unit conversion module improvements
    • improved substitution list & more efficient substitution code
    • Thanks a lot ! :)
  • other improvements:
    • geocoding (address search) GUI - finally! :)
      Accessible from "Search->address online"
      The current implementation is fully usable, but please note that some advanced features (asynchronous querying, wikipedia search, geocoding service selection) are not yet implemented. Also, when the search returns > 1 results, this first one is currently used.
    • fix for Unicode characters showing only as boxes
    • more readable POI search result list & captions
    • track recording now works again
    • more logically placed cancel button for "in progress" operations
      It is now on the to the right on the blue "in progress" overlay.

petur 2011-08-08 20:00

Re: [Announce] modRana: a flexible GPS navigation system
 
Thanks! Already using it :)

lsolano 2011-08-08 20:08

Re: [Announce] modRana: a flexible GPS navigation system
 
Why is this software version 0.something?

I think this software is mature enough to have a higher version number. Many people may not try it because 0.27 seems too early developed.

I've been using it for a while now and for me is extremely useful. I live in a country where Nokia Maps does not work well due the lack of map detail and I have to rely on a OpenSource apps like Modrana.

My only complain is how it "talks", but I think it is a eSpeak problem :-)

It is a shame I can not help coding, but if you find it useful, I can translate it into Spanish. I do not know if the texts in modrana UI are hard coded or were thought/designed to be translated.

don_falcone 2011-08-08 20:26

Re: [Announce] modRana: a flexible GPS navigation system
 
Would there be the possibility to work on the UI? For example. testing different buttons / resources? Is the information available in the wiki? I hope they are not compiled in.

MartinK 2011-08-08 23:46

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by lsolano (Post 1066198)
Why is this software version 0.something?

It's simple - once I add some major feature or improvement, I increase it by 0.01. :) The numbers after - mean mostly fixes and minor improvements.
This numbering originally started on 0.01, 0.04 being the firs released version. Changelogs 0.04-0.27 are on the modRana wiki, BTW. :)

Quote:

Originally Posted by lsolano (Post 1066198)
It is a shame I can not help coding, but if you find it useful, I can translate it into Spanish. I do not know if the texts in modrana UI are hard coded or were thought/designed to be translated.

It is currently hard-coded but a proper localization is eventually planed, I just don't know when I'll get to it. :)
In the meantime, I would like to at least localize the voice output. Currently it combines English spoken distance and status messages with turn announcements available in multiple languages - the results sounds quite strange. :)
So if you don't mind, could you translate this few words to Spanish ? :)
Code:

 
meter
meters
kilometer
kilometers
foot
feet
mile
miles
rerouting
you should be near the destination
no route found

Thanks in advance! :) Translations to other languages are also welcome!

EDIT: I have created a translation page on the Maemo wiki. :)

Quote:

Originally Posted by don_falcone (Post 1066206)
Would there be the possibility to work on the UI?

In which aspect ?
Design, usability, testing, graphics improvements, ... ?

Quote:

Originally Posted by don_falcone (Post 1066206)
For example. testing different buttons / resources? Is the information available in the wiki? I hope they are not compiled in.

I'm afraid there is currently not much information about the GUI outside the (heavily commented) Python source code.
Basically the whole GUI is just a single widget and everything is drawn using Cairo.

don_falcone 2011-08-09 01:15

Re: [Announce] modRana: a flexible GPS navigation system
 
Sure, i would like to help on improving the user interface. But as i'm always trying to avoid changing code / (re)compiling, i prefer editing and changing resources directly on file level.

lsolano 2011-08-09 04:57

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1066302)
In the meantime, I would like to at least localize the voice output. Currently it combines English spoken distance and status messages with turn announcements available in multiple languages - the results sounds quite strange. :)

strange indeed... and quite funny too :) When I realized that, I changed it back to English, however, the problem is now in the other way: as street names and places are in Spanish, it sounds weird when the English voice speaks them.

Quote:

Originally Posted by MartinK (Post 1066302)
So if you don't mind, could you translate this few words to Spanish ? :)

Done!

skykooler 2011-08-09 05:26

Re: [Announce] modRana: a flexible GPS navigation system
 
Darn, I can't update. When I look in the log, it is not a problem with the .modrana folder/file, but rather a problem with Yate. Does anyone else who uses Yate have this problem?

petur 2011-08-09 08:18

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1066302)
I
Code:

 
meter
meters
kilometer
kilometers
foot
feet
mile
miles
rerouting
you should be near the destination
no route found

Thanks in advance! :) Translations to other languages are also welcome!

EDIT: I have created a translation page on the Maemo wiki. :)

Done for Dutch (Belgium & The Netherlands)

白い熊 2011-08-09 17:38

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1066191)
Yesterday, modRana V0.28-2 has been released.

-fix for Unicode characters showing only as boxes

Not fixed, Unicode characters still displayed as boxes...

白い熊 2011-08-09 17:47

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by MartinK (Post 1066302)
It's simple - once I add some major feature or improvement, I increase it by 0.01. :) The numbers after - mean mostly fixes and minor improvements.

I think bumping the version up to 1.xxx would be right at the moment you implement offline routing as that would be a significant stepup in functionality...

That said, offtopic, I still don't understand moving to 3.xxx in the linux kernel with no major stepup from the last 2.6...

don_falcone 2011-08-09 18:11

Re: [Announce] modRana: a flexible GPS navigation system
 
Quote:

Originally Posted by 白い熊 (Post 1066727)
That said, offtopic, I still don't understand moving to 3.xxx in the linux kernel with no major stepup from the last 2.6...

2.6.3x basically already was 3.0 seen from the functionality, that's why Linus decided to finally step up the version number. What is more strange that there seems to be no more between stable / unstable kernel versions, like before with even / odd numbering?

(Another example: Firefox 3.7 was functionality-wise already 4.0.)

don_falcone 2011-08-10 13:23

Re: [Announce] modRana: a flexible GPS navigation system
 
Btw Martin, i checked a bit of the source last night. Some questions:

1) /opt/modrana/os.path seems like Postscript or something? What's this file for?

2) /opt/modrana/nbproject/project.properties lists "platform.active=Python_2.6.6"
As far as i remember, Python 2.6 was a bit of a break compatibility-wise, was it? We have no official 2.6 on the N900; so does make it any difference if you develop with 2.6 under NetBeans instead of 2.5?

3) the theme.conf lists only the icons and the colors. What i also try to achieve is, changing the layout / the shape of the rounded "button" / "info" tiles. which file in /opt/modrana/modules/ is responsible for this?


All times are GMT. The time now is 18:50.

vBulletin® Version 3.8.8