Commit graph

3439 commits

Author SHA1 Message Date
80fe124d12 fork: add README-translation.md explaining the fork
A short readme so anyone stumbling on this repo understands:
- what it is (Fossify Messages with on-the-fly translation via
  offline-translator AIDL)
- that it's an experiment, not a maintained project — no commitment
  to keep it up to date or ship fixes
- how to use it (install offline-translator first, opt in per source
  language)
- the dependency story (dev.davidv.translator, bundled ML Kit
  language identification, transitional)
- what's intentionally different from upstream Fossify (package id,
  no default-SMS prompt, sideload warning silenced)
- build instructions

Includes five screenshots in docs/:
- conversation-list.jpg — translated snippets in the main list
- thread-translated.jpg — Korean Amber Alert auto-translated to
  English, with the translate-icon toggle visible and numbers/URLs
  preserved verbatim
- thread-original.jpg — same thread flipped back to the original
- settings.jpg — Translation settings UI
- cab-translate.jpg — long-press Translate item

Fork-only — separate from the upstream-PR-candidate commits.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 05:22:10 +00:00
06ac901366 fork: silence sideload dialog and don't force default-SMS-app role
Two personal-fork-only tweaks for daily use:

- checkAppSideloading() commented out. It surfaces a "this app is
  corrupted, get the original" dialog when applicationId differs from
  the official Fossify one — which is precisely the case for a fork.

- loadMessages() no longer triggers the RoleManager / ACTION_CHANGE_DEFAULT
  prompt on first launch. Read-only SMS permissions are enough to browse
  and translate. The user can opt in to be the default through the
  system settings later if they want.

Not for upstream.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 04:45:00 +00:00
8234578b8b fork: customize APP_ID to net.jeena.smstranslate
Personal fork config — keeps this build distinct from any official
Fossify Messages install on the same device. Not for upstream.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 04:45:00 +00:00
99649c54d7 feat: on-the-fly SMS translation via offline-translator AIDL
Adds a small `:translate` Gradle module that translates received SMS /
MMS bubbles and conversation-list snippets on the fly by binding to the
offline-translator app on F-Droid (`dev.davidv.translator`). The actual
translation runs there — Mozilla Bergamot/Marian on-device — so this
patch ships no model, no inference, and no permissions beyond an
Android 11+ <queries> block for package visibility.

Behavior:
- User-defined source-language allowlist + target language in
  Settings → Translation (right after Language). Off by default.
- Auto-translate fires on RecyclerView bind for received bubbles and
  conversation snippets. Detection uses ML Kit Language Identification
  (CLD3, on-device). Once dev.davidv.translator exposes a
  detectLanguage() AIDL method we'll route through that and drop ML Kit.
- AIDL latency is sub-second, so the bubble just quietly swaps from
  the original to the translation — no loading spinner.
- Tap the translate icon next to a bubble to flip it back to the
  original; tap again to flip to the translation. Cached in process
  memory.
- Long-press → ⋮ → Translate forces a one-off translation regardless
  of the allowlist (useful for messages in non-allowlisted languages),
  with a toast surfacing AIDL errors like 'language pack not installed'.
- Copy / Share / Select on a translated bubble captures what the user
  sees, not the underlying source body.
- Silently no-ops when offline-translator isn't installed; settings
  screen shows an F-Droid install banner.
- Translation Settings is a regular Fossify sub-screen with
  MyAppBarLayout + MaterialToolbar + NestedScrollView, matching
  Manage Blocked Numbers / Keywords / SettingsActivity.

No new database, no service, no boot receiver, no foreground service.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 04:44:51 +00:00
ffabeb2730 chore: ignore translate/build/ output
The :translate module build directory was inadvertently tracked. Mirrors
app/.gitignore.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 04:31:08 +00:00
aa41d560dd build: decouple app namespace from applicationId
Hardcoding `namespace = "org.fossify.messages"` in app/build.gradle.kts
lets a fork override `applicationId` (via gradle.properties APP_ID)
without rebasing the R class location and breaking thousands of
`org.fossify.messages.R` imports across the codebase.

No effect on the upstream build — applicationId still defaults to
APP_ID, only namespace stops following it.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-19 04:31:08 +00:00
dependabot[bot]
fd1eed975b
chore(deps): bump org.jetbrains.kotlin.plugin.serialization (#762)
Bumps [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin) from 2.3.20 to 2.3.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/v2.3.20...v2.3.21)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin.plugin.serialization
  dependency-version: 2.3.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-28 15:42:57 +05:30
dependabot[bot]
9cc255fcd2
chore(deps): bump com.google.devtools.ksp from 2.3.6 to 2.3.7 (#763)
Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 2.3.6 to 2.3.7.
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](https://github.com/google/ksp/compare/2.3.6...2.3.7)

---
updated-dependencies:
- dependency-name: com.google.devtools.ksp
  dependency-version: 2.3.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-28 15:40:37 +05:30
dependabot[bot]
0b2c2c7cfd
chore(deps): bump com.android.application from 9.1.1 to 9.2.0 (#764)
Bumps com.android.application from 9.1.1 to 9.2.0.

---
updated-dependencies:
- dependency-name: com.android.application
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-28 15:39:09 +05:30
dependabot[bot]
ccfacddb38
chore(deps): bump org.jetbrains.kotlinx:kotlinx-serialization-json (#753)
Bumps [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.10.0 to 1.11.0.
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.10.0...v1.11.0)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-23 05:26:09 +05:30
dependabot[bot]
2a15a88140
chore(deps): bump com.android.application from 9.1.0 to 9.1.1 (#752)
Bumps com.android.application from 9.1.0 to 9.1.1.

---
updated-dependencies:
- dependency-name: com.android.application
  dependency-version: 9.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-23 05:26:01 +05:30
dependabot[bot]
5a70e08904
chore(deps): bump fastlane from 2.232.2 to 2.233.0 (#758)
Bumps [fastlane](https://github.com/fastlane/fastlane) from 2.232.2 to 2.233.0.
- [Release notes](https://github.com/fastlane/fastlane/releases)
- [Changelog](https://github.com/fastlane/fastlane/blob/master/CHANGELOG.latest.md)
- [Commits](https://github.com/fastlane/fastlane/compare/fastlane/2.232.2...fastlane/2.233.0)

---
updated-dependencies:
- dependency-name: fastlane
  dependency-version: 2.233.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-23 04:26:09 +05:30
dependabot[bot]
57a50e89ee
chore(deps): bump addressable from 2.8.9 to 2.9.0 (#747)
Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.8.9 to 2.9.0.
- [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sporkmonger/addressable/compare/addressable-2.8.9...addressable-2.9.0)

---
updated-dependencies:
- dependency-name: addressable
  dependency-version: 2.9.0
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-08 16:39:13 +05:30
fossifybot[bot]
f8048ada35
chore: update lint baselines (#742)
Co-authored-by: fossifybot[bot] <212866877+fossifybot[bot]@users.noreply.github.com>
2026-04-05 10:28:03 +05:30
fossifybot[bot]
c782ba7b5b
chore: update lint baselines (#727)
Co-authored-by: fossifybot[bot] <212866877+fossifybot[bot]@users.noreply.github.com>
2026-03-30 00:48:05 +05:30
dependabot[bot]
baa1c64b3a
chore(deps): bump json from 2.18.1 to 2.19.2 (#736)
Bumps [json](https://github.com/ruby/json) from 2.18.1 to 2.19.2.
- [Release notes](https://github.com/ruby/json/releases)
- [Changelog](https://github.com/ruby/json/blob/master/CHANGES.md)
- [Commits](https://github.com/ruby/json/compare/v2.18.1...v2.19.2)

---
updated-dependencies:
- dependency-name: json
  dependency-version: 2.19.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-29 19:06:32 +05:30
dependabot[bot]
90f42cebaa
chore(deps): bump org.jetbrains.kotlin.plugin.serialization (#734)
Bumps [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin) from 2.3.10 to 2.3.20.
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v2.3.20/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v2.3.10...v2.3.20)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin.plugin.serialization
  dependency-version: 2.3.20
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-29 19:05:28 +05:30
dependabot[bot]
1c7706aab7
chore(deps): bump gradle-wrapper from 9.4.0 to 9.4.1 (#739)
Bumps [gradle-wrapper](https://github.com/gradle/gradle) from 9.4.0 to 9.4.1.
- [Release notes](https://github.com/gradle/gradle/releases)
- [Commits](https://github.com/gradle/gradle/compare/v9.4.0...v9.4.1)

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.4.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-29 19:03:07 +05:30
fossifybot[bot]
435e2718fa
chore(deps): bump org.fossify.commons from 6.1.5 to 6.1.6 (#720)
Co-authored-by: fossifybot[bot] <212866877+fossifybot[bot]@users.noreply.github.com>
2026-03-15 20:47:29 +05:30
dependabot[bot]
d517048eb3
chore(deps): bump gradle-wrapper from 9.3.1 to 9.4.0 (#732)
Bumps gradle-wrapper from 9.3.1 to 9.4.0.

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-15 01:12:59 +05:30
dependabot[bot]
336f58b5d7
chore(deps): bump com.android.application from 9.0.1 to 9.1.0 (#731)
Bumps com.android.application from 9.0.1 to 9.1.0.

---
updated-dependencies:
- dependency-name: com.android.application
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-14 23:52:00 +05:30
dependabot[bot]
f0b9ac8b1c
chore(deps): bump com.google.devtools.ksp from 2.3.5 to 2.3.6 (#722)
Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 2.3.5 to 2.3.6.
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](https://github.com/google/ksp/compare/2.3.5...2.3.6)

---
updated-dependencies:
- dependency-name: com.google.devtools.ksp
  dependency-version: 2.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-14 22:33:35 +05:30
dependabot[bot]
3a96c680e9
chore(deps): bump fastlane from 2.232.1 to 2.232.2 (#728)
Bumps [fastlane](https://github.com/fastlane/fastlane) from 2.232.1 to 2.232.2.
- [Release notes](https://github.com/fastlane/fastlane/releases)
- [Changelog](https://github.com/fastlane/fastlane/blob/master/CHANGELOG.latest.md)
- [Commits](https://github.com/fastlane/fastlane/compare/fastlane/2.232.1...fastlane/2.232.2)

---
updated-dependencies:
- dependency-name: fastlane
  dependency-version: 2.232.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-14 20:48:40 +05:30
Andi Chandler
20d1efcbec chore(l10n): update English (United Kingdom) translations
Currently translated at 4.4% (5 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/en_GB/
Via: Weblate
2026-03-01 07:02:51 +05:30
Amadɣas
f847e5da1c chore(l10n): update Kabyle translations
Currently translated at 94.6% (107 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/kab/
Via: Weblate
2026-03-01 07:02:51 +05:30
Vasilis K.
4af0715062 chore(l10n): update Greek translations
Currently translated at 100.0% (113 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/el/
Via: Weblate
2026-02-26 07:04:10 +05:30
jonnysemon
25de533379 chore(l10n): update Arabic translations
Currently translated at 95.5% (108 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/ar/
Via: Weblate
2026-02-26 07:04:10 +05:30
IT스토리
f1fb2a3218 chore(l10n): update Korean translations
Currently translated at 100.0% (2 of 2 strings)

Translation: Fossify/Messages metadata
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger-metadata/ko/
Via: Weblate
2026-02-26 07:04:10 +05:30
Amadɣas
318d45f8a9 chore(l10n): update Kabyle translations
Currently translated at 92.9% (105 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/kab/
Via: Weblate
2026-02-20 07:04:31 +05:30
dependabot[bot]
163895d515
chore(deps): bump com.googlecode.ez-vcard:ez-vcard from 0.12.1 to 0.12.2 (#717)
Bumps [com.googlecode.ez-vcard:ez-vcard](https://github.com/mangstadt/ez-vcard) from 0.12.1 to 0.12.2.
- [Commits](https://github.com/mangstadt/ez-vcard/compare/0.12.1...0.12.2)

---
updated-dependencies:
- dependency-name: com.googlecode.ez-vcard:ez-vcard
  dependency-version: 0.12.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 03:22:24 +05:30
dependabot[bot]
4960b95e8e
chore(deps): bump com.android.application from 9.0.0 to 9.0.1 (#716)
Bumps com.android.application from 9.0.0 to 9.0.1.

---
updated-dependencies:
- dependency-name: com.android.application
  dependency-version: 9.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-18 02:34:25 +05:30
dependabot[bot]
648fd983b7
chore(deps): bump fastlane from 2.232.0 to 2.232.1 (#715)
Bumps [fastlane](https://github.com/fastlane/fastlane) from 2.232.0 to 2.232.1.
- [Release notes](https://github.com/fastlane/fastlane/releases)
- [Changelog](https://github.com/fastlane/fastlane/blob/master/CHANGELOG.latest.md)
- [Commits](https://github.com/fastlane/fastlane/compare/fastlane/2.232.0...fastlane/2.232.1)

---
updated-dependencies:
- dependency-name: fastlane
  dependency-version: 2.232.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-17 11:03:45 +05:30
Arif Budiman
bcfb089d99 chore(l10n): update Indonesian translations
Currently translated at 100.0% (113 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/id/
Via: Weblate
2026-02-17 07:04:30 +05:30
Hồ Nhất Duy
3fc81d6ecb chore(l10n): update Vietnamese translations
Currently translated at 100.0% (113 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/vi/
Via: Weblate
2026-02-17 07:04:30 +05:30
fossifybot[bot]
230e0da6b8
chore(deps): bump org.fossify.commons from 6.1.3 to 6.1.5 (#711)
Co-authored-by: fossifybot[bot] <212866877+fossifybot[bot]@users.noreply.github.com>
2026-02-17 01:14:37 +05:30
BlackSpectrum
8c99b9a78a chore(l10n): update Gujarati translations
Currently translated at 76.1% (86 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/gu/
Via: Weblate
2026-02-13 15:11:44 +05:30
dependabot[bot]
38e3ce8a42
chore(deps): bump faraday from 1.10.4 to 1.10.5 (#710)
Bumps [faraday](https://github.com/lostisland/faraday) from 1.10.4 to 1.10.5.
- [Release notes](https://github.com/lostisland/faraday/releases)
- [Changelog](https://github.com/lostisland/faraday/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lostisland/faraday/compare/v1.10.4...v1.10.5)

---
updated-dependencies:
- dependency-name: faraday
  dependency-version: 1.10.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 15:04:20 +05:30
dependabot[bot]
cd877a43c8
chore(deps): bump fastlane from 2.231.1 to 2.232.0 (#704)
Bumps [fastlane](https://github.com/fastlane/fastlane) from 2.231.1 to 2.232.0.
- [Release notes](https://github.com/fastlane/fastlane/releases)
- [Changelog](https://github.com/fastlane/fastlane/blob/master/CHANGELOG.latest.md)
- [Commits](https://github.com/fastlane/fastlane/compare/fastlane/2.231.1...fastlane/2.232.0)

---
updated-dependencies:
- dependency-name: fastlane
  dependency-version: 2.232.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-13 08:58:48 +05:30
fossifybot[bot]
c7270849ed
chore(deps): bump org.fossify.commons from 6.1.0 to 6.1.3 (#690)
Co-authored-by: fossifybot[bot] <212866877+fossifybot[bot]@users.noreply.github.com>
2026-02-08 17:46:35 +05:30
VfBFan
ec004dc68e chore(l10n): update German translations
Currently translated at 100.0% (113 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/de/
Via: Weblate
2026-02-08 07:02:38 +05:30
Milo Ivir
46053183e3 chore(l10n): update Croatian translations
Currently translated at 100.0% (2 of 2 strings)

Translation: Fossify/Messages metadata
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger-metadata/hr/
Via: Weblate
2026-02-08 07:02:38 +05:30
dependabot[bot]
c26698418f
chore(deps): bump com.android.application from 8.11.1 to 9.0.0 (#700)
* chore(deps): bump com.android.application from 8.11.1 to 9.0.0

Bumps com.android.application from 8.11.1 to 9.0.0.

---
updated-dependencies:
- dependency-name: com.android.application
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* build: remove 'org.jetbrains.kotlin.android'

* build: use directories set instead of srcDirs

---------

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>
2026-02-08 00:59:29 +05:30
dependabot[bot]
6749332969
chore(deps): bump gradle-wrapper from 8.13 to 9.3.1 (#687)
* chore(deps): bump gradle-wrapper from 8.13 to 9.3.1

Bumps gradle-wrapper from 8.13 to 9.3.1.

---
updated-dependencies:
- dependency-name: gradle-wrapper
  dependency-version: 9.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* build: update archive name definition

---------

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>
2026-02-07 19:14:54 +05:30
dependabot[bot]
8d422cce64
chore(deps): bump kotlin from 2.3.0 to 2.3.10 (#701)
Bumps `kotlin` from 2.3.0 to 2.3.10.

Updates `org.jetbrains.kotlin.android` from 2.3.0 to 2.3.10
- [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/v2.3.0...v2.3.10)

Updates `org.jetbrains.kotlin.plugin.serialization` from 2.3.0 to 2.3.10
- [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/v2.3.0...v2.3.10)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin.android
  dependency-version: 2.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin.plugin.serialization
  dependency-version: 2.3.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-07 17:04:38 +05:30
Hồ Nhất Duy
1eac6769b1 chore(l10n): update Vietnamese translations
Currently translated at 100.0% (113 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/vi/
Via: Weblate
2026-02-05 07:04:28 +05:30
Hồ Nhất Duy
8b758c46c8 chore(l10n): update Vietnamese translations
Currently translated at 100.0% (113 of 113 strings)

Translation: Fossify/Messages
Translate-URL: https://hosted.weblate.org/projects/fossify/sms-messenger/vi/
Via: Weblate
2026-02-05 07:04:28 +05:30
Naveen Singh
8ea7efba51
ci(dependabot): ignore org.fossify:commons dependency (#695) 2026-02-03 18:09:08 +05:30
dependabot[bot]
c32cff767e
chore(deps): bump com.google.devtools.ksp from 2.3.4 to 2.3.5 (#686)
Bumps [com.google.devtools.ksp](https://github.com/google/ksp) from 2.3.4 to 2.3.5.
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](https://github.com/google/ksp/compare/2.3.4...2.3.5)

---
updated-dependencies:
- dependency-name: com.google.devtools.ksp
  dependency-version: 2.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-02 12:09:34 +05:30
fossifybot[bot]
8501a98ecf
chore: update lint baselines (#689)
Co-authored-by: fossifybot[bot] <212866877+fossifybot[bot]@users.noreply.github.com>
2026-02-01 12:34:27 +05:30
Naveen Singh
82716702c4
ci: remove path filters for PR checks (#688) 2026-02-01 01:57:15 +05:30