diff --git a/.github/workflows/image-minimizer.js b/.github/workflows/image-minimizer.js index 6ec67b57..f81a49e1 100644 --- a/.github/workflows/image-minimizer.js +++ b/.github/workflows/image-minimizer.js @@ -34,7 +34,7 @@ module.exports = async ({github, context}) => { // Regex for finding images (simple variant) ![ALT_TEXT](https://*.githubusercontent.com//.) const REGEX_USER_CONTENT_IMAGE_LOOKUP = /\!\[(.*)\]\((https:\/\/[-a-z0-9]+\.githubusercontent\.com\/\d+\/[-0-9a-f]{32,512}\.(jpg|gif|png))\)/gm; - const REGEX_ASSETS_IMAGE_LOCKUP = /\!\[(.*)\]\((https:\/\/github\.com\/[-\w\d]+\/[-\w\d]+\/assets\/\d+\/[\-0-9a-f]{32,512})\)/gm; + const REGEX_ASSETS_IMAGE_LOCKUP = /\!\[(.*)\]\((https:\/\/github\.com\/user-attachments\/assets\/[\-0-9a-f]{36,})\)/gm; // Check if we found something let foundSimpleImages = REGEX_USER_CONTENT_IMAGE_LOOKUP.test(initialBody) diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml index eef815bd..65ae5a77 100644 --- a/.github/workflows/no-response.yml +++ b/.github/workflows/no-response.yml @@ -21,5 +21,5 @@ jobs: with: token: ${{ github.token }} # Number of days of inactivity before an issue is closed for lack of response. - daysUntilClose: 30 + daysUntilClose: 14 responseRequiredLabel: waiting for author diff --git a/CHANGELOG.md b/CHANGELOG.md index d695fe05..80de09c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,24 +1,33 @@ Changelog ========== +Version 1.3.0 *(2024-10-30)* +---------------------------- + +* Fixed issue with contacts not displaying on Android 14 and above +* Replaced checkboxes with switches +* Removed support for Android 7 and older versions +* Other minor bug fixes and improvements +* Added more translations + Version 1.2.0 *(2024-05-08)* ---------------------------- -- Fixed an issue where call history wasn't refreshing (https://github.com/FossifyOrg/Phone/issues/146). -- Fixed a problem where search items would disappear (https://github.com/FossifyOrg/Phone/issues/98). -- Fixed UI freeze that happened when loading call history. -- Fixed a bug that caused search not to find older call logs (https://github.com/FossifyOrg/Phone/issues/97). -- Fixed a crash that occurred when using the dialpad quick callback feature. -- Missed call notifications are now automatically dismissed when you view your call history (https://github.com/FossifyOrg/Phone/issues/88). -- Moved some actions back into the popup menu to reduce visual clutter (https://github.com/FossifyOrg/General-Discussion/issues/67). -- Updated menu design for better UI/UX. -- Disabled call action buttons after a call ends for better UI/UX (https://github.com/FossifyOrg/Phone/issues/181). -- Grouped call history entries by date (https://github.com/FossifyOrg/Phone/issues/96). -- Added an option to format phone numbers in the call log (https://github.com/FossifyOrg/Contacts/issues/15). -- Always show the date in the call details dialog (https://github.com/FossifyOrg/Phone/issues/133). -- Updated call direction icons and colors in the call history for better clarity (https://github.com/FossifyOrg/Phone/issues/81). -- Restructured the in-call UI to be more responsive to different screen sizes (https://github.com/FossifyOrg/Phone/issues/147). -- Added some translations. +* Fixed an issue where call history wasn't refreshing (https://github.com/FossifyOrg/Phone/issues/146). +* Fixed a problem where search items would disappear (https://github.com/FossifyOrg/Phone/issues/98). +* Fixed UI freeze that happened when loading call history. +* Fixed a bug that caused search not to find older call logs (https://github.com/FossifyOrg/Phone/issues/97). +* Fixed a crash that occurred when using the dialpad quick callback feature. +* Missed call notifications are now automatically dismissed when you view your call history (https://github.com/FossifyOrg/Phone/issues/88). +* Moved some actions back into the popup menu to reduce visual clutter (https://github.com/FossifyOrg/General-Discussion/issues/67). +* Updated menu design for better UI/UX. +* Disabled call action buttons after a call ends for better UI/UX (https://github.com/FossifyOrg/Phone/issues/181). +* Grouped call history entries by date (https://github.com/FossifyOrg/Phone/issues/96). +* Added an option to format phone numbers in the call log (https://github.com/FossifyOrg/Contacts/issues/15). +* Always show the date in the call details dialog (https://github.com/FossifyOrg/Phone/issues/133). +* Updated call direction icons and colors in the call history for better clarity (https://github.com/FossifyOrg/Phone/issues/81). +* Restructured the in-call UI to be more responsive to different screen sizes (https://github.com/FossifyOrg/Phone/issues/147). +* Added some translations. Version 1.1.1 *(2024-03-21)* ---------------------------- diff --git a/README.md b/README.md index 08313851..c9ac4bc1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Get it on Google Play Get it on F-Droid Get it on IzzyOnDroid -Empower your calls, safeguard your data. Fossify Phone redefines the mobile app experience with unmatched privacy and efficiency. Free from ads and intrusive permissions, it's designed for seamless and secure everyday communication. +Empower your calls, and safeguard your data. Fossify Phone redefines the mobile app experience with unmatched privacy and efficiency. Free from ads and intrusive permissions, it's designed for seamless and secure everyday communication. 📱 **YOUR PRIVACY, OUR PRIORITY:** Welcome to the Fossify Phone App, where your digital privacy is paramount. Switch to a mobile experience that respects your data, ensuring your personal information remains secure and private. diff --git a/app/build.gradle.kts b/app/build.gradle.kts index eb14c41b..b3d04eb3 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -49,6 +49,7 @@ android { } release { isMinifyEnabled = true + isShrinkResources = true proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" @@ -92,6 +93,13 @@ android { warningsAsErrors = true baseline = file("lint-baseline.xml") } + + bundle { + language { + @Suppress("UnstableApiUsage") + enableSplit = false + } + } } detekt { diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index bd659e71..08c7ccdc 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -33,10 +33,15 @@ + + + + + - @@ -169,15 +169,30 @@ + + + + + + - @@ -235,13 +250,13 @@ - @@ -291,13 +306,13 @@ - @@ -317,13 +332,13 @@ - @@ -332,13 +347,13 @@ - @@ -347,13 +362,13 @@ - @@ -362,13 +377,13 @@ - @@ -403,13 +418,13 @@ - @@ -418,13 +433,13 @@ - @@ -433,13 +448,13 @@ - diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp deleted file mode 100644 index dd716a4a..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_amber.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_amber.webp deleted file mode 100644 index ae77700a..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_amber.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_blue.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_blue.webp deleted file mode 100644 index 6bb05f91..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.webp deleted file mode 100644 index 74b02c1f..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_brown.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_brown.webp deleted file mode 100644 index 4febaf10..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_brown.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_cyan.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_cyan.webp deleted file mode 100644 index 514f9a0a..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_cyan.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.webp deleted file mode 100644 index 54c06e77..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.webp deleted file mode 100644 index 0ea7c58c..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.webp deleted file mode 100644 index 1c872114..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_indigo.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_indigo.webp deleted file mode 100644 index 7aef3da9..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_indigo.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.webp deleted file mode 100644 index 33cf2596..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_light_green.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_light_green.webp deleted file mode 100644 index 432a36fa..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_light_green.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_lime.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_lime.webp deleted file mode 100644 index e9475f78..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_lime.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_orange.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_orange.webp deleted file mode 100644 index 9354fe9d..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_pink.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_pink.webp deleted file mode 100644 index 2b87f882..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_pink.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_purple.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_purple.webp deleted file mode 100644 index c658e617..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_red.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_red.webp deleted file mode 100644 index 4b029195..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_red.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_teal.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_teal.webp deleted file mode 100644 index 80261c8c..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_teal.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_yellow.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_yellow.webp deleted file mode 100644 index 47e33f57..00000000 Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_yellow.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp deleted file mode 100644 index 251bd87a..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_amber.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_amber.webp deleted file mode 100644 index dd3525ba..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_amber.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_blue.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_blue.webp deleted file mode 100644 index 8f1e7485..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_blue_grey.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_blue_grey.webp deleted file mode 100644 index 3f7ac821..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_blue_grey.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_brown.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_brown.webp deleted file mode 100644 index 180deb77..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_brown.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_cyan.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_cyan.webp deleted file mode 100644 index 0562e5e2..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_cyan.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_deep_orange.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_deep_orange.webp deleted file mode 100644 index a4eb01ca..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_deep_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_deep_purple.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_deep_purple.webp deleted file mode 100644 index 3288915a..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_deep_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_grey_black.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_grey_black.webp deleted file mode 100644 index 9e822983..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_grey_black.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_indigo.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_indigo.webp deleted file mode 100644 index c0f71133..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_indigo.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_light_blue.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_light_blue.webp deleted file mode 100644 index ef994876..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_light_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_light_green.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_light_green.webp deleted file mode 100644 index 0489ba19..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_light_green.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_lime.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_lime.webp deleted file mode 100644 index 08cb2da1..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_lime.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_orange.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_orange.webp deleted file mode 100644 index b2648a76..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_pink.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_pink.webp deleted file mode 100644 index 70872e1d..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_pink.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_purple.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_purple.webp deleted file mode 100644 index e62d2533..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_red.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_red.webp deleted file mode 100644 index bce3ac7c..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_red.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_teal.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_teal.webp deleted file mode 100644 index 13a90501..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_teal.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_yellow.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_yellow.webp deleted file mode 100644 index c26ed923..00000000 Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_yellow.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp deleted file mode 100644 index ad8c9384..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_amber.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_amber.webp deleted file mode 100644 index 017c649f..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_amber.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_blue.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_blue.webp deleted file mode 100644 index e467a244..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.webp deleted file mode 100644 index c8603978..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_brown.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_brown.webp deleted file mode 100644 index 31591528..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_brown.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.webp deleted file mode 100644 index 8070dba2..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.webp deleted file mode 100644 index 24caedf7..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.webp deleted file mode 100644 index 6b20cbd7..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.webp deleted file mode 100644 index 5959eaa3..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.webp deleted file mode 100644 index aa3004d4..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.webp deleted file mode 100644 index 88d5d9df..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.webp deleted file mode 100644 index aa41e401..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_lime.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_lime.webp deleted file mode 100644 index 06aaa3a5..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_lime.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_orange.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_orange.webp deleted file mode 100644 index 863a77f4..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_pink.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_pink.webp deleted file mode 100644 index 107466dd..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_pink.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_purple.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_purple.webp deleted file mode 100644 index fe47232e..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_red.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_red.webp deleted file mode 100644 index adc39318..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_red.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_teal.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_teal.webp deleted file mode 100644 index c8d58598..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_teal.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.webp deleted file mode 100644 index 368c611c..00000000 Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp deleted file mode 100644 index b8d3a1f9..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.webp deleted file mode 100644 index 3e5523cb..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.webp deleted file mode 100644 index ec888490..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.webp deleted file mode 100644 index 5ba91c8c..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.webp deleted file mode 100644 index e049a3a8..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.webp deleted file mode 100644 index b8a2435e..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.webp deleted file mode 100644 index 014f098b..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.webp deleted file mode 100644 index 2a7abb85..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.webp deleted file mode 100644 index a25eb320..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.webp deleted file mode 100644 index 79ce04c1..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.webp deleted file mode 100644 index 8a8db1a5..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.webp deleted file mode 100644 index c7248ca2..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.webp deleted file mode 100644 index 53b146fb..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange.webp deleted file mode 100644 index 8f1de819..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.webp deleted file mode 100644 index b92a2b80..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.webp deleted file mode 100644 index e322eae8..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_red.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_red.webp deleted file mode 100644 index 8c29fb5a..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_red.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.webp deleted file mode 100644 index d9cf5407..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.webp deleted file mode 100644 index aebe3d2a..00000000 Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp deleted file mode 100644 index 2fe157a5..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.webp deleted file mode 100644 index 789fd7e1..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.webp deleted file mode 100644 index 60655159..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.webp deleted file mode 100644 index d5fc9fca..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.webp deleted file mode 100644 index 5ad84b14..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.webp deleted file mode 100644 index 8714d78b..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.webp deleted file mode 100644 index ca8a803f..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.webp deleted file mode 100644 index e48a47da..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.webp deleted file mode 100644 index 4b72eaaf..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.webp deleted file mode 100644 index cd713bc9..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.webp deleted file mode 100644 index 2d48ddc7..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.webp deleted file mode 100644 index e1347043..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.webp deleted file mode 100644 index 92526f44..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange.webp deleted file mode 100644 index ca50f175..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_orange.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.webp deleted file mode 100644 index 1064aa5d..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.webp deleted file mode 100644 index 237bcc39..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.webp deleted file mode 100644 index 1be57d0c..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.webp deleted file mode 100644 index 6c1797f9..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.webp and /dev/null differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.webp deleted file mode 100644 index b8fa81a2..00000000 Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.webp and /dev/null differ diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 79dc0493..b97ae13f 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -1,73 +1,88 @@ - Opkald - Vælg venligst denne app som standard til opkald - Tillad venligst visning over andre apps for pålidelig adfærd - Kunne ikke få adgang til dine kontakter - Der blev ikke fundet nogle tidligere opkald - Kunne ikke få adgang til opkaldshistorikken - Anmod om adgang - Er du sikker på du vil fjerne de valgte emner fra opkaldshistorikken\? - Er du sikker på at du vil fjerne alt i opkaldshistorikken\? - Vis gruppérede opkald - Ryd opkaldshistorik - Vis opkaldsdetaljer - Numerisk tastatur - Stjerne - Hashtag - Opkaldsnummer - Aktiver bip ved klik på tastatur - Aktiver vibration ved klik på tastatur - Opkald - Acceptér - Accepter opkald - Afvis - Afvis opkald - Ukendt nummer - Ringer… - Ringer op… - Opkald afsluttet - Opkald afsluttes - Igangværende opkald - Vælg et SIM-kort til dette opkald - Brug altid dette SIM-kort til dette nummer - Fravælg standard SIM - Opkald - Slå mikrofon til - Sluk mikrofonen - Tænd for højttaleren - Sluk højttaleren - Vis opkaldstastatur - Skjul opkaldstastatur - Afslut opkald - Parker opkald - Forsæt opkald - Opkald parkeret - Ombyt opkald - Sammenflet opkald - Opsplit opkald - Tilføj opkald - Administrer konferenceopkald - Konference - Højtaler - Øretelefon - Bluetooth - Kablet hovedtelefon - Kablet øretelefon - Vælg audio rute - Nummeret du kalder er blokeret - Hurtigopkald - Administrér hurtigopkald - Klik på et nummer for at tilknytte en kontakt til det. Derefter kan du hurtigt ringe op til den givne kontkakt ved at trykke længe på det givne nummer via det numeriske tastatur. - Vis kontakt miniature-billede - Gruppér efterfølgende opkald med samme nummer i opkaldsloggen - Åben det numeriske tastatur som standard når appen åbner - Deaktivér nærhedssensor under opkald - Erstat swipe ved besvarelse af indgående opkald med at klikke på - Vis altid indkomne opkald i fuld skærm - Skjul numre på tastaturet - Eksporter opkaldshistorik - Importer opkaldshistorik - Jeg hører indgående opkald, men skærmen tænder ikke. Hvad kan jeg gøre? - Sådanne problemer kan have mange enheds- og systemspecifikke årsager, så det er svært at sige noget generelt. Du bør se dig omkring i dine enhedsindstillinger og sikre dig, at appen får lov til at poppe op, når den er i baggrunden, og tillade visning over andre apps. +Opkald +Vælg venligst denne app som standard til opkald +Tillad venligst visning over andre apps for pålidelig adfærd + + +Kunne ikke få adgang til dine kontakter + + +Der blev ikke fundet nogen tidligere opkald +Kunne ikke få adgang til opkaldshistorikken +Anmod om adgang +Er du sikker på du vil fjerne de valgte opkald fra opkaldshistorikken? +Er du sikker på at du vil fjerne alt i opkaldshistorikken? +Vis grupperede opkald +Ryd opkaldshistorik +Vis opkaldsdetaljer + + +Numerisk tastatur +Stjerne +Hashtag +Opkaldsnummer +Aktiver bip ved klik på tastatur +Aktiver vibration ved klik på tastatur + + +Opkald +Acceptér +Accepter opkald +Afvis +Afvis opkald +Ukendt nummer +Ringer… +Ringer op… +Opkald afsluttet +Opkald afsluttes +Igangværende opkald +Vælg et SIM-kort til dette opkald +Brug altid dette SIM-kort til dette nummer +Fravælg standard SIM +Opkald +Slå mikrofon til +Sluk mikrofonen +Tænd for højttaleren +Sluk højttaleren +Vis opkaldstastatur +Skjul opkaldstastatur +Afslut opkald +Parker opkald +Forsæt opkald +Opkald parkeret +Ombyt opkald +Sammenflet opkald +Split opkald op +Tilføj opkald +Administrer konferenceopkald +Konference +Højtaler +Øretelefon +Bluetooth +Kablet hovedtelefon +Kablet øretelefon +Vælg audio rute +Nummeret du ringer til, er blokeret + + +Hurtigopkald +Administrer hurtigopkald +Klik på et nummer for at tilknytte en kontakt til det. Derefter kan du hurtigt ringe op til den givne kontkakt ved at holde nede på det givne nummer via det numeriske tastatur. + + +Vis kontakt miniature-billede +Gruppér efterfølgende opkald med samme nummer i opkaldsloggen +Åbn det numeriske tastatur som standard når appen åbner +Deaktivér nærhedssensor under opkald +Erstat swipe ved besvarelse af indgående opkald med berøring +Vis altid indkomne opkald i fuld skærm +Skjul numre på tastaturet +Eksporter opkaldshistorik +Importer opkaldshistorik + + +Jeg hører indgående opkald, men skærmen tænder ikke. Hvad kan jeg gøre? +Sådanne problemer kan have mange enheds- og systemspecifikke årsager, så det er svært at sige noget generelt. Du bør se dig omkring i dine enhedsindstillinger og sikre dig, at appen får lov til at poppe op, når den er i baggrunden, og tillade visning over andre apps. + diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index dc3daa73..d1a3b7f2 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -56,7 +56,7 @@ その番号はブロックした番号です スピードダイヤル スピードダイヤルの管理 - 番号をタップすると連絡先を割り当てることが出来ます。ダイヤルパッドで割り当てた番号を長押しすると、割り当てた連絡先に素早く電話をかけることが出来ます。 + 番号をタップすると連絡先を割り当てることができます。ダイヤルパッドで割り当てた番号を長押しすると、割り当てた連絡先に素早く電話をかけることができます。 連絡先のサムネイルを表示 発着信履歴で同じ番号による連続した通話をグループ化する アプリを開いたときにデフォルトでダイヤルパッドを開く @@ -66,4 +66,8 @@ ダイヤルパッドの番号を表示しない 着信音は聞こえるのですが、画面がつきません。どうしたらよいですか? このような問題は、端末やシステム固有の理由が多く、一概には言えません。端末の設定を見て、アプリがバックグラウンドでポップアップすることを許可しているか、他のアプリの上に表示することを許可しているかを確認する必要があります。 - + 電話 + Bluetooth + 通話履歴をエクスポート + 通話履歴をインポート + \ No newline at end of file diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml index fc62fed7..fe7226d0 100644 --- a/app/src/main/res/values-pt-rPT/strings.xml +++ b/app/src/main/res/values-pt-rPT/strings.xml @@ -1,51 +1,72 @@ - Ativar sons ao clicar no marcador - Ativar vibrações ao clicar no marcador - Gerir chamada em conferência + Ativar sons do teclado + Ativar vibração do teclado + Gerir chamada de conferência Ligar Desligar microfone Asterisco Chamada em curso - Chamada Desconhecida + Desconhecido Troca de chamadas - Limpar histórico de chamadas - Utilizar sempre este SIM para ligar para este número - Não foi possível aceder aos seus contactos - Juntar chamadas + Limpar registo de chamadas + Utilizar sempre este SIM para ligar a este número + Não foi possível aceder aos contactos + Unir chamadas A terminar chamada Selecione o SIM para esta chamada A ligar… Marcador Mostrar marcador - Separar chamada + Separar chamadas Recusar Não existem chamadas anteriores Ligar microfone Adicionar chamada Aceitar chamada - Mostrar detalhes das chamadas + Mostrar detalhes da chamada Pedir acesso Chamada terminada Retomar chamada - Tens a certeza de que pretendes remover todo o histórico de chamadas? + Tem a certeza de que pretende remover tudo do histórico de chamadas? A chamar… Recusar chamada Não foi possível aceder ao histórico de chamadas Marcador Ocultar marcador - Tornar aplicação de Chamadas padrão - Mostrar chamadas agrupadas - Permitir que esta aplicação tenha permissão sobre outras aplicações para obter um comportamento estável - Despromover de SIM padrão + Tornar esta a aplicação padrão + Mostrar chamadas em grupo + Deve permitir que esta aplicação seja mostrada por cima das outras para evitar comportamentos erráticos + Deixar de utilizar como SIM padrão Chamadas Aceitar Em espera - Colocar chamada em espera - Ligar alta-voz + Reter chamada + Ligar alta voz Terminar chamada Conferência - Desligar alta-voz - Tens a certeza de que desejas remover os itens selecionados do histórico de chamadas? + Desligar alta voz + Tem certeza de que deseja remover os itens selecionados do histórico de chamadas? Telefone + Altifalante + Auricular + \'Hashtag\' + Bluetooth + Auscultador de cabo + Cabo ou auricular + Escolha a rota de áudio + Gerir ligações rápidas + Clique num número para o atribuir a um contacto. Poderá assim, ligar diretamente ao contacto ao premir longamente a tecla de ligação rápida. + O número para o qual está a tentar ligar está bloqueado + Agrupar, no registo, as chamadas para o mesmo contacto + Mostrar marcador ao abrir a aplicação + Desativar sensor de proximidade durante as chamadas + Clicar em vez de deslizar para atender + Mostrar em ecrã completo as chamadas recebidas + Exportar registo de chamadas + Importar registo de chamadas + Ocultar números no marcador + Estou a ouvir som mas o ecrã não liga. O que posso fazer? + Esses problemas podem ter muitos motivos específicos do dispositivo e do sistema, difíceis de dizer em geral. Aceda às definições do sistema e certifique-se de que concedeu as permissões necessárias tais como permitir exibição por cima das outras aplicações. + Ligação rápida \ No newline at end of file diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 8fb3a9f5..c7cc5bd8 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -1,13 +1,13 @@ - Lütfen bu uygulamayı öntanımlı Telefon uygulaması yapın - Düzgün çalışması için lütfen diğer uygulamaların üzerinde görüntülemeye izin verin + Lütfen bu uygulamayı varsayılan Telefon uygulaması yapın + Stabil kullanım için lütfen diğer uygulamaların üzerinde gösterme izni verin Kişilerinize erişilemedi - Önceki arama bulunamadı + Geçmiş aramalar yok Arama geçmişine erişilemedi - Erişim isteği - Seçilen ögeleri Arama Geçmişinden kaldırmak istediğinizden emin misiniz\? - Arama Geçmişindeki her şeyi kaldırmak istediğinizden emin misiniz\? + Erişim iste + Seçilen ögeleri Arama Geçmişinden kaldırmak istediğinize emin misiniz? + Arama Geçmişindeki her şeyi kaldırmak istediğinize emin misiniz? Gruplandırılmış aramaları göster Arama geçmişini temizle Arama ayrıntılarını göster @@ -15,8 +15,8 @@ Yıldız işareti Kare işareti Numarayı ara - Tuş takımı düğmelerine tıklandığında bip sesini etkinleştir - Tuş takımı düğmelerine tıklandığında titreşimi etkinleştir + Tuş takımı düğmelerine dokununca ses çıkar + Tuş takımı düğmelerine dokununca titreştir Çevirici Kabul Et Aramayı kabul et @@ -24,13 +24,13 @@ Aramayı reddet Bilinmeyen Arama Arıyor… - Aranıyor… + Çağrı yapılıyor… Arama Sona Erdi - Aramayı Bitir + Arama Sonlandırılıyor Devam Eden Arama Bu arama için bir SIM seçin Bu numara için her zaman bu SIM\'i kullan - Öntanımlı SIM ayarını kaldır + Varsayılan SIM ayarını kaldır Aramalar Mikrofonu aç Mikrofonu kapat @@ -49,25 +49,25 @@ Konferans aramasını yönet Konferans Hoparlör - Kulaklık + Telefon Kablolu Kulaklık - Kablolu veya Kulaklık + Kablolu veya Telefon Ses çıkışını seçin Aradığınız numara engellendi Hızlı arama Hızlı aramayı yönet - Bir kişiyi atamak için bir numaraya tıklayın. Daha sonra numarayı çeviricide verilen numaraya uzun basarak hızlıca arayabilirsiniz. + Bir kişiye atamak için bir numaraya tıklayın. Tuş takımında bu numaraya uzun basarak bu kişiyi hızlıca arayabilirsiniz. Kişi küçük resimlerini göster - Arama kaydında aynı numaraya sahip sonraki aramaları gruplandır - Uygulama açıldığında öntanımlı olarak tuş takımını aç + Arama kaydında aynı numaradan gelen aramaları gruplandır + Uygulama açıldığında tuş takımını aç Aramalar sırasında yakınlık sensörünü devre dışı bırak - Gelen aramalara yanıt vermek için kaydırmayı tıklamayla değiştir + Gelen aramalara yanıt vermek için kaydırma hareketini dokunmayla değiştir Gelen aramaları her zaman tam ekranda görüntüle Tuş takımı numaralarını gizle Arama geçmişini dışa aktar Arama geçmişini içe aktar Gelen aramaları duyuyorum ama ekran açılmıyor. Ne yapabilirim\? - Bu tür sorunların aygıta ve sisteme özgü birçok nedeni olabilir, genel olarak söylemek zor. Aygıt ayarlarınıza bakmalı ve uygulamanın arka plandayken açılmasına ve diğer uygulamaların üzerinde görüntülenmesine izin verildiğinden emin olmalısınız. + Bu tür sorunların cihaza ve sisteme göre birçok nedeni olabilir. Cihaz ayarlarında uygulamanın arka plandayken açılmasına ve diğer uygulamaların üzerinde görüntülenmesine izin verildiğinden emin olmalısınız. Bluetooth Telefon diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 9c3aad0c..78c86cc0 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -69,4 +69,5 @@ 匯入通話紀錄 我聽到來電,但螢幕沒有亮起。我該怎麼辦? 這種問題可能有許多與裝置和系統特定的原因,一般來說很難確定。您應該查看您的裝置設定,並確保 app 被允許在背景時彈出並允許在其他 app 上顯示。 - + 電話 + \ No newline at end of file diff --git a/app/src/prepaid/res/values/bools.xml b/app/src/prepaid/res/values/bools.xml index 88ed4154..41c48b21 100644 --- a/app/src/prepaid/res/values/bools.xml +++ b/app/src/prepaid/res/values/bools.xml @@ -1,7 +1,6 @@ false - true - true + false true diff --git a/fastlane/metadata/android/bn-BD/changelogs/1.txt b/fastlane/metadata/android/bn-BD/changelogs/1.txt new file mode 100644 index 00000000..1105627e --- /dev/null +++ b/fastlane/metadata/android/bn-BD/changelogs/1.txt @@ -0,0 +1 @@ +* প্রাথমিক প্রকাশ diff --git a/fastlane/metadata/android/ca/changelogs/2.txt b/fastlane/metadata/android/ca/changelogs/2.txt index c030a78c..a510d420 100644 --- a/fastlane/metadata/android/ca/changelogs/2.txt +++ b/fastlane/metadata/android/ca/changelogs/2.txt @@ -2,8 +2,4 @@ * Afegeix la funció de marcació ràpida (https://github.com/FossifyOrg/Phone/issues/60). * Botó de penjar sempre és visible a la interfície d'usuari de les trucades (https://github.com/FossifyOrg/Phone/issues/9). * Millora la mida de l'avatar de qui truca i els botons a la interfície d'usuari de trucades (https://github.com/FossifyOrg/Phone/issues/118). -* Reorganitza les preferències de marcació en la seva pròpia secció dedicada (https://github.com/FossifyOrg/Phone/issues/116). -* Afegeix un avatar per a números desconeguts i contactes sense foto. -* Afegeix un indicador de progrés per a indicar la recuperació de l'historial de trucades. -* Afegeix un farciment inferior a les llistes per permetre desplaçaments per sobre del botó d'acció flotant. -* Afegeix traduccions. +* Reorganitza les preferències de [... i altres]. diff --git a/fastlane/metadata/android/ca/changelogs/3.txt b/fastlane/metadata/android/ca/changelogs/3.txt index cea2da6c..e7e695ab 100644 --- a/fastlane/metadata/android/ca/changelogs/3.txt +++ b/fastlane/metadata/android/ca/changelogs/3.txt @@ -5,5 +5,4 @@ * Reorganitza les preferències de marcació en la seva pròpia secció dedicada. * Afegeix un avatar per a números desconeguts i contactes sense foto. * Afegeix un indicador de progrés per a indicar la recuperació de l'historial de trucades. -* Afegeix un farciment inferior a les llistes per a permetre desplaçaments per sobre del botó d'acció flotant. -* Afegeix traduccions. +* Afegeix un farciment [... i altres]. diff --git a/fastlane/metadata/android/ca/changelogs/4.txt b/fastlane/metadata/android/ca/changelogs/4.txt new file mode 100644 index 00000000..be55a46b --- /dev/null +++ b/fastlane/metadata/android/ca/changelogs/4.txt @@ -0,0 +1,9 @@ +- Corregida la no actualització d'historial. +- Corregit error si la cerca no troba registres antics. +- Disseny de menú actualitzat per a IU/UX millor. +- Botons de trucada desactivats en finalitzar una trucada per a IU/UX millor. +- Entrades agrupades per data a l'historial. +- Afegida opció de format als números de telèfon del registre. +- Icones de direcció de trucada i colors actualitzats a l'historial. +- Reestructurada la IU de trucades per a adaptar a mides de pantalles. +- Traduccions noves. diff --git a/fastlane/metadata/android/cs-CZ/changelogs/1.txt b/fastlane/metadata/android/cs-CZ/changelogs/1.txt index 909b4eb0..9ad7f851 100644 --- a/fastlane/metadata/android/cs-CZ/changelogs/1.txt +++ b/fastlane/metadata/android/cs-CZ/changelogs/1.txt @@ -1 +1 @@ -* Initial release +* Prvotní vydání diff --git a/fastlane/metadata/android/en-US/changelogs/5.txt b/fastlane/metadata/android/en-US/changelogs/5.txt new file mode 100644 index 00000000..8e1ec9ad --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/5.txt @@ -0,0 +1,5 @@ +* Fixed issue with contacts not displaying on Android 14 and above +* Replaced checkboxes with switches +* Removed support for Android 7 and older versions +* Other minor bug fixes and improvements +* Added more translations diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png old mode 100644 new mode 100755 index 87200456..b7a83e2b Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png differ diff --git a/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png b/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png old mode 100644 new mode 100755 index 0a854932..0e95683f Binary files a/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png and b/fastlane/metadata/android/en-US/images/phoneScreenshots/7_en-US.png differ diff --git a/fastlane/metadata/android/et/changelogs/2.txt b/fastlane/metadata/android/et/changelogs/2.txt index feb8c2b0..ea9d05b0 100644 --- a/fastlane/metadata/android/et/changelogs/2.txt +++ b/fastlane/metadata/android/et/changelogs/2.txt @@ -1,9 +1,9 @@ -* Eemaldasime kõneajaloo salvestamise piirangu (https://github.com/FossifyOrg/Phone/issues/125). -* Lisasime mugava tagasihelistamise võimaluse (https://github.com/FossifyOrg/Phone/issues/60). -* Kõne lõpetamise nupp on nüüd alati helistamise vaates näha (https://github.com/FossifyOrg/Phone/issues/9). -* Kohendasime helistaja tunnuspildi ja nuppude suurust helistamise vaates (https://github.com/FossifyOrg/Phone/issues/118). -* Viisime klahvistiku eelistused seadistustes omaette sektsiooni (https://github.com/FossifyOrg/Phone/issues/116). +* Eemaldasime kõneajaloo salvestamise piirangu. +* Lisasime mugava tagasihelistamise võimaluse. +* Kõne lõpetamise nupp on nüüd alati helistamisel näha. +* Kohendasime helistaja tunnuspildi ja nuppude suurust helistamisel. +* Viisime klahvistiku eelistused seadistustes omaette sektsiooni. * Lisasime tundmatute helistajate ja pildita kontaktide jaoks üldise tunnuspildi * Kõneajaloo päringute jaoks on nüüd olemas olekuindikaator. -* Kohendasime loendites kirjete vaheruumi, et nad oleks eri olukordades paremini loetavad. +* Kohendasime loendites kirjete vaheruumi. * Lisasime mõned tõlked. diff --git a/fastlane/metadata/android/et/changelogs/3.txt b/fastlane/metadata/android/et/changelogs/3.txt index f454f93f..5dda77f7 100644 --- a/fastlane/metadata/android/et/changelogs/3.txt +++ b/fastlane/metadata/android/et/changelogs/3.txt @@ -1,9 +1,9 @@ * Eemaldasime kõneajaloo salvestamise piirangu. -* Lisasime mugava tagasihelistamise võimaluse. -* Kõne lõpetamise nupp on nüüd alati helistamise vaates näha. -* Kohendasime helistaja tunnuspildi ja nuppude suurust helistamise vaates. +* Lisasime mugava tagasihelistamise. +* Kõne lõpetamise nupp on nüüd alati helistamisel näha. +* Kohendasime helistaja tunnuspildi ja nuppude suurust helistamisel. * Viisime klahvistiku eelistused seadistustes omaette sektsiooni. * Lisasime tundmatute helistajate ja pildita kontaktide jaoks üldise tunnuspildi. * Kõneajaloo päringute jaoks on nüüd olemas olekuindikaator. -* Kohendasime loendites kirjete vaheruumi, et nad oleks eri olukordades paremini loetavad. +* Kohendasime loendites kirjete vaheruumi. * Lisasime mõned tõlked. diff --git a/fastlane/metadata/android/et/changelogs/4.txt b/fastlane/metadata/android/et/changelogs/4.txt new file mode 100644 index 00000000..1b78dffc --- /dev/null +++ b/fastlane/metadata/android/et/changelogs/4.txt @@ -0,0 +1,9 @@ +- Parandasime olukorra, kus kõneajalugu ei uuenenud. +- Parandasime vea, kus otsing ei leidnud vanu logisid. +- Parema kasutajaliidese nimel on menüü kujundus senisest parem. +- Parema kasutajaliidese nimel eemaldasime tegevuste nupud kõne lõpuvaatest. +- Kõneajaloo kirjeid rühmitame kuupäeva alusel. +- Lisasime võimaluse vormindada numbreid ajaloos. +- Uuendasime värve ja ikoone kõnede ajaloos. +- Muutsime käimasoleva kõne vaadet sobivamaks eri ekraanimõõtude puhul. +- Lisasime mõned tõlked. diff --git a/fastlane/metadata/android/fi-FI/changelogs/1.txt b/fastlane/metadata/android/fi-FI/changelogs/1.txt index 8bcddd6e..5a64ffbe 100644 --- a/fastlane/metadata/android/fi-FI/changelogs/1.txt +++ b/fastlane/metadata/android/fi-FI/changelogs/1.txt @@ -1 +1 @@ -* Alkuperäinen julkaisu +* Ensimmäinen julkaisu diff --git a/fastlane/metadata/android/fr-FR/changelogs/2.txt b/fastlane/metadata/android/fr-FR/changelogs/2.txt new file mode 100644 index 00000000..d5e787fd --- /dev/null +++ b/fastlane/metadata/android/fr-FR/changelogs/2.txt @@ -0,0 +1,9 @@ +* Suppression de la limite de l'historique des appels (https://github.com/FossifyOrg/Phone/issues/125). +* Ajout d'une fonction de rappel rapide (https://github.com/FossifyOrg/Phone/issues/60). +* Le bouton de raccrochage est désormais toujours visible dans l'interface d'appel (https://github.com/FossifyOrg/Phone/issues/9). +* Amélioration de la taille de l'avatar de l'appelant et des boutons dans l'interface d'appel (https://github.com/FossifyOrg/Phone/issues/118). +* Les préférences du clavier ont été réorganisées dans une section dédiée (https://github.com/FossifyOrg/Phone/issues/116). +* Ajout d'un avatar de remplacement pour les numéros inconnus et les contacts sans photo. +* Ajout d'un indicateur de progression pour indiquer la récupération de l'historique des appels. +* Ajout d'une marge inférieure dans les listes pour permettre le défilement au-dessus du bouton d'action flottant. +* Ajout de quelques traductions. diff --git a/fastlane/metadata/android/fr-FR/changelogs/3.txt b/fastlane/metadata/android/fr-FR/changelogs/3.txt new file mode 100644 index 00000000..ebcac8c2 --- /dev/null +++ b/fastlane/metadata/android/fr-FR/changelogs/3.txt @@ -0,0 +1,9 @@ +* Suppression de la limite de l'historique des appels. +* Ajout d'une fonction de rappel rapide. +* Le bouton de raccrochage est désormais toujours visible dans l'interface d'appel. +* Amélioration de la taille de l'avatar de l'appelant et des boutons dans l'interface utilisateur. +* Les préférences du clavier ont été réorganisées dans une section dédiée. +* Ajout d'un avatar de remplacement pour les numéros inconnus et les contacts sans photo. +* Ajout d'un indicateur de progression pour indiquer la récupération de l'historique des appels. +* Ajout d'une marge inférieure dans les listes pour permettre le défilement au-dessus du bouton d'action flottant. +* Ajout de quelques traductions. diff --git a/fastlane/metadata/android/ja-JP/changelogs/1.txt b/fastlane/metadata/android/ja-JP/changelogs/1.txt new file mode 100644 index 00000000..5d91ad87 --- /dev/null +++ b/fastlane/metadata/android/ja-JP/changelogs/1.txt @@ -0,0 +1 @@ +* 初公開 diff --git a/fastlane/metadata/android/ja-JP/short_description.txt b/fastlane/metadata/android/ja-JP/short_description.txt new file mode 100644 index 00000000..af2e3ae6 --- /dev/null +++ b/fastlane/metadata/android/ja-JP/short_description.txt @@ -0,0 +1 @@ +安全でオープンソースな通話体験をFossify Phoneで diff --git a/fastlane/metadata/android/hi@hinglish/title.txt b/fastlane/metadata/android/ja-JP/title.txt similarity index 100% rename from fastlane/metadata/android/hi@hinglish/title.txt rename to fastlane/metadata/android/ja-JP/title.txt diff --git a/fastlane/metadata/android/uk/changelogs/1.txt b/fastlane/metadata/android/uk/changelogs/1.txt index 15f431ca..4ac55aba 100644 --- a/fastlane/metadata/android/uk/changelogs/1.txt +++ b/fastlane/metadata/android/uk/changelogs/1.txt @@ -1 +1 @@ -* Релізний випуск +* Початковий реліз diff --git a/fastlane/metadata/android/zh-CN/changelogs/1.txt b/fastlane/metadata/android/zh-CN/changelogs/1.txt new file mode 100644 index 00000000..ebac50d2 --- /dev/null +++ b/fastlane/metadata/android/zh-CN/changelogs/1.txt @@ -0,0 +1 @@ +* 首次发布 diff --git a/fastlane/metadata/android/zh-CN/changelogs/2.txt b/fastlane/metadata/android/zh-CN/changelogs/2.txt new file mode 100644 index 00000000..4ea3eb0b --- /dev/null +++ b/fastlane/metadata/android/zh-CN/changelogs/2.txt @@ -0,0 +1,9 @@ +* 删除了通话记录限制 (https://github.com/FossifyOrg/Phone/issues/125)。 +* 添加了快速回拨功能 (https://github.com/FossifyOrg/Phone/issues/60)。 +* 挂断按钮现在始终显示在通话 UI 中 (https://github.com/FossifyOrg/Phone/issues/9)。 +* 增强了通话 UI 中呼叫者头像和按钮的大小 (https://github.com/FossifyOrg/Phone/issues/118)。 +* 将拨号键盘首选项重新组织到其专用部分 (https://github.com/FossifyOrg/Phone/issues/116)。 +* 为未知号码和没有照片的联系人添加了占位符头像。 +* 添加了进度指示器以指示通话记录检索。 +* 在列表中添加了底部填充,以允许在浮动操作按钮上方滚动。 +* 添加了一些翻译。 diff --git a/fastlane/metadata/android/zh-CN/changelogs/3.txt b/fastlane/metadata/android/zh-CN/changelogs/3.txt new file mode 100644 index 00000000..2d058062 --- /dev/null +++ b/fastlane/metadata/android/zh-CN/changelogs/3.txt @@ -0,0 +1,9 @@ +* 取消了通话记录限制。 +* 添加了快速回拨功能。 +* 挂断按钮现在始终显示在通话 UI 中。 +* 增强了通话 UI 中呼叫者头像和按钮的大小。 +* 将拨号盘首选项重新组织到其专用部分。 +* 为未知号码和没有照片的联系人添加了占位符头像。 +* 添加了进度指示器以指示通话记录检索。 +* 在列表中添加了底部填充,以允许在浮动操作按钮上方滚动。 +* 添加了一些翻译。 diff --git a/fastlane/metadata/android/zh-CN/changelogs/4.txt b/fastlane/metadata/android/zh-CN/changelogs/4.txt new file mode 100644 index 00000000..2d46fe8d --- /dev/null +++ b/fastlane/metadata/android/zh-CN/changelogs/4.txt @@ -0,0 +1,9 @@ +- 修复了通话记录无法刷新的问题。 +- 修复了导致搜索找不到旧通话记录的错误。 +- 更新菜单设计以获得更好的 UI/UX。 +- 通话结束后禁用通话操作按钮以获得更好的 UI/UX。 +- 按日期分组通话记录条目。 +- 添加了在通话记录中格式化电话号码的选项。 +- 更新了通话记录中的呼叫方向图标和颜色。 +- 重新构建了通话中的 UI,使其能够更好地响应不同的屏幕尺寸。 +- 添加了一些翻译。 diff --git a/fastlane/metadata/android/zh-CN/full_description.txt b/fastlane/metadata/android/zh-CN/full_description.txt new file mode 100644 index 00000000..db9ac1bf --- /dev/null +++ b/fastlane/metadata/android/zh-CN/full_description.txt @@ -0,0 +1,23 @@ +增强您的通话能力,保护您的数据。Fossify 电话以无与伦比的隐私和效率重新定义了移动应用体验。它没有广告和侵入性权限,旨在实现无缝和安全的日常通信。 + +📱 您的隐私,我们的首要任务: +欢迎使用 Fossify 电话应用,您的数字隐私至关重要。切换到尊重您数据的移动体验,确保您的个人信息保持安全和私密。 + +🚀 无缝性能: +Fossify 电话应用提供流畅灵敏的移动界面,在保护隐私的同时提高手机性能。体验无延迟、流畅的用户体验,针对效率和速度进行了优化。 + +🌐 开源保证: +使用 Fossify 电话应用,透明度触手可及。我们的应用建立在开源基础上,允许您在 GitHub 上查看我们的代码,促进信任和致力于隐私的社区。 + +🖼️ 量身定制: +使用 Fossify 电话应用定制您的移动体验。调整您的应用设置,以实现个性化界面,从主题设计到功能偏好。享受直观且独特的用户界面。 + +🔋 高效的资源管理: +Fossify 电话应用旨在优化资源使用,有助于延长电池寿命。它可以节省手机资源,确保您的设备高效运行,同时最大限度地减少电池消耗。 + +立即下载 Fossify 电话应用,进入隐私与功能无缝融合的移动世界。您的更安全、个性化移动体验之旅从这里开始。 + +探索更多 Fossify 应用:https://www.fossify.org +开源代码:https://www.github.com/FossifyOrg +加入 Reddit 社区:https://www.reddit.com/r/Fossify +在 Telegram 上联系:https://t.me/Fossify diff --git a/fastlane/metadata/android/zh-CN/short_description.txt b/fastlane/metadata/android/zh-CN/short_description.txt new file mode 100644 index 00000000..9c5d713d --- /dev/null +++ b/fastlane/metadata/android/zh-CN/short_description.txt @@ -0,0 +1 @@ +使用 Fossify 电话解锁安全、开源的通话体验 diff --git a/fastlane/metadata/android/zh-CN/title.txt b/fastlane/metadata/android/zh-CN/title.txt new file mode 100644 index 00000000..dea5f111 --- /dev/null +++ b/fastlane/metadata/android/zh-CN/title.txt @@ -0,0 +1 @@ +Fossify 电话 diff --git a/fastlane/metadata/android/zh-TW/title.txt b/fastlane/metadata/android/zh-TW/title.txt new file mode 100644 index 00000000..b16883d0 --- /dev/null +++ b/fastlane/metadata/android/zh-TW/title.txt @@ -0,0 +1 @@ +Fossify 電話 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 69a583a3..416be47c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,28 +1,28 @@ [versions] #jetbrains -kotlin = "1.9.23" -kotlinxSerializationJson = "1.5.1" +kotlin = "1.9.25" +kotlinxSerializationJson = "1.6.0" #Detekt detekt = "1.23.3" #Eventbus eventbus = "3.3.1" #Fossify -commons = "b53047c2dd" +commons = "c4110dc7c2" #Gradle -gradlePlugins-agp = "8.6.1" +gradlePlugins-agp = "8.7.1" #Other indicatorFastScroll = "4524cd0b61" autofitTextView = "0.2.1" #build app-build-compileSDKVersion = "34" app-build-targetSDK = "34" -app-build-minimumSDK = "23" +app-build-minimumSDK = "26" app-build-javaVersion = "VERSION_17" app-build-kotlinJVMTarget = "17" #versioning app-version-appId = "org.fossify.phone" -app-version-versionCode = "4" -app-version-versionName = "1.2.0" +app-version-versionCode = "5" +app-version-versionName = "1.3.0" [libraries] #Fossify fossify-commons = { module = "org.fossify:commons", version.ref = "commons" } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index d38e1bde..61da260b 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip