• This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Ubuntu Touch Q&A 24 | March 3, 2018

    15
    1 Votes
    15 Posts
    4k Views
    G
    @gizmochicken said in Ubuntu Touch Q&A 24 | March 3, 2018: Now that a few phones support Project Treble, has UBports revisited whether Project Treble will be of any help to UBports and Halium? And if so, in brief, what are the current thoughts on this? For anyone who is interested, Project Treble is discussed starting at about 25:35 in the Ubuntu Touch Q&A 24 video.
  • My new Nexus 5 Background

    2
    3 Votes
    2 Posts
    722 Views
    S
    nice image
  • Downgrading from 16.04 to 15.04

    3
    0 Votes
    3 Posts
    791 Views
    M
    @blueunknown try starting ubports-installer with sudo ( the only time it recognized my pro5 ) sudo ubports-installer
  • Motorola G4 Plus

    2
    0 Votes
    2 Posts
    736 Views
    advocatuxA
    @fritte there's some work done in Motorola G4 Play [0] but AFAIK there' no one working in G4 Plus. So maybe you want to give it a go? [1] [0] https://github.com/Halium/projectmanagement/issues/34 [1] https://docs.halium.org/en/latest/index.html
  • OTA

    3
    0 Votes
    3 Posts
    816 Views
    I
    @stefano Thanks!
  • New/Old user.

    7
    0 Votes
    7 Posts
    1k Views
    H
    Great, thanks for the reply.
  • Ubuntu Touch Q&A | February 17, 2018

    11
    0 Votes
    11 Posts
    3k Views
    M
    @wayneoutthere my british sense of humour slips out now and then
  • Sponsoring page and missing people

    6
    0 Votes
    6 Posts
    2k Views
    GalaxiaG
    Thanks again for the suggestions. Right now on the Donations page (https://ubports.com/donate) you will find advertisements for Paypal, Bitcoin, Liberapay and Patreon. I like your idea about having a widget provide the running totals of each platform, however I think it will be best (if we were to display any donation amounts at all) that we display a combined number. UBports is a world class operation and we should present only our best attributes. UBports continues to grow and advance because of all its amazing users. Thanks again for supporting the project.
  • Using BOINC (or Something Similar) For Community Services

    11
    0 Votes
    11 Posts
    2k Views
    G
    I've updated the chapter 5 about uNav, the English and the Spanish page.
  • UBports Community Update 22 | February 3, 2018

    9
    0 Votes
    9 Posts
    2k Views
    T
    Ok my questions in decreasing order of priority I'd like to see addressed in the livestream: How close are you to pushing Anbox builds for non-Mediatek devices on Xenial devel e.g. the MX4 or any of the three core devices? I think a large portion of the userbase wants to try it out and help you beta test but what's the timescale? Is there any way we can get a changelog for the Xenial devel images? I'd like to know what's being improved from build to build. Related to other user's' questions, when you update the web browser can you provide the ability to specify a download folder? It would be very convenient to have it go to the SD card automatically especially for devices with cramped internal storage.
  • Stats UBports, Service Unavailable

    3
    1 Votes
    3 Posts
    947 Views
    libremaxL
    @flohack I knowed the stats "Total Devices" was "wildly inaccurate" but at least it was possible to extrapolate some trends and stats by countries and devices, if not truly accurate, were useful. That is why I think a change in the description would have been a better short-term solution than stopping it.
  • Issue when completing a received call

    6
    0 Votes
    6 Posts
    1k Views
    U
    For anyone else having this issue, I have logged it in GitHub under GitHug Issue #
  • Gmail client

    13
    0 Votes
    13 Posts
    3k Views
    L
    j'ai créé l'application Gmail avec "créateur de webapp"et ça marche bien. En fait c'est un racourcie de la page internet, je n'ai pas de notification comme celle qu'il y avait sur l'ancienne version de Ubports. I created the Gmail app with "webapp creator" and it works well. In fact it is a shortcut of the web page, I do not have a notification like the one that was on the old version of Ubports.
  • How to connect a webcam

    10
    0 Votes
    10 Posts
    2k Views
    G
    Btw: I have no /dev/vi* device at all, not in my BQ E4.5 running Canonical's UT, and not in the UBport's one. I pluged today a cam into the latter and the result is the same: phablet@ubuntu-phablet:~$ ls -l /dev/vi* ls: cannot access /dev/vi*: No such file or directory phablet@ubuntu-phablet:~$ ls -l /dev/usb* crw-rw---- 1 root root 10, 20 Jan 26 07:59 /dev/usb_accessory crw------- 1 root root 189, 0 Jan 26 07:59 /dev/usbdev1.1 (plugin) an 26 08:03:28 ubuntu-phablet kernel: [ 222.669106][USBPHY]slew calibration:FM_OUT =329,x=4183,valu e=4 Jan 26 08:03:29 ubuntu-phablet kernel: [ 223.247221]usb 1-1: new full-speed USB device number 2 usi ng musb-hdrc phablet@ubuntu-phablet:~$ ls -l /dev/usb* crw-rw---- 1 root root 10, 20 Jan 26 07:59 /dev/usb_accessory crw------- 1 root root 189, 0 Jan 26 07:59 /dev/usbdev1.1 crw------- 1 root root 189, 1 Jan 26 08:03 /dev/usbdev1.2 Over the night I got an answer in the old ubuntu-phone mailing list, her it is: Date: Thu, 25 Jan 2018 20:36:33 +0100 From: Christoph Schulz <ch.schulz@joinout.de> To: ubuntu-phone@lists.launchpad.net Subject: Re: [Ubuntu-phone] connecting an USB video cam to the BQ E4.5 -- how to view the video stream? ... Maybe QtMultimedia detects the webcam and you can use it from there? $ cat >cameras.qml <<EOT import QtQuick 2.4 import QtMultimedia 5.6 ListView { model: QtMultimedia.availableCameras delegate: Text { text: "id: " + modelData.id + ", name: " + modelData.displayName } } EOT $ cat >$HOME/.local/share/applications/cameras.desktop <<EOT [Desktop Entry] Name=Camera List Exec=qmlscene $HOME/cameras.qml Type=Application X-Ubuntu-Touch=true EOT Then refresh your app scope and start it from there and see if there are more than the two default cameras (front/back). My E4.5's output: id: undefined, name: Camera 0 Back facing id: undefined, name: Camera 1 Front facing Hope this helps. For the moment this is all. No I followed the advice of Christoph, and it shows only the two mentioned cams (Back and Front).
  • UBports Community Update 21 | January 20, 2018

    12
    2 Votes
    12 Posts
    3k Views
    libremaxL
    @wlbi Thanks, now I know the syntax to specify time in youtube video
  • Access to the old wiki

    3
    2 Votes
    3 Posts
    1k Views
    O
    Thank you ! I converted it to "DAV.RST" and proposed a commit https://github.com/ubports/docs.ubports.com/commit/d4e2bbb77e9a4a0d59f9a5d0916eada74ac84155 Does it need to be validated by someone ( @UniSuperBox ?) to appear in the doc?
  • Can I make internet calls (VoIP, SIP)?

    13
    0 Votes
    13 Posts
    3k Views
    twinkybotT
    @mihael Thanks I know.
  • UBports Ubuntu Touch OTA-3 buzz

    ota
    31
    4 Votes
    31 Posts
    10k Views
    C
    I had an impression that there is no chance to have internet voice calls on UT due to fact there is no Telegram/Signal voice calls implementation. Today I read this topic: link text :). I'll keep watching it. I just need any (encrypted would be the best one of course) SIP client which would be used on UT, Android and iOS. Linphone seems to cover these needs!
  • Two Months Later with UT on Oneplus One

    oneplus one ubuntu touch
    5
    2 Votes
    5 Posts
    3k Views
    L
    @einstein212 thanks for the heads up! I just got the update and it fixed loads of bugs for me. Turns out I had the updates set to wifi only. I think I did that a while back to prevent things from downloading when I didn't want them to. Makes me feel silly now for doing it seeing how much smoother I've found OTA 3 to be.