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.
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.
@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
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 Calendar
Happy 2025 !!!
@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?
Hello @jojumaxx,
I hope you find it useful in its Alpha state.
@UBportsNews Too bad there is no wallpaper this time.
https://gitlab.com/ubports/organization/ux-des/design-banners/-/tree/master
@AppLee said in Ubuntu Touch Q&A 143 Call for questions:
@Bolly
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=1
I have it
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
Thanks
Hello and thanks for everything,
Where can we buy AppLee's jacket? It's very cool!
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/
Hello @holgerlxxiii
As @AppLee said, there is no easy way.
@ctyler1984 said in Ubuntu Touch SDK Vivid Archive:
I found on the forum that there once was an Ubuntu touch programming course that a user created that did have vm uploaded to google drive however we are talking years ago and through the course of time the link is now 404.
Hello @Moem
@Moem said in Browser limits phone usability:
@domubpkm said in Browser limits phone usability:
Is this a morph update (QtWebEngine) or a real new browser?
A real new browser with a different rendering engine, if i recall correctly. Alfred was talking about it.
Could it be this one?
https://mastodon.social/@fredldotme/112393573256992836
https://mastodon.social/@fredldotme/112394199074682010
Hello @linuxfanche ,
I think you can play audio via bluetooth like in the car or on a bluetooth speaker (if I understood the question correctly).
Video streaming via Bluetooth does not exist as far as I know.
Hello @thedeafenguy, You may not have the same security protocol? I think if you have the same SSID and password you shouldn't have to retype the password.
@kugiigi You may have to exclude some folders or all Teleports from the backup.
Hello @MV,
You can try sending them as a file or try this version of Teleports which fixes the problem.
https://gitlab.com/ubports/development/apps/teleports/-/issues/308#note_1778248915
This time I have made a script to delete files from Teleports as their folders/files take up a lot of space. I always used to do it with UT Tweak Tool but the drawback is that you have to reconfigure the Telegram account.
First, use the Morph browser or Teleports to download (just click) CleanTeleports.sh from here or create a file with the following code:
#!/bin/bash
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/files/
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/thumbnails/
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/profile_photos/
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/db.sqlite
read -p "Please close the Teleports application, is it closed? y/N " answer
if [ "$answer" == "y" ] || [ "$answer" == "Y" ] ; then
seconds=10; date1=$((`date +%s` + $seconds));
while [ "$date1" -gt `date +%s` ]; do
echo -ne "The files will be deleted within $(date -u --date @$(($date1 - `date +%s` )) +%s) seconds..\r";
done
sleep 1; echo -e "\nDeleting..."
rm -rv ~/.local/share/teleports.ubports/teleports.ubports/files
rm -rv ~/.local/share/teleports.ubports/teleports.ubports/database/thumbnails/
rm -rv ~/.local/share/teleports.ubports/teleports.ubports/database/profile_photos/
rm -v ~/.local/share/teleports.ubports/teleports.ubports/database/db.sqlite
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/files/
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/thumbnails/
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/profile_photos/
du -hd 0 ~/.local/share/teleports.ubports/teleports.ubports/database/db.sqlite
else
echo "Script cancelled, it is necessary to manually close the Teleports application."
fi
Now we have to give run permissions to the CleanTeleports.sh file and run it, I assume it is in the Downloads folder. Open the terminal and run the following:
cd Downloads
chmod +x CleanTeleports.sh
./CleanTeleports.sh
It then tells us the size of the folders and the db.sqlite database.
If we want to delete these folders and the database, we will have to close Teleports if it is not already closed and tell it that we have already closed it by typing "y" and enter. If we don't want to clean up, we press anything other than "y" or "Y" or close the terminal.
I hope you find it as useful as I do, as I still use Krillin on a daily basis and he has always been the "little guy in the house", little space .
Caution: Please note that running this script will delete some Teleports files and it might take a while to start up the first time because of this as they will be created again.
In Spanish -> https://elcondonrotodegnu.wordpress.com/2024/03/31/limpiar-teleports-sin-cerrar-sesion/
@Flohack said in (Forum) In the unread threads I only see threads from two days ago.:
Sorry it took a while. I set it to 7 days, is that enough?
Hi @Flohack
It works perfect.
I think 8 days is better. Sometimes I can go for a week without logging in at the same time.
For example:
Saturday morning of the previous week.
Saturday afternoon this week
Anyway, as it is, it's fine. And we always want more