tibbi
d5c4ade9a4
fixing a glitch at activity extension
2022-06-19 18:07:07 +02:00
tibbi
11288f0e8c
show different error messages if a browser or email client are missing
2022-06-16 15:54:10 +02:00
Priit Jõerüüt
8f8d52f879
Translated using Weblate (Estonian)
...
Currently translated at 100.0% (766 of 766 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/et/
2022-06-16 15:49:47 +02:00
Agnieszka C
7e3c71c9d0
Translated using Weblate (Polish)
...
Currently translated at 100.0% (766 of 766 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/pl/
2022-06-16 15:49:47 +02:00
ㅤAbsurdUsername
a0428613e1
Translated using Weblate (Italian)
...
Currently translated at 100.0% (766 of 766 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/it/
2022-06-16 15:49:47 +02:00
Tibor Kaputa
2d99280233
Merge pull request #1433 from spkprs/patch-103
...
Update strings.xml
2022-06-16 15:49:40 +02:00
Tibor Kaputa
0d51518276
Merge pull request #1434 from KryptKode/fix/moving-pre-sdk-30
...
fix: moving on pre SDK 30
2022-06-16 15:49:32 +02:00
tibbi
f42bf893c3
adding a new string related to renaming folders on the internal storage
2022-06-16 11:26:10 +02:00
darthpaul
6c4cc8ef21
fix: condition for isRestrictedWithSAFSdk30
...
- this affected devices on SDK 29 and below
2022-06-16 06:37:35 +01:00
spkprs
982b9ed8e8
Update strings.xml
2022-06-15 23:06:32 +03:00
tibbi
e919f1507b
use the new way of getting file URIs at CopyMoveTask too
2022-06-15 16:22:22 +02:00
tibbi
aebda1f471
try harder at fetching uris from FileDirItems
2022-06-15 16:17:31 +02:00
tibbi
edb96519a7
adding a helper function for assembling FileDirItem content uri manually
2022-06-15 14:11:15 +02:00
tibbi
4b3acbca86
adding a mediaStoreId field to FileDirItem
2022-06-15 11:53:06 +02:00
Tibor Kaputa
fcb95538b3
adding slovak translation
2022-06-15 11:24:41 +02:00
Pavel Poley
cfc24e5135
corrections
2022-06-15 12:18:19 +03:00
Pavel Poley
1e524b2490
migrate to long type
2022-06-15 12:09:50 +03:00
Pavel Poley
2467cf82fa
migrate to long type
2022-06-15 12:00:38 +03:00
Pavel Poley
c031d4eb5e
android lame license
2022-06-15 11:50:08 +03:00
tibbi
d100d21180
Merge branch 'master' of github.com:SimpleMobileTools/Simple-Commons
2022-06-15 00:15:45 +02:00
tibbi
9d97c480c7
catch and show exceptions thrown at redirecting to Media Management app
2022-06-15 00:15:36 +02:00
אליעזר שלמה דיין
33293b95ae
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (762 of 762 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/he/
2022-06-12 22:29:01 +02:00
Anonymous
ca469a8a7a
Translated using Weblate (Lithuanian)
...
Currently translated at 100.0% (761 of 761 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/lt/
2022-06-12 22:29:01 +02:00
Anonymous
c0c49d415f
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (761 of 761 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/he/
2022-06-12 22:29:01 +02:00
tibbi
954d1f4dc2
adding 2 new strings for clearer error messages
2022-06-12 22:28:52 +02:00
tibbi
39568639b5
adding an alternative string for the free app
2022-06-12 17:21:11 +02:00
tibbi
201de5bf82
adding a new string alternative for the free app version
2022-06-12 14:31:51 +02:00
tibbi
c842193c2d
Merge branch 'master' of github.com:SimpleMobileTools/Simple-Commons
2022-06-11 21:00:11 +02:00
tibbi
5fefce2fd4
make thumb at Seekbar nullable
2022-06-11 20:59:56 +02:00
Agnieszka C
1c3a6c4cef
Translated using Weblate (Polish)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/pl/
2022-06-10 10:29:11 +02:00
tibbi
305aafb477
adding Pro equivalents of some strings
2022-06-10 10:29:01 +02:00
tibbi
07c31cb0e2
deleting en-rUS
2022-06-09 23:05:54 +02:00
Tibor Kaputa
faa6a972c2
Merge pull request #1429 from KryptKode/fix/slow-sd-card-write
...
fix: writing to SD Card very slow
2022-06-06 16:18:58 +02:00
darthpaul
f66bb80f47
fix: writing to SD Card very slow
...
- in an attempt to fix the overwrite issue in [this PR](https://github.com/SimpleMobileTools/Simple-Commons/pull/1351 ),
the slow getDocumentFile was used.
- getDocumentFile iterates over the list of files in the parent folder and tries to locate the file if it exists
- for fresh copy/move, it would check the entire list of files and not find the path, this greatly slows down the speed.
- the fix for it is that we
- Check if the file path exists
- if it does, we construct the URI manually using the createDocumentUriFromRootTree method
- else, we call createFile and get the newly created URI
- calling createDocumentUriFromRootTree is very fast
- getDocumentFast does not work so it was not used
2022-06-06 15:14:25 +01:00
tibbi
3c2ffc8c42
use different dialog titles at Use this folder dialog
2022-06-06 15:52:02 +02:00
tibbi
43e34d1ed6
updating a slovak string
2022-06-05 10:55:26 +02:00
tibbi
9f6ceba60f
replacing indonesian translation "id" with "in"
2022-06-05 08:49:09 +02:00
AbsurdUsername
ab3e99cc1b
Translated using Weblate (Italian)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/it/
2022-06-04 20:09:58 +02:00
Artem
7d45d0a987
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/uk/
2022-06-02 14:17:54 +02:00
Artem
f09d9c8de1
Translated using Weblate (Ukrainian)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/uk/
2022-06-01 09:47:49 +02:00
solokot
c6fb9654a3
Translated using Weblate (Russian)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/ru/
2022-06-01 09:47:49 +02:00
darthpaul
139a7a91af
fix: error when copying from recycle bin on SDK 31+
...
- fix NoSuchElementException, thrown when copying files from the recycle bin on Android 12+ devices.
- only convert the paths to URIs needed for MediaStore.createWriteRequest if the path is not a recycle bin path
- add extension function FileDirItem.isRecycleBinPath for checking if a FileDirItem's path starts with the recycleBinPath to prevent duplication
2022-06-01 00:52:16 +01:00
tibbi
051b309919
improve the UX at deleting files from protected folders
2022-05-31 16:13:11 +02:00
tibbi
0761c710e4
fixing some spacing
2022-05-31 15:24:42 +02:00
Júlia da Rosa
47cc27d1ad
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/pt_BR/
2022-05-29 22:18:54 +02:00
J. Lavoie
47998b4338
Translated using Weblate (Italian)
...
Currently translated at 99.8% (757 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/it/
2022-05-29 22:18:54 +02:00
J. Lavoie
c77e853514
Translated using Weblate (French)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/fr/
2022-05-29 22:18:54 +02:00
J. Lavoie
0141dc0e6a
Translated using Weblate (German)
...
Currently translated at 100.0% (758 of 758 strings)
Translation: Simple Mobile Tools/Simple Commons
Translate-URL: https://hosted.weblate.org/projects/simple-mobile-tools/simple-commons/de/
2022-05-29 22:18:54 +02:00
Tibor Kaputa
f323dbc177
Update strings.xml
2022-05-29 22:18:38 +02:00
Tibor Kaputa
6bcba76110
Update strings.xml
2022-05-29 22:18:35 +02:00