UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. danfro
    3. Best
    Offline
    • Profile
    • Following 0
    • Followers 1
    • Topics 2
    • Posts 270
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Looking for offline map app

      While we are waiting for PureMaps to provide offline functionality, here some instructions on how to get offline maps for uNav working using downloadosmtiles. I do post this here because I did encounter a few stones on the road to success. 😉

      1. download downloadosmtiles from the left hand menu
      2. extract to a folder on your harddisc, i.e. Downloads/osmtiles
      3. run the script with perl downloadosmtiles.pl --link='http://www.openstreetmap.org/?lat=49.5782&lon=11.0076&zoom=10&layers=B000FTF' --zoom=5:16 --destdir=somewhere/maps
      • of course replace coordninates with your target coordinates, the area seems to depend on the zoom value after the coords
      • replace the path for destdir with another one, default is the current working directory
      • change zoom levels, levels above 16 do take quite some time to download, you can download 5 to 16 first, and only level 17 or above later if you really need it
      1. copy the map-files (foldernames = zoom level i.e. 5) onto your phone i.e. in a folder Documents/uNav_maps
        [zip the map tiles and copy the zip file, that is much faster than copying thousands of files]
      2. in Terminal app run the following commands:
        cd Downloads/uNav_maps
        rsync -avp . ~/.local/share/navigator.costales/maps
        [rsync is faster than cp and gives you progress information]
      3. open up uNav, goto settings, change Modus to offline maps

      EDIT:
      To specify a bounding box for the tiles do be downloaded the command in step 3 needs to look like this:
      perl downloadosmtiles.pl --latitude=47.35371:49.93708 --longitude=7.38281:10.54687 --zoom=5:7 --destdir=somewhere/maps
      edit finished

      Have fun! Don't get lost!

      for lazy guys like me:
      If you do this regularly, you may wish to create yourself a small shell script in your phones home folder called i.e. cpbash.sh. Then only open Terminal and run bash cpmaps.sh. Put the following two lines into the script:
      cd Downloads/uNav_maps
      rsync -avp . ~/.local/share/navigator.costales/maps

      Troubleshooting: (on ubuntu 18.04)
      ... Can't locate Geo/OSM/Tiles.pm in @INC ...

      • open the file downloadosmtiles.pl in a editor
      • before line 6 add the following line: use lib '/Downloads/OSMtiles/Geo-OSM-Tiles-0.04/lib';, replace the path with your download location

      ... Can't locate Geo/OSM/Tiles.pm in @INC ...

      • install YAML.pm by running: sudo apt-get install libyaml-perl

      • you may need to create the folder maps to be like this: ~/.local/share/navigator.costales/maps, then map data wants to be in there in a structure like this (see https://unav.me/offline/) :
        ~/.local/share/navigator.costales/maps/10/
        ~/.local/share/navigator.costales/maps/10/523/
        ~/.local/share/navigator.costales/maps/10/523/331.png

      posted in Support
      danfroD
      danfro
    • RE: How I'm now using Signal on UT

      @Robipo When I wrote this post, I didn't know, that Github only provides downloadable files for users that are actually logged in to Github.

      So currently you can either log into Github (if you have an account) and download it from there, or use the latest .click I provided in our Telegram QA group.

      I will release Cinny soon in OpenStore (I got the "go ahead" from the old maintainer today.), but a couple of steps need to be done until that is achieved.

      posted in General
      danfroD
      danfro
    • tedit development and design discussion

      Hi, I recently took over developing tedit app. I would like to try the forum, to gather some ideas and feedback regarding ongoing development.

      In this thread, I will post questions regarding future design and functionality and let you, the users, comment and ask things. Lets see how this goes. We can always split it up or move discussions elsewhere.

      I would still prefer to have issues and feature requests added in the gitlab repository, but I understand, that not everyone is familiar with gitlab and also that some things are easier to discuss here.

      posted in App Development tedit editor app development features
      danfroD
      danfro
    • RE: On this (US) Thanksgiving...

      He has been mentioned, but many, many, many ... thanks to @bhdouglass master of OpenStore!!! What would we be without our OpenStore? Great work done there - and certainly a lot of time spend.

      Many thanks to everyone working on clickable - I know for sure @bhdouglass and @jonius - who provide a magical and crucial tool for us to create apps.

      Thanks @bhdouglass for asking me to maintain weather app. With your advice and a lot of starting help by @jonius , design guidance from some weeeee helper @CiberSheep I am happy to be able to contribute.

      Also many thanks to all translators like @Anne017 for hours of translating, so others with less knowledge of the English language can enjoy Ubuntu Touch.

      And thanks to everyone else here making up a nice community!

      Edit: I forgot to mention two important contributors: @Krille and @nanu-c . With a lot of time and love they provide apps for matrix and signal. Significant add ons next to Teleports. So man thanks to you too!

      posted in General
      danfroD
      danfro
    • RE: Improve system settings disk usage analyzer

      @mymike It is not only the fresh new design. But being able to delete those items from system settings I would call a breakthrough. Definitely worth appreciation. 👍

      posted in Design
      danfroD
      danfro
    • RE: How to set Desktop Mode off and make it stick?

      @dtarrant I had a look, yes, the app is not using a terminal command (as I thought). It is changing a gsetting.

      gsetting values can be changed via terminal too as described here.

      The schema is "com.canonical.Unity8". The actual setting value is "usageMode". (taken from UT Tweak Tool's code, not checked)

      So in theory something like this run in terminal should work:

      gsettings set com.canonical.Unity8 usage-mode Staged
      gsettings set com.canonical.Unity8 usage-mode Windowed
      gsettings set com.canonical.Unity8 usage-mode Automatic
      

      Havn't tried it though.

      Edit:
      If you wish to do this without terminal but from inside an app, have a look at my ThemeSwitch branch where I implemented a working way of changing a gsetting.

      Edit 2:
      I edited the mispelled commands here too as pointed out by @Pulsar33.Thanks for that.
      Although if it is usage-mode, then I don't know why or how UT Tweak Tool can work, because that is using usageMode. But maybe I overlook something.

      posted in Lenovo Tab M10 X605F/L
      danfroD
      danfro
    • RE: tedit development and design discussion

      @ancientsounds I do understand that this would be very convenient. But to achieve this, the app would need to be unconfined. And I would rather try to avoid that. I wrote some explanations in an issue recently.

      You can share files to import them in tedit. I will (hopefully soon) find time to add content hub export too. Also you can create symlinks to tedit's file folder in other locations, as described in the README. I believe this does provide quite some flexibility to use.

      posted in App Development
      danfroD
      danfro
    • RE: Focal/20.04 is out for quite a while now. You still use Xenial/16.04? I would like to know what stops you from upgrading?

      So to sum up what has been written here so far (what got stuck in my head), the main reasons for not moving to focal are is order of seriousness (and lack of workarounds):

      • stability of focal and
      • too many troubles when migrating from xenial to focal. Either taken from own experience with another device or from discussions.
      • A clean install is the best way to do that, BUT we don't have a good backup solution.
      • This is followed with devices not supporting focal, sure no workaround for that.
      • Apps missing is an issue, but that is sorted easiest and also is due to developers not having moved to focal yet with their devices.

      [edit, I forgot one big reason:]

      • people are just happy on xenial, no need to move on

      With 24.04 knocking at the door (middle of this year planned currently) this is valuable information. I will pass that on to the core dev team.

      Of course this doesn't close this post. 🙂 Its more a summary for others joining new and for myself :smiling_face_with_halo: .

      posted in General
      danfroD
      danfro
    • RE: tedit development and design discussion

      Tedit release v3.4.0 is out. Please head for OpenStore to get the update.

      v3.4.0

      • added: toolbar for quick access to several commands from the menu, reordered some menu entries to match button order
      • added: exit button which checks for unsaved changes, some header redesign related to this
      • added: option to highlight file names of excrypted files in file list
      • improved: excrypted files in file list are now marked with the padlock icon
      • improved: file name in main screen now shows storage path
      • improved: change icon to view passwort for the common eye icon
      • improved: edit file button behaviour and design in file list
      • improved: note on file storage now gives some more information
      • improved: several input fields now get focus when opening the page, thus opening the OSK
      • improved: fix #13 by rephrasing some error messages to be more helpful for the user
      • improved: some buttons with long text are now bigger and use word wrap
      • improved: readability of save dialog button in disabled state
      • removed: string "saved: true/false" since the label color and save button enabled/disabled indicate saved state
      • fixed: top margin at file list page being a bit too small
      • fixed: error in hash calculator where proceed wouldn't work
      • updated: translations, many thanks to all translators!
      posted in App Development
      danfroD
      danfro
    • RE: How I'm now using Signal on UT

      @rdfrs in addition to what @Moem explained, you can also go to the room with signal bridge bot, there you can type

      • help to get a full list of available commands
      • start-chat PHONENUMBER to start a chat from the bot end, provide the phone number in international format as +1234567890

      And once you have your chats as rooms in Cinny, you can type messages there as with any other room.

      posted in General
      danfroD
      danfro
    • RE: Why don't make ubports installer for 32bit in deb i386 or other pc oldies?

      @jb-gbaeza Supporting older architectures or devices takes manpower. That we don't have sufficiently. Don't forget, most work is done by volunteers in their free time.

      Also I don't see the question for 32bit system support very often. So I am not sure it is really worth the effort.

      posted in Marketing Incubator
      danfroD
      danfro
    • RE: Ubuntu Touch Q&A 85 This Saturday 26th Of Sept At 19:00 UTC

      Call for maintainers!

      There are quite some core apps without a maintainer for a long time. Camera app and clock app joined that list this week.

      Core apps need your help! Is there anyone with coding experience willing to take up the task? Please use the Q&A to ask around.

      posted in News
      danfroD
      danfro
    • RE: Welcome to the UBports community! Introduce yourself here!

      @LDovic Hi and welcome. Apps for Ubuntu Touch, including most of the core apps, are build using clickable. So yes, a linux OS is needed for developement.

      As already has been said, apps are hosted mainly with Gitlab. For some general information to get you started check out our doc . You will also find some links to Telegram groups there.

      If there is one of the core apps you like best 😉 head for issues, if you are looking for a starting point. Or if you already have an idea to add THE missing feature just go for it.

      posted in General
      danfroD
      danfro
    • RE: OP 5 Focal Install

      Just want to share the news here, that on focal devel channel the OP5T now allows installing via system settings. No installer needed anymore. Big thanks to Ratchanan!

      posted in 20.04 Focal Fossa
      danfroD
      danfro
    • RE: Patreon: still possible?

      @Rondarius You are right, I am not very busy at the forum. :smiling_face_with_halo: But if you ping me, I will get an email.

      Regarding the patreon merchandise, I managed to find out that the shop is currently undergoing some internal changes and handing over duties. I am not involved myself, but I kindly ask you to be patient. Your case is known now and hopefully can get sorted soon.

      posted in General
      danfroD
      danfro
    • RE: Futify (spotify client) need beta testers

      Sure. Take your time, even more in those special times. I did not want to rush you or put pressure on you. It was merely supposed to be a suggestion.

      Thanks for the work anyway. The demand proofes that you are working on something important. 👍

      posted in App Development
      danfroD
      danfro
    • Focal/20.04 is out for quite a while now. You still use Xenial/16.04? I would like to know what stops you from upgrading?

      Focal is out for about 1 year now. Xenial has reached it's end of life cycle and is not developed any further. The same applies for some apps as well.

      We know that there are still many users running Xenial on their devices. It would be good to find out why. Please drop your reasons below.

      posted in General
      danfroD
      danfro
    • RE: tedit development and design discussion

      @DPITTI You are still around trolling and spamming and placing useless posts? Stop it! Otherwise I hope @Lakotaubp will kick you out.

      For some reason, everytime I read chats and see your name, the posts are mostly deleted. I wonder why...

      posted in App Development
      danfroD
      danfro
    • RE: Focal/20.04 is out for quite a while now. You still use Xenial/16.04? I would like to know what stops you from upgrading?

      @MrT10001 I guess you are right. Although I personally see the advantages of new releases or updates.

      To name some reasons to go for focal (OTA4):

      • theme switch in system settings
      • battery percentage indicator in system settings
      • home screen shows "time to fully charged" time
      • wallpapers can be deleted
      • double tap to wake setting
      • edge barrier sensitivuty in system settings
      • a newer morph (altjough still considered outdated by websites 😞)

      Blog posts hold more news.

      posted in General
      danfroD
      danfro
    • RE: tedit development and design discussion

      @domubpkm I will need to investigate the copy/paste functions of the TextArea. That might conflict with system clipboard. But not today, its Christmas. 🙂 Have a nice time everone and I hope you can spend some days in peace and with friends+family.

      posted in App Development
      danfroD
      danfro