@Opolork No, that's not an option. The OpenStore maintainer has nothing to do with the text that each programmer puts in their applications. Besides, you had to open an issue in each application, not both in the same application.

Posts
-
RE: Where can i highlight spelling errors on app pages on the OpenStore website?
-
Questions and answers 166 to 175: blog and audio now available.
Ubuntu Touch Q&A 166, 169 and 172 is available in both blog and audio versions.
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-166-3964
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-169-3967
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-172-3970Ubuntu Touch Q&A 167, 168, 170, 171, 173, 174 and 175 audio only
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-167-3965
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-168-3966
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-170-3968
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-171-3969
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-173-3974
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-174-3975
https://ubports.com/blog/ubports-news-1/ubuntu-touch-q-a-175-3976I am announcing these posts on the forum, as I have not seen them published as on other occasions.
-
RE: Where can i highlight spelling errors on app pages on the OpenStore website?
Hello @Opolork, you can open a bug in each application's repository. You can even make an MR.
-
RE: Ubuntu Touch Q&A 168 call for questions
@Lakotaubp said in Ubuntu Touch Q&A 168 call for questions:
@captainfunk You mean if you rotate so that the usb port becomes the "top" of the phone the screen does not rotate with it. Which it does not even on an android phone I have.
As to why, no idea : )In Xenial they implemented it and it works. I don't remember in which OTA it started working.
-
RE: Multimedia player
hello @AmauryDBZ ,
What I do is to convert the video on a pc with ffmpeg.
ffmpeg -i input.mp4 output.mp4 #or ffmpeg -i input.mkv output.mkv #or ffmpeg -i input.avi output.avi
It is a long process.
-
RE: Call for testing: Ubuntu Touch 20.04 OTA-8
@domubpkm said in Call for testing: Ubuntu Touch 20.04 OTA-8:
@Bolly Hello. What is your data provider ? For me, it is Bouygues. I want to be sure the problem doesn't come from this. I notice, when it switch back to stable (OTA-7), now i can't send and receive MMS too..
Hello @domubpkm , I'm sorry but the phone belongs to a relative and I can't test RC. Anyway in Spain we don't use MMS.
-
RE: fastboot cannot find device
@kaesestulle, Don't you have to activate the developer mode? Have you done it?
-
RE: Do you want to talk about G!sForecast?
hello @Vlad-Nirky, you may have to add an option for each user to add their api key like the Indicator Weather app does?
-
RE: WhatsApp on Ubuntu Touch?
Hi, if you want Whatsapp in UT it's as easy as asking Meta to make a version for UT.
Neither Google, nor Apple make Whatsapp for Android/Iphone.
Anyway this thread is not for debate this is a call for testing.
-
RE: Telegram app - changing phones
@Andrej1299 The best test you can do is to download Telegram on the desktop and see what it asks you.
If you haven't touched anything special they will send you a code in the other Telegram or by SMS. If so you don't need any password and you won't have any problems.
P.S. Or you can download this and log in to this application. https://open-store.io/app/mywebtelegram.josele13
-
Yumi calendar 2025
Hello, I have made some calendars for 2025 again, I hope you like them. This year there is a little novelty 🤫
Calendar with Spanish public holidays
Spanish calendar
English calendar first monday
English calendar first sunday
French CalendarHappy 2025 !!!
-
RE: Camera app cannot be installed
@Fish said in Camera app cannot be installed:
@AppLee I have tried changing the channels. Unfortunately, the camera app is still missing ... and cannot be installed. It almost looks like there are no more photos for me now...
I suppose that apart from changing them, you installed the downloaded image, right?
-
RE: I am about to give up and leave
Hello @jojumaxx,
I hope you find it useful in its Alpha state.
-
RE: OTA 5 Focal Released
@UBportsNews Too bad there is no wallpaper this time.
https://gitlab.com/ubports/organization/ux-des/design-banners/-/tree/master
-
RE: Ubuntu Touch Q&A 143 Call for questions
@AppLee said in Ubuntu Touch Q&A 143 Call for questions:
@Bolly :grinning_face_with_smiling_eyes:
I wear UBports hoodies if that is what you're referring to.
There is this one: https://ubports.com/en/shop/product/ubports-hoody-15?page=2#attr=1I have it :beaming_face_with_smiling_eyes:
And the other one with the zipper was gifted to the contributors present at the first UBports TouchDown in February, so this one is a very limited edition.
I was referring to this one :call_me_hand_medium-dark_skin_tone:
Thanks
-
RE: Ubuntu Touch Q&A 143 Call for questions
Hello and thanks for everything,
Where can we buy AppLee's jacket? It's very cool! -
Script to convert videos for viewing on Ubuntu Touch
Hello I share this script to run it on the PC if anyone can use it.
The script in this case converts all mp4 and mkv files in the folder where you run it to an Ubuntu Touch readable mp4. The script does not delete the originals, it will put them in the Converted_videos folder at the same level.
#!/bin/bash mkdir Converted_videos for i in *.mp4 do withoutExtension=$(echo "$i" | cut -f 1 -d '.') ffmpeg -i "$i" Converted_videos/"$withoutExtension".mp4 done for i in *.mkv do withoutExtension=$(echo "$i" | cut -f 1 -d '.') ffmpeg -i "$i" Converted_videos/"$withoutExtension".mp4 done
I also share the original entry in Spanish
https://elcondonrotodegnu.wordpress.com/2024/05/28/my-scripts-v-convertir-videos-para-poder-verlos-en-ubuntu-touch-o-en-reproductores-no-compatibles/