• [SOLVED]How to Import Python library to clickable?

    python clickable
    9
    1
    1 Votes
    9 Posts
    4k Views
    G
    @hummlbach said in How to Import Python library to clickable?: The question about Python Library is SOLVED, with apt-get install on get_libs.py maybe I need to open new thread, about "How to check Crash Log in Ubuntu Touch?" OR "Create VoIP application with PJSIP in Ubuntu Touch" the Strace log didn't show me exactly what make the system reboot. this show me the technique to see what happen before system crashed since I'm using SSH to my phone, I follow the SSH step Log into phone using clickable shell Open another tab. Run clickable shell in tab 2 run tail -f /var/log/syslog to see system log in realtime Reproduce the crash in tab 1 Watch any error messages in the tab 2 Now I need to move to another thread to discuss it, and close this Thread as Solved
  • Need Help: WebApp for Internet Radio

    13
    0 Votes
    13 Posts
    2k Views
    D
    @ierihon said in Need Help: WebApp for Internet Radio: But with Radiolise i have error: "something went wrong" In standard browser Radiolise work well. sounds like user agent string. some websites behave differently when they think you are using ios/android/windows/edge/firefox/younameit in an effort to be more compatible, but sometimes they end up being more broken with less popular browsers due to their naive detection logic. you can try different user agent strings with the webapp
  • Installation of convergence desktop apps in UBPorts OTA-3?

    13
    0 Votes
    13 Posts
    3k Views
    K
    Under Support is a new thread regarding libertine https://forums.ubports.com/topic/1422/libertine/21
  • Dekko as click?

    dekko
    40
    0 Votes
    40 Posts
    16k Views
    ierihonI
    @advocatux Thanks!
  • skype

    6
    0 Votes
    6 Posts
    1k Views
    ?
    @dr1445 If you and your family have a Matrix account (or set one up here: https://riot.im/app/# (name and password required)) then this uMatriks app has VoIP calls: https://open-store.io/app/umatriks.mariogrip.test (open source all the way! )
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Asteroid OS Client

    8
    5 Votes
    8 Posts
    3k Views
    libremaxL
    @thatoo The two seems stalled; no commit for several months.
  • What might be a way to get GPS coordinates in Python?

    3
    0 Votes
    3 Posts
    876 Views
    advocatuxA
    @blandcorporation Michelle just told me you can take a look to https://github.com/mymike00/ActivityTracker Edit: Rodney told me «use Qt via pyotherside, or qml and pass to the python».
  • Viewer for vector maps

    8
    0 Votes
    8 Posts
    1k Views
    R
    OSMScout for Ubuntu is way outdated if you take into account the development of the library behind it - libosmscout. During this time, API has changed multiple times and the devs should be ready to work on these changes. Although, libosmscout community will help you via mailing list, if needed. In general, we should join forces in developing apps for Ubuntu Touch, Sailfish (I am working on that platform), and Plasma. There are many similarities (Qt/QML/Linux) and we could surely benefit from working together. As for offline vector maps, SFOS has progressed massively in the last few years. I am working on solution that provides offline/online OpenGL-accelerated maps, routing, search and spoken instructions. My solution was described here earlier at https://forums.ubports.com/topic/1022/offline-navigation-for-ubports/4 . Recent development in terms of offline server: I have ported GUI to QtQuick. This, in my eyes, should help bringing it to UT as well, if I understand your architecture correctly.
  • Twitter Client Piepmatz

    1
    4 Votes
    1 Posts
    514 Views
    No one has replied
  • IDEs for ubuntu touch development

    6
    2 Votes
    6 Posts
    2k Views
    H
    I launched an issue to the provider of the package for this enhancement yesterday, but there is still no feedback. In the meantime I checked other packages and found the package "terminal tab". This is providing you a terminal within the atom surface, where you can launch clickable like in a desktop shell. So you need not to change between windows/applications. This may help in the meantime. Any other supporter is welcome too (and required for my impression). It would be great if we can find a specialist for atom extension packages who is willing to prepare some improved tools for development. @advocatux : Yes I have seen it, and there are some interesting options still to evaluate. I already tested the log command, which is quite helpful and a first step to see roughly what is going on. It still cannot replace a good debugger.
  • most wanted core apps to run ubuntu as daily phone OS

    core apps
    71
    3 Votes
    71 Posts
    39k Views
    ?
    I emailed the developers of Symphytum, and got a response. Oirio Joshi wrote: "Hello. "A mobile version requires to rewrite the GUI part entirely, so that's probably not going to happen anytime soon, unless anyone is interested in contributing that. I think a mobile friendly GUI could be shared with android and other linux based mobile systems. "Symphytum is more or less in maintenance mode, where smaller features and bug fixed can be expected but we, as a small team, don't have the resources for such a big change, but who knows what the future looks like."
  • Howto setup framework "ubuntu-sdk 16.04"

    8
    0 Votes
    8 Posts
    2k Views
    H
    @hummelbach: thank you for your proposal. I tried it already for test purposes on my desktop. After resolving the network issue I could install the necessary image. However, when testing I get an error message related to missing graphics drivers, which are installed according to apt. Nevertheless, for the small tests I actually run it is still working.
  • references for file access requested

    4
    0 Votes
    4 Posts
    1k Views
    H
    Dear Fulvio, thank you for your feedback. I will carefully go through these examples. However, I'm a litte bit concerned about the way UBtouch is going. You are leaving the QT creator IDE for new IDE with as little support for installing toolchains as possible (at the first glance). You are switching to cmake, which is new for me, too. So porting my QT based applications (using qmake) becomes more and more heavier. At the first glance I'm missing debug capabilities in ATOM. This is a major drawback for me. Please correct me if I'm wrong. So far I have reviewed the tedit code, where the c++ plugin is getting the filename from the qml part, so far nothing special on the c++side. By this configuration you are restricted to the directory space which are allowed in the qml environment. And quite this environment is the open point for my. So the next step would be to install a working toolchain under ATOM.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Unable to start app because of invalid app ID (xenial) [solved]

    3
    2 Votes
    3 Posts
    943 Views
    Z
    Ok, it turned out my issue was that the old Ubuntu SDK project had the following line set in the Transport/Transport.pro file: desktop_file.files = $$OUT_PWD/*.desktop which turned out to work fine for vivid but for xenail the desktop file was missing from the final click package. So if anyone bumps into the similar issue you may try changing the above glob with a full path like this: desktop_file.files = $$OUT_PWD/Transport.desktop Once done the build project should be working (exacutable) on Xenial. Thank you @dohbee for helping me so much with this.
  • Calendar views

    47
    1 Votes
    47 Posts
    15k Views
    T
    @hummlbach That sounds fantastic, thank you!
  • How to add other Qml modules?

    3
    0 Votes
    3 Posts
    1k Views
    advocatuxA
    @krille Brian told me that probably you need to use the old style import for the websockets because of the qt version that is in Ubuntu Touch: https://doc.qt.io/qt-5/qtwebsockets-qmlmodule.html
  • VPN Editor in Open Store?

    1
    0 Votes
    1 Posts
    618 Views
    No one has replied
  • QT libraries for development in Ubuntu 18.04

    3
    0 Votes
    3 Posts
    4k Views
    arubislanderA
    Rather than ditching your 18.04 installation for a 16.04 one, or running 16.04 in a virtual machine, you might want to consider running 16.04 in an LXD/LXC container. $ sudo snap install lxd ... $ sudo lxd init ... $ sudo lxc launch ubuntu:16.04 devbox -c security.nesting=true ... $ sudo lxc shell devbox That will install the lxd snap, initialize lxd for use, launch a privileged lxc container named devbox based on a 16.04 image and finally drop you in a shell in the lxc container.