Navigation

    UBports Robot Logo

    UBports Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. lduboeuf
    • Profile
    • Following 0
    • Followers 0
    • Topics 29
    • Posts 380
    • Best 139
    • Groups 0

    lduboeuf

    @lduboeuf

    207
    Reputation
    498
    Profile views
    380
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location France - Brittany

    lduboeuf Follow

    Best posts made by lduboeuf

    • RE: Get Started On Your First Ubuntu Touch App

      If anyone interested, this is also one of mine, with surely some mistakes and omissions , sorry : https://m.youtube.com/watch?v=TE-s5522v0Y

      In french: https://m.youtube.com/watch?v=lU6J01XB4pc

      posted in News
      lduboeuf
      lduboeuf
    • [Guide] Code completion on Qt Creator for Ubuntu.Components

      Hi,
      Just to share my experience for developping Apps with QtCreator:
      ( A rewrite from https://gist.github.com/lduboeuf/dcf22607207d5b7abc8ac966d20942ce )

      To get Ubuntu.Components recognized by QtCreator:

      • If you work on Ubuntu (16.04-18.04) :
      ## Get public Ubports key
      wget -qO - https://repo.ubports.com/pubkey.gpg | sudo apt-key add -
      
      ##add ubports repository
      sudo add-apt-repository "deb https://repo.ubports.com/ [bionic|xenial] main"
      
      ##install Ubuntu.components
      sudo apt install qml-module-ubuntu-components
      
      ##qml components should be installed in "/usr/lib/x86_64-linux-gnu/qt5/qml"
      ##set the environnement variable to profile
      echo "export QML_IMPORT_PATH=/usr/lib/x86_64-linux-gnu/qt5/qml" >> ~/.profile
      
      ##reload env or you might need to logout/login
      source ~/.profile
      
      • A more generic solution using clickable image:
      ##run container clickable
      docker run -i -t --entrypoint /bin/bash clickable/ubuntu-sdk:16.04-amd64
      
      ##in an another terminal, get the container id
      docker ps
      
      ##copy ubuntu components to local folder
      docker cp [container id]:/usr/lib/x86_64-linux-gnu/qt5/qml/ /your/local/directory
      
      ##set the environnement variable to profile
      echo "export QML_IMPORT_PATH=/your/local/directory" >> ~/.profile
      
      ##reload env or you might need to logout/login
      source ~/.profile
      
      ##stop container
      docker stop [container id]
      
      
      • Or running QtCreator in a docker container based from clickable image:

      example here: https://github.com/lduboeuf/ut-qtcreator , use branch "add module" branch for installing also some UT qml modules

      EDIT: Now clickable provide a Qtcreator IDE with clickable ide qtcreator command
      https://docs.ubports.com/en/latest/appdev/index.html#code-editor-integrations

      posted in App Development
      lduboeuf
      lduboeuf
    • RE: Ubuntu.components ? ( Developpment guidelines )

      Well, my first native app just landed on Openstore. https://open-store.io/app/ttbn.lduboeuf
      I've only used QQC2 components and imported needed svg icons from suru theme.
      I admit that as a QML beginner, it was sometimes hard to make things work and displayed correctly... color theme is still not that good.

      But i'm happy that i can now build for multi os and still use QtCreator.
      Thanks for all your examples

      posted in App Development
      lduboeuf
      lduboeuf
    • RE: no birthdays on contacts?

      @Mystic-X hello, i'm working on it, will land hopefully soon, at least for having a birthday field on the contact app

      follow-up here: https://github.com/ubports/address-book-app/issues/5

      posted in Support
      lduboeuf
      lduboeuf
    • messaging-app: Stickers feature

      hi,

      I've been working in re-enabling the Sticker feature in messaging-app (MMS).
      Here are some screenshots:

      To access it, i've decided to put the "Sticker" icon as part as the attachment panel. Before it was inserted just after the "attachment" icon, but find it a bit annoying to access it.

      screenshot20210113_182527334.png

      To create a new pack, the "+" button is on the right of the tabs

      screenshot20210113_182532145.png

      To import and delete the pack, the buttons are at the bottom-right
      To delete only one sticker, long-press on it

      screenshot20210113_184123731.png

      Any feedbacks ?

      posted in Design
      lduboeuf
      lduboeuf
    • The MMS lost story

      Hi,

      As you know, since the beginning of UT, when Cellular Data is off or if any issue regarding the MMS download, the MMS will be lost, no way to retrieve it later and moreover no notification is sent to the user.

      The complete feature need some skills that i don't have but as a quick fix, i managed to forward any issues as a normal MMS but empty so that user is at least notified something went wrong.
      see:
      https://github.com/ubports/nuntium/pull/3, https://github.com/ubports/telephony-service/pull/13, https://github.com/ubports/messaging-app/pull/248
      It works!

      My question is: should i spent effort to continue doing that "work around" or is someone ready/available to do a more complete scenario (when MMS error: retry or notify, implement deferred download, only download if user allowed to, etc... ) ?

      In case it is a better than nothing solution , what would be a good message to display to user ? ( note that it will be received as a sms )

      Or if any simpler solution, like just displaying a notification( only one place to maintain )

      Related doc:
      See Canonical's specification for the MMS (partly implemented today): http://docs.ubports.com/en/latest/systemdev/mms-infrastructure.html

      [Edit]: UI follow up https://forums.ubports.com/topic/5102/ui-for-mms-errors

      posted in OS
      lduboeuf
      lduboeuf
    • RE: Need feedback about Anbox apps as a daily practice

      There is on going call for Anbox improvement if you want to participate:

      https://www.gofundme.com/f/anbox-on-ut

      posted in General
      lduboeuf
      lduboeuf
    • RE: What is your main points for a perfect personal phone operative system?

      as @LarreaMikel says, a Phone that can be easily hacked. A fast browser . I would prefer easy data sync (calendar, contacts, notes,... ) than convergence.

      posted in General
      lduboeuf
      lduboeuf
    • architecture overview schemas

      hello all,

      Wondering if any up to date overview / architecture schemas available somewhere ?
      Last one i know of are from old Cannonical Ubuntu Touch days: https://www.slideshare.net/chihchun/ubuntu-phone-engineering and https://www.slideshare.net/tusharkute/introduction-to-ubuntu-edge-operating-system-ubuntu-touch

      We might create some in documentation overview section.

      posted in OS
      lduboeuf
      lduboeuf
    • dialer-app: "speed-dial" feature

      Hi,

      As you can see here , i've managed to give a try with the speed dial feature.
      Now the UI is like this, do you see any improvements to be done ?:
      I've tried with "large" fontSize but too large, here i use the "medium".
      The list is a scrollable list from right to left

      screenshot20201112_161836331.png

      landscape may cause issue, but i'm waiting for @CiberSheep to finish its work

      posted in Design
      lduboeuf
      lduboeuf

    Latest posts made by lduboeuf

    • RE: Need feedback about Anbox apps as a daily practice

      There is on going call for Anbox improvement if you want to participate:

      https://www.gofundme.com/f/anbox-on-ut

      posted in General
      lduboeuf
      lduboeuf
    • RE: Messaging app colors

      @keneda You can find the colors used here: https://github.com/ubports/messaging-app/blob/xenial/src/qml/MessageBubble.qml#L90

      These are colors from the themes.

      posted in Support
      lduboeuf
      lduboeuf
    • RE: Keyboard not poping up for online accounts

      @lakotaubp is there any issues filled somewhere for that ?

      posted in Support
      lduboeuf
      lduboeuf
    • RE: Caller echo

      maybe @vince1171 can give a clue ?

      posted in Oneplus 3/3T
      lduboeuf
      lduboeuf
    • RE: USSD

      @markatrafik humm already heard the echo issue for some devices, here ?: https://forums.ubports.com/topic/5968/caller-echo?_=1617469387193

      posted in App Development
      lduboeuf
      lduboeuf
    • RE: USSD

      @markatrafik you can see logs from the logviewer app, or in .cache/upstart/

      Don't see much from dbus
      Edit: we can see an error in dbus log. But i personally don't know where to look at Maybe someone know better ?

      posted in App Development
      lduboeuf
      lduboeuf
    • RE: USSD

      don't know much about USSD, just saw a fix that have been done few months ago. Do you have logs ( dialer-app or dbus ) ?

      posted in App Development
      lduboeuf
      lduboeuf
    • RE: Can not Receive MMS T-mobile

      If you are adventurous: https://github.com/ubports/messaging-app/pull/260

      This will give you some error reporting, nuntium logs should give some info too

      posted in Support
      lduboeuf
      lduboeuf
    • RE: The road(map) explained

      @jhackler You will find OTAs Project board here: https://github.com/orgs/ubports/projects

      posted in OS
      lduboeuf
      lduboeuf
    • RE: Weird text messages showing up for voicemail box status?

      @johnthelearner I don't understand the issue, but VM is not supported afaik. Can't you just delete the message ? ( swipe right on the message bubble, and delete )

      posted in Support
      lduboeuf
      lduboeuf