• 2 Votes
    9 Posts
    2k Views
    joniusJ
    I didn't touch the README. You downloaded the old 15.04 version. Please build the app for 16.04 using Clickable instead. I don't plan to maintain the app, just wanted to show it is still mostly functional, in case anyone wants to pick it up.
  • Duo app

    2
    0 Votes
    2 Posts
    505 Views
    dobeyD
    Unfortunately, Duo is proprietary and does not document any way for third party apps to implement support for their push based 2FA system. Also, Anbox does not include the proprietary Google Play Services components, and there's no bridge for notifications.
  • Morph.Web documentation

    2
    0 Votes
    2 Posts
    485 Views
    dobeyD
    The docs for Ubuntu.Web will work, simply replace Ubuntu.Web with Morph.Web for the imports. https://api-docs.ubports.com/sdk/apps/qml/Ubuntu.Web/index.html
  • Telescope development thread

    15
    1
    9 Votes
    15 Posts
    2k Views
    S
    @druk13 said in Telescope development thread: Version 0.0.7: LG Watch is found and connected via bluetooth and all the available app functions are working :beaming_face_with_smiling_eyes: (except the one that I need most: incomig call notifiaction, because during work my Handy is in silent mode). Then we do this in 0.0.8 @druk13 said in Telescope development thread: Before I forget: During the first time installation of the app in version 0.0.5, the directory "/home/phablet/.local/share/telescope.asteroidos/screenshot", for a working screenshot function, was not created. That was an issue and is fixed with this commit https://github.com/AsteroidOS/asteroidsyncservice/commit/96126da22054657d649fca4501647321500176f4
  • How to use Spotify on Ubuntu Touch

    Locked mopidy spotify ubuntu spotify
    28
    1
    10 Votes
    28 Posts
    15k Views
    AppLeeA
    As this thread is now obsolete, and to avoid confusion I will now lock this thread. If you are looking for a Spotify client for Ubuntu Touch, you can check out this thread: https://forums.ubports.com/topic/4346/futify-spotify-client-need-beta-testers It is already in a good state, but it will be available in the Open Store when the copyrights issue will be solved. Thanks @manland for your very appreciated contribution.
  • Problems to submit a webapp

    3
    0 Votes
    3 Posts
    218 Views
    AppLeeA
    @djvanny You should have an account for the Open Store, I use Gitlab. Then from your computer you can fill in the form and upload the click package for each supported arch.
  • Messaging Apps on UT

    telegram signal whatsapp messaging app
    4
    0 Votes
    4 Posts
    868 Views
    E
    @supersalbbai You can actually get Whatsapp to work through Anbox.
  • -1 Votes
    6 Posts
    1k Views
    AppLeeA
    @BigB said in [Request] Independent SMS and MMS encryption: However I'm still interested in sms and mms encryption even it has to be only between Ubuntu Touch devices. That has to be developed. And my guess is it will take time until it becomes a priority, but if someone with technical skills and will wants to work on it that will be welcome. Axolotl is a client for Signal, I don't really know if it can send encrypted messages without internet connection (but I doubt it). Maybe if @nanu-c comes around here he might answer that and maybe add this to his todo list. You can check Gitlab for existing feature request or make one: https://github.com/nanu-c/axolotl/issues
  • Web browser alternative

    javascript chrome captcha browser crash browser
    13
    0 Votes
    13 Posts
    2k Views
    Rebecca58R
    I still have the captcha problem on the browser. not appearing after I removed the ublocker app. what should I do? I can't access most websites .
  • Google Fi - Porting question from ex-googler

    Moved
    26
    0 Votes
    26 Posts
    7k Views
    R
    The web version of Google Voice now works with the new QTWebengine update in the RC channel!! If only it could push notifications to the desktop, we'd have another viable VoLTE dialer replacement. Sadly Duo web version, and Meet web version still do not work. But, progress is progress!
  • Convenient VPN App

    38
    5 Votes
    38 Posts
    10k Views
    S
    Hi, just re-visiting this, having the existing UT VPN take care of these features would be ace, save having to depend on extra apps. from a users point of view, having the mobile data reception indicator or wifi indicator in the top bar turn green when connected via VPN successfully would be a nice way to show a secure connection rather than an extra indicator symbol cluttering up the top bar.
  • 0 Votes
    3 Posts
    353 Views
    R
    @CiberSheep I'll give that a go when I get home. Thanks for the advice.
  • Is there a rar and zip app for Ubuntu touch?

    5
    0 Votes
    5 Posts
    737 Views
    K
    Probably a good feature request for the file manager. It can already extract so I assume it uses a library that can also compress.
  • Stellarium - call for testers

    13
    2 Votes
    13 Posts
    997 Views
    LakotaubpL
    @lduboeuf Can't reproduce. Even with UTTT clearing everything and checking it's not in location list on restart, on reinstall (twice) it comes up straight away with location granted. If it's meant to do that then great maybe a daily update fixed it.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • language-chooser

    1
    0 Votes
    1 Posts
    239 Views
    No one has replied
  • Discord WebApp

    3
    2 Votes
    3 Posts
    606 Views
    Rebecca58R
    As for me, I lost my password. every time I generate one they never send me the email. it's a shame the app doesn't bother to change his app.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Is SDK supported on Ubuntu 20.04?

    5
    0 Votes
    5 Posts
    398 Views
    ?
    @lduboeuf Niceeee... Thanx!
  • Including files from one directory up with CMake or basic builders

    2
    0 Votes
    2 Posts
    356 Views
    ValenoernV
    The solution to this was laughably simple. all I had to do was touch CMakeLists.txt making a completely empty file in the zensekai directory, and then CMake automatically decided to continue in zensekai-click with the other CMakeLists.txt. edit 7-13: There was actually a little more required. in the top CMakeLists.txt I had to put add_subdirectory(zensekai-click) and in the zensekai-click one I accessed/disambiguated the two directories with # set $PR_ROOT to upper directory get_filename_component(PR_ROOT "../" ABSOLUTE) # set $CLICK_DIR to zensekai-click directory set(CLICK_DIR "${PR_ROOT}/zensekai-click") another thing you might run into developing a click package that copies binaries is permissions on binaries. I set them in the loop that copies the binaries like so: foreach(binary ${BINARIES}) install(FILES ${PR_ROOT}/bin/${binary} # the important part PERMISSIONS OWNER_READ OWNER_EXECUTE GROUP_READ WORLD_READ WORLD_EXECUTE # this might actually be unnecessarily permissive*. # it might be enough to just have OWNER_READ and OWNER_EXECUTE DESTINATION ${DATA_DIR} ) endforeach() (* I got sidetracked thinking the permissions weren't enough when I accidentally had my project copying the x86_64 godot binary for a bit - which had bash claiming it "wasn't permitted" to execute while it actually meant that was impossible.)