• [Call for] Nominations for the UBports Community Awards

    General
    10
    4 Votes
    10 Posts
    340 Views
    R
    My nominations. Community favourite app: Sapot Sapot has become my go-to browser for everything. It does not feel like a compromise and the gesture controls are both creative and intuitive. Keeweb It works. That is already fantastic. It works very well and has given me no problems at all for the months that I have used it. Password managers are an essential tool for UT and this app made my life a tonne easier. Community favourite developer Kugi Eusebio I use several of Kugi's apps. They have a coherent feel to them which is really nice to see and they have made my UT experience functional. TBA
  • SOTY - Speech-To-Text Recognition on Ubuntu Touch

    App Development
    3
    8 Votes
    3 Posts
    333 Views
    I
    New version is out Changes: Fixed a few bugs Added models installer (works for many languages listed in the menu, other models will be uploaded later) The application UI can be translated. Now it comes with amd64 build
  • Upgrading Pinephone from 20.04 to 24.04

    Moved PinePhone
    4
    1 Votes
    4 Posts
    104 Views
    N
    @johndoe said in Upgrading Pinephone from 20.04 to 24.04: @newguy I think it is very likely, that you break the system that way, because Ubuntu Touch is not meant to be updated with apt. The PinePhone port is, you can't update it using the normal System Settings approach.
  • 0 Votes
    6 Posts
    51 Views
    R
    @mango Thunderbird and firefox will probably eat your ram.
  • Xiaomi redmi 10c

    General
    2
    0 Votes
    2 Posts
    9 Views
    MoemM
    @edisss No one knows! There is no list, it depends on whether someone owns the device and the skills, and steps forward to do the work.
  • Call for testing: Ubuntu Touch 24.04-1.1

    OS
    58
    12 Votes
    58 Posts
    4k Views
    C
    @gpatel-fr Hello I did a few tests today. I tried another micro SD card and the read only problem did not exist. So it must be a problem with the micro SD card. A check of the file system (with pc) of the problematic 1 TB micro SD card showed problems. After repairing the file system, ut mounted the card rw again. With my x23 I had the situation a few times that the micro SD card was sometimes not available (maybe a contact problem). This probably led to the file system problem. Thank you very much for the help in locating the error!! Best regards Charly
  • Installation Experience UT on VollaOs 15

    Volla Quintus
    4
    3 Votes
    4 Posts
    104 Views
    messayistoM
    When I change scaling in ubuntu tweak tool, I have to restart lomiri. When I do it again, the phone freezes on the "restart lomiri" popup and I have to do a hard reset.
  • Recommendations for Ubuntu Touch

    Moved General
    3
    0 Votes
    3 Posts
    147 Views
    MoemM
    @ufoddos said in Recommendations for Ubuntu Touch: unified communication Sorry, what does that mean? I'm not familiar with that term.
  • Playback pauses when changing pulseaudio's default sink

    Moved Unsolved App Development
    4
    1 Votes
    4 Posts
    208 Views
    B
    Ok, this seems to be a new feature of the 24.04-1.0 release. This seems to be desired by others, but hinders function of my equalizer app. An option to disable/enable this behavior in the system settings would be nice. Interestingly this does not happen, when moving the sink inputs with e.g.: pactl list short sink-inputs | awk '{print $1}' | xargs -I {} pacmd move-sink-input {} equalizer and back with pactl list short sink-inputs | awk '{print $1}' | xargs -I {} pacmd move-sink-input {} sink.primary_output. But to implement this function into my app and consider all the different eventualities will be very complicated, i think. Changing the default sink is much easier.
  • Nexus 7 (2013) Wi Fi

    Unsolved Support
    3
    0 Votes
    3 Posts
    79 Views
    Vlad NirkyV
    @ubuntoutou Brute force... Excellent username!
  • Enabling MAC randomization

    Unsolved Support
    22
    1 Votes
    22 Posts
    819 Views
    G
    said in Enabling MAC randomization: the problem is a bit random itself actually, it's a bit clearer now; when I enable wifi, I see the whole bunch of other wifi access points around my place; if I close settings and come back after some time (don't remember, maybe half an hour) and I open wifi settings again, I don't see anymore any other access points that the one I am connected to.
  • Organic Maps on Ubuntu Touch

    App Development
    7
    1 Votes
    7 Posts
    371 Views
    B
    @pparent I can imagine, that Alexander is quite experienced, and together you will find good solutions. If sombody else have ideas, I think is always good to hear and discuss them. I will ask Alexander if I can give you his emailadress.
  • Call for testing: Ubuntu Touch 20.04 OTA-11

    OS
    8
    5 Votes
    8 Posts
    860 Views
    peat_psuwitP
    Update 18 November 2025 (2): Apologize for the mistake. We've published Ubuntu Touch 20.04 OTA-11 RC 2 to include a fix for sending SMS on some VoLTE-enabled devices.. The release date for Ubuntu Touch 20.04 OTA-11 is still 25 November 2025.
  • Signal UT: Signal-Desktop for Ubuntu Touch

    App Development
    56
    1
    4 Votes
    56 Posts
    2k Views
    adorsazA
    @pparent I've plugged my phone on a monitor and leverage the Ubuntu Touch desktop mode (convergence) to have Signal UT and Waydroid side by side. Then you can take picture directly with your phone. The only thing a bit hard with this setup were that Waydroid scale with a big zoom. I had to update the LineageOS display setting to reduce UI to the smallest possible value.
  • 0 Votes
    1 Posts
    51 Views
    No one has replied
  • [Question] getprop in a confined app?

    Unsolved App Development
    17
    0 Votes
    17 Posts
    351 Views
    G
    @kugiigi said in [Question] getprop in a confined app?: based on physical measurement I think that this physicalDotsPerInch thingy could be affected by the idea that QT has about the physical size of the screen: using my first pyqt application: from PyQt5.QtWidgets import QApplication q=QApplication(['demo']) ls = q.screens() myscr=ls[0] print(f"name={myscr.name()}") print(f"logicalDotsPerInchX={myscr.logicalDotsPerInchX()}") print(f"logicalDotsPerInchY={myscr.logicalDotsPerInchY()}") print(f"physicalDotsPerInch={myscr.physicalDotsPerInch()}") print(f"physicalDotsPerInchX={myscr.physicalDotsPerInchX()}") print(f"physicalDotsPerInchY={myscr.physicalDotsPerInchY()}") print(f"physicalSize={myscr.physicalSize()}") print(f"size={myscr.size()}") print(f"devicePixelRatio={myscr.devicePixelRatio()}") print(f"depth={myscr.depth()}") print(f"virtualSize={myscr.virtualSize()}") print(f"geometry={myscr.geometry()}") I get: name=XWAYLAND0 logicalDotsPerInchX=96.25263157894736 logicalDotsPerInchY=96.05042016806723 physicalDotsPerInch=320.48931496290584 physicalDotsPerInchX=320.51134020618554 physicalDotsPerInchY=320.46728971962614 physicalSize=PyQt5.QtCore.QSizeF(97.0, 214.0) size=PyQt5.QtCore.QSize(1224, 2700) devicePixelRatio=1.0 depth=24 virtualSize=PyQt5.QtCore.QSize(1224, 2700) geometry=PyQt5.QtCore.QRect(0, 0, 1224, 2700) since for my FP5, the physical size of the screen is supposed to be 21.4cm, that is, 8.425 inches, this gives 2700/(21.4/2.54) = 320.4672897196262 and that's physicalDotsPerInch is reporting in my test with pyqt on my FP5. Maybe Volle phones are also misreporting the physical size of the screen ? Edit: I think I understand; I am using straight qt and pyqt that has no knowledge of mir, that's why it is using xcb: printenv returns QT_QPA_PLATFORM=ubuntumirclient;wayland-egl;ecb I'll search if there is a way to get a plugin to enable my pyqt for ubuntu touch maybe it could give better results. Edit 2: not found but I now doubt that there is a good way to fix it on the FP5, Internet gave me the useful tip to use an utility called 'mirout', and it reports to me: phablet@ubuntu-phablet:~$ mirout Connected to server: <default> Output 1: LVDS, connected, 1224x2700+0+0, enabled, on, 97mm x 214mm (9.3"), normal, 3.00x, unknown, phone 1224x2700 60.00*+ Output 2: DisplayPort, disconnected Output 3: Virtual, disconnected 1920x1080 60.00*+ so the problem is indeed with the phone, not the driver.
  • Guide to charge limiting your Fairphone 5

    Fairphone 5
    15
    1 Votes
    15 Posts
    324 Views
    C
    @gpatel-fr yeah, I have things to do but in the weekend I'll refine this more the only reason I'm not taking this down is because I'm doing it on mt FP5 and it has not exploded yet... so I may be good until the weekend.
  • any PineTab2 update?

    PineTab 1 & 2
    1
    0 Votes
    1 Posts
    53 Views
    No one has replied
  • Can not run xmir(?) apps

    Oneplus 6/6T
    3
    1
    0 Votes
    3 Posts
    118 Views
    R
    @TheTrench It's 20.04 OTA-10. 24.04 is not supported (yet, I hope) on this device.
  • Fingerprint

    Fairphone 5
    21
    1
    0 Votes
    21 Posts
    780 Views
    F
    Hopefully this will helps someone else here. This has been my experience with 24.04-01 Stable: Fingerprint sensor broken Daily: Audio Broken (did not test BT) RC: Everything is working