elid
416cf9675a
chore(l10n): update Hebrew translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/he/
Via: Weblate
2025-06-06 18:43:17 +05:30
mastoduy
d3fe0f8bc4
chore(l10n): update Vietnamese translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/vi/
Via: Weblate
2025-06-06 18:43:17 +05:30
Vaclovas Intas
8151b2dd00
chore(l10n): update Lithuanian translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/lt/
Via: Weblate
2025-06-06 18:43:17 +05:30
elid
f9f37718de
chore(l10n): update Hebrew translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/he/
Via: Weblate
2025-06-06 18:43:17 +05:30
Bora Atıcı
ba605b59e3
chore(l10n): update Turkish translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/tr/
Via: Weblate
2025-06-06 18:43:17 +05:30
abdelbasset jabrane
bd7d2204ee
chore(l10n): update Arabic translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/ar/
Via: Weblate
2025-06-06 18:43:17 +05:30
Flavio F. M
9dad0da353
chore(l10n): update Portuguese (Brazil) translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/pt_BR/
Via: Weblate
2025-05-26 15:15:51 +05:30
109247019824
6f96f85d1a
chore(l10n): update Bulgarian translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/bg/
Via: Weblate
2025-05-26 15:15:51 +05:30
Yurt Page
f3c01f4846
chore(l10n): update Russian translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/ru/
Via: Weblate
2025-05-26 15:15:51 +05:30
elid
45f9b5c261
chore(l10n): update Hebrew translations
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/he/
Via: Weblate
2025-05-26 15:15:51 +05:30
Naveen Singh
ea082d2dd1
build: move app version to gradle.properties ( #193 )
2025-05-26 14:16:19 +05:30
Timur Erofeev
ef23996ced
fix: preserve timestamps when decompressing ZIP files
...
* Preserve modified date when unzip files.
* Preserve modified date when unzip files via actions menu
- Additionally handle the case with 0 last modified time.
2025-05-25 07:50:35 +05:30
dependabot[bot]
222995b4b6
chore(deps): bump org.jetbrains.kotlin.android from 1.9.25 to 2.1.21 ( #175 )
...
* chore(deps): bump org.jetbrains.kotlin.android from 1.9.25 to 2.1.21
Bumps [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin ) from 1.9.25 to 2.1.21.
- [Release notes](https://github.com/JetBrains/kotlin/releases )
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md )
- [Commits](https://github.com/JetBrains/kotlin/compare/v1.9.25...v2.1.21 )
---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin.android
dependency-version: 2.1.21
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
* build: update archives name property to use archivesBaseName
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Naveen Singh <snaveen935@gmail.com >
2025-05-22 09:21:20 +05:30
Naveen Singh
94924bd19c
chore(deps): bump org.fossify.commons to 2.0.1 ( #181 )
2025-05-21 14:02:25 +05:30
Tom Levy
19f0a2ad35
fix: resolve proper filename when saving a shared file ( #86 )
...
* Fix filename when saving a shared file
Previously, the code used the last path component of the content URI,
but that isn't necessarily the filename -- it can be a numeric ID.
Switch to the helper function getFilenameFromContentUri(), which uses
ContentResolver to read the DISPLAY_NAME column. (If that fails, we
fall back to the last component of the content URI as before, because
we don't have anything better to use.)
Also improve the way the MIME type is determined. Previously it was
just based on the file extension. Switch to first query the
ContentResolver, then try the type of the Intent (which is supposed to
be set to the MIME type of the data for ACTION_SEND, but may be set to
"*/*" if the type is unknown), and only then fall back to using the
file extension.
Fixes #37 .
* style: shorten lines
---------
Co-authored-by: Naveen Singh <36371707+naveensingh@users.noreply.github.com >
Co-authored-by: Naveen Singh <snaveen935@gmail.com >
2025-05-21 12:03:10 +05:30
Burgerpower01
97dcf30b47
fix: save state when rotating screen ( #111 )
...
* Fixed Text File Editor losing unsaved changes when rotating screen
* style: replace state variable with constant
---------
Co-authored-by: Naveen Singh <36371707+naveensingh@users.noreply.github.com >
Co-authored-by: Naveen Singh <snaveen935@gmail.com >
2025-05-21 11:45:09 +05:30
Agnieszka C
5dae7f82f5
fix: allow editing JSON files ( #105 )
...
Co-authored-by: Naveen Singh <36371707+naveensingh@users.noreply.github.com >
2025-05-21 10:50:54 +05:30
Timur Erofeev
68c00dc3c0
fix(ui): prevent SwipeRefreshLayout from intercepting child touch events ( #173 )
...
* Fix accidental rendering of swipe refresh indicator.
* Fix scroll up in Files tab.
* Update app/src/main/kotlin/org/fossify/filemanager/views/MySwipeRefreshLayout.kt
Fix grammar after copy paste.
Co-authored-by: Naveen Singh <36371707+naveensingh@users.noreply.github.com >
* docs(changelog): add links
---------
Co-authored-by: Naveen Singh <36371707+naveensingh@users.noreply.github.com >
Co-authored-by: Naveen Singh <snaveen935@gmail.com >
2025-05-20 19:02:15 +05:30
Naveen Singh
2fe8b22fd4
fix: enable pull-to-refresh based on preference ( #177 )
...
See: https://github.com/FossifyOrg/File-Manager/issues/136
2025-05-20 09:27:29 +05:30
Agnieszka C
8df0412e11
fix: use zip file name when decompressing directory ( #120 )
2025-05-14 23:22:18 +05:30
Agnieszka C
25cfd43655
fix: restore temporarilyShowHidden flag on startup ( #169 )
2025-05-14 23:12:48 +05:30
Naveen Singh
73e9080b67
feat(ui): replace checkboxes with material switches ( #170 )
...
* feat(ui): replace checkboxes with material switches
See: https://github.com/orgs/FossifyOrg/discussions/78
* docs(changelog): replace checkboxes with switches
2025-05-14 16:55:46 +05:30
abdelbasset jabrane
6e97c28536
Translated using Weblate (Arabic)
...
Currently translated at 79.5% (35 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/ar/
2025-05-07 08:42:15 +05:30
LucasMZ
699e3ec836
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/pt_BR/
2025-05-07 08:42:15 +05:30
solokot
31e7920991
Translated using Weblate (Russian)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/ru/
2025-05-07 08:42:15 +05:30
Romeostar
991a99a46e
Translated using Weblate (Russian)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/ru/
2025-05-07 08:42:15 +05:30
cat
6a786d5f25
Translated using Weblate (Danish)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/da/
2025-05-07 08:42:15 +05:30
Naveen Singh
5bbe0b59e0
build: allow builds without signing configuration
2025-05-05 19:45:16 +05:30
Naveen Singh
742d63af2b
build: use env variables for release signing fallback
2025-05-05 19:45:16 +05:30
Naveen Singh
df9249f989
refactor(build): rename prepaid product flavor to gplay
2025-05-05 19:45:16 +05:30
Naveen Singh
127a820c25
Merge branch 'master' into open_data_obb_system_app
2025-04-06 17:38:24 +05:30
Julien Papasian
be63e6f9a8
Open data/obb folder in system app on Android 14+
2025-04-06 13:47:36 +02:00
Naveen Singh
8daff3f0db
Escape apostrophe properly (again)
2025-03-30 17:25:12 +05:30
Naveen Singh
3aef65fa37
Escape apostrophe properly
2025-03-30 17:04:17 +05:30
Gwenn M
d856a9cebd
Translated using Weblate (Breton)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/br/
2025-03-24 17:07:28 +01:00
elid
2fce420cd1
Translated using Weblate (Hebrew)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/he/
2025-03-16 10:47:10 +01:00
Guillaume
447769190b
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/nl/
2025-03-13 23:38:16 +01:00
Naveen Singh
e89e5b3a17
Merge pull request #109 from Stephan-P/patch-1
...
Update strings.xml
2025-03-12 19:29:50 +05:30
LaKato
ba339261f7
Translated using Weblate (Esperanto)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/eo/
2025-03-12 11:57:34 +01:00
LaKato
11c7a6dd5a
Translated using Weblate (Esperanto)
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/eo/
2025-03-12 11:57:33 +01:00
AP
1d9404f7fa
Translated using Weblate (Breton)
...
Currently translated at 56.8% (25 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/br/
2025-03-12 11:57:32 +01:00
Sketch6580
a91f7a2df8
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/zh_Hans/
2025-03-12 11:57:31 +01:00
Alioc
0332a63ee4
Translated using Weblate (Chinese (Simplified Han script))
...
Currently translated at 100.0% (44 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/zh_Hans/
2025-03-12 11:57:30 +01:00
LaKato
e4ee20c5fb
Translated using Weblate (Esperanto)
...
Currently translated at 52.2% (23 of 44 strings)
Translation: Fossify/File-Manager
Translate-URL: https://hosted.weblate.org/projects/fossify/file-manager/eo/
2025-03-12 11:57:27 +01:00
Naveen Singh
0e7f0b40a1
Remove unused pdf viewer menu
2025-03-12 14:58:23 +05:30
Naveen Singh
8b6fc1cc46
Move actions back into the option menu
2025-03-12 14:58:23 +05:30
Naveen Singh
1cbeab42ea
Disable language splits
...
See https://github.com/FossifyOrg/General-Discussion/issues/242
2025-03-12 14:58:23 +05:30
Naveen Singh
69f29435c3
Update prepaid flavor config
2025-03-12 14:58:22 +05:30
Naveen Singh
b5e8d10af2
Remove support for Android and older versions
...
See https://github.com/orgs/FossifyOrg/discussions/241
2025-03-12 14:16:10 +05:30
Naveen Singh
395b183b77
Setup full screen app lock
2025-03-12 14:09:11 +05:30