Skip to content

Commit 0848073

Browse files
chore: Merge branch dev to main (#104)
2 parents 2afa949 + 93e823d commit 0848073

File tree

422 files changed

+17443
-4248
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

422 files changed

+17443
-4248
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
# microG RE bug report
9+
# MicroG RE bug report
1010
1111
Before creating a new bug report, please keep the following in mind:
1212

.github/ISSUE_TEMPLATE/discussion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
# microG RE Discussion
9+
# MicroG RE Discussion
1010
1111
Before creating a new discussion, please keep the following in mind:
1212

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
# microG RE feature request
9+
# MicroG RE feature request
1010
1111
Before creating a new feature request, please keep the following in mind:
1212

.github/workflows/crowdin_pull.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ jobs:
5454
clean: true
5555

5656
# Step 2: Compile Android app to check string resources
57+
- name: "Setup Java"
58+
uses: actions/setup-java@v5
59+
with:
60+
distribution: "temurin"
61+
java-version: "18"
5762
- name: Compile Android app to check resources
5863
env:
5964
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/crowdin_push.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ jobs:
1616
name: Push strings
1717
runs-on: ubuntu-latest
1818
steps:
19-
- name: Checkout
20-
uses: actions/checkout@v5
19+
- name: Checkout dev
20+
uses: actions/checkout@v6
21+
with:
22+
ref: dev
23+
fetch-depth: 0
24+
clean: true
2125

2226
- name: Push strings
2327
uses: crowdin/github-action@v2

Images/Banner.svg

Lines changed: 0 additions & 88 deletions
This file was deleted.

Images/Dark.png

-2.1 MB
Binary file not shown.

Images/Light.png

-2.04 MB
Binary file not shown.

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515
ext.fragmentVersion = '1.8.9'
1616
ext.lifecycleVersion = '2.9.2'
1717
ext.loaderVersion = '1.1.0'
18-
ext.materialVersion = '1.14.0-alpha05'
18+
ext.materialVersion = '1.14.0-alpha08'
1919
ext.mediarouterVersion = '1.8.1'
2020
ext.multidexVersion = '2.0.1'
2121
ext.navigationVersion = '2.9.3'
@@ -33,7 +33,7 @@ buildscript {
3333
ext.wearableVersion = '0.1.1'
3434
ext.wireVersion = '5.3.10'
3535

36-
ext.androidBuildGradleVersion = '8.13.0'
36+
ext.androidBuildGradleVersion = '8.13.2'
3737

3838
// ext.androidBuildVersionTools = '34.0.0'
3939

@@ -83,10 +83,10 @@ allprojects {
8383
apply plugin: 'idea'
8484

8585
group = 'org.microg.gms'
86-
ext.appVersionName = 5.13
87-
ext.appVersionCode = 253850000
86+
ext.appVersionName = '6.0.0'
87+
ext.appVersionCode = 254961000
8888
ext.baseVersion = ext.appVersionCode.toString()[0..1] + '.' + ext.appVersionCode.toString()[2..3] + '.' + ext.appVersionCode.toString()[4..5]
89-
version = ext.appVersionName + " GMS-" + ext.baseVersion
89+
version = ext.appVersionName
9090
ext.isReleaseVersion = false
9191
}
9292

crowdin.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ api_token_env: "CROWDIN_PERSONAL_TOKEN"
44
preserve_hierarchy: true
55

66
files:
7-
- source: '/play-services-base/core/src/main/res/values/strings.xml'
8-
translation: '/play-services-base/core/src/main/values-%android_code%/values/strings.xml'
7+
- source: '/play-services-base/core/src/main/res/values/strings.xml'
8+
translation: '/play-services-base/core/src/main/res/values-%android_code%/values/strings.xml'
99
dest: '/microG/base.xml'
1010
skip_untranslated_strings: true
1111

12-
- source: '/play-services-core/src/main/res/values/plurals.xml'
12+
- source: '/play-services-core/src/main/res/values/plurals.xml'
1313
translation: '/play-services-core/src/main/res/values-%android_code%/plurals.xml'
1414
dest: '/microG/core_plurals.xml'
1515
skip_untranslated_strings: true
1616

17-
- source: '/play-services-core/src/main/res/values/strings.xml'
17+
- source: '/play-services-core/src/main/res/values/strings.xml'
1818
translation: '/play-services-core/src/main/res/values-%android_code%/strings.xml'
1919
dest: '/microG/core.xml'
2020
skip_untranslated_strings: true
2121

22-
- source: '/play-services-core/microg-ui-tools/src/main/res/values/strings.xml'
22+
- source: '/play-services-core/microg-ui-tools/src/main/res/values/strings.xml'
2323
translation: '/play-services-core/microg-ui-tools/src/main/res/values-%android_code%/strings.xml'
2424
dest: '/microG/core_ui.xml'
2525
skip_untranslated_strings: true

0 commit comments

Comments
 (0)