Skip to content

Commit 928b834

Browse files
committed
feat: Change app name
1 parent 2193a75 commit 928b834

File tree

324 files changed

+438
-431
lines changed

Some content is hidden

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

324 files changed

+438
-431
lines changed

.github/workflows/pre-release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: rlespinasse/git-commit-data-action@v1
2222
- name: Retrieve Release Version
2323
id: versionstep
24-
working-directory: games_richpresence
24+
working-directory: rpc_express
2525
run: |
2626
VERSION=$(more pubspec.yaml | grep version: | cut -d ' ' -f2)
2727
echo "version=${VERSION}-beta" >> $GITHUB_OUTPUT
@@ -36,12 +36,12 @@ jobs:
3636
flutter-version: '3.24.3'
3737
channel: 'stable'
3838
- name: Build windows
39-
working-directory: ./games_richpresence
39+
working-directory: ./rpc_express
4040
run: flutter build windows -t ./lib/main_entrypoint.dart --build-name ${{ needs.retrievingVersion.outputs.version }}
4141
- uses: actions/upload-artifact@v3
4242
with:
4343
name: build_windows
44-
path: ./games_richpresence/build/windows/x64/runner/Release
44+
path: ./rpc_express/build/windows/x64/runner/Release
4545
build_linux:
4646
runs-on: ubuntu-latest
4747
needs: retrievingVersion
@@ -56,12 +56,12 @@ jobs:
5656
flutter-version: '3.24.3'
5757
channel: 'stable'
5858
- name: Build linux
59-
working-directory: ./games_richpresence
59+
working-directory: ./rpc_express
6060
run: flutter build linux -t ./lib/main_entrypoint.dart --build-name ${{ needs.retrievingVersion.outputs.version }}
6161
- uses: actions/upload-artifact@v3
6262
with:
6363
name: build_linux
64-
path: ./games_richpresence/build/linux/x64/release/bundle
64+
path: ./rpc_express/build/linux/x64/release/bundle
6565
upload:
6666
runs-on: ubuntu-latest
6767
needs:
@@ -76,23 +76,23 @@ jobs:
7676
- uses: actions/download-artifact@v3
7777
with:
7878
name: build_windows
79-
path: dist/Games_RichPresence_Windows
79+
path: dist/RPC_Express_Windows
8080
- uses: actions/download-artifact@v3
8181
with:
8282
name: build_linux
83-
path: dist/Games_RichPresence_Linux
83+
path: dist/RPC_Express_Linux
8484
- name: Zipping windows release
85-
working-directory: dist/Games_RichPresence_Windows
85+
working-directory: dist/RPC_Express_Windows
8686
run: |
87-
zip -r ../../Games_RichPresence_Windows.zip *
87+
zip -r ../../RPC_Express_Windows.zip *
8888
- name: Zipping linux release
89-
working-directory: dist/Games_RichPresence_Linux
89+
working-directory: dist/RPC_Express_Linux
9090
run: |
91-
zip -r ../../Games_RichPresence_Linux.zip *
91+
zip -r ../../RPC_Express_Linux.zip *
9292
- name: Upload release onto Github
9393
uses: ncipollo/release-action@v1
9494
with:
95-
artifacts: 'Games_RichPresence_Windows.zip,Games_RichPresence_Linux.zip'
95+
artifacts: 'RPC_Express_Windows.zip,RPC_Express_Linux.zip'
9696
token: ${{ secrets.GITHUB_TOKEN }}
9797
tag: ${{ needs.retrievingVersion.outputs.version }}
9898
prerelease: true

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: rlespinasse/git-commit-data-action@v1
2222
- name: Retrieve Release Version
2323
id: versionstep
24-
working-directory: games_richpresence
24+
working-directory: rpc_express
2525
run: |
2626
VERSION=$(more pubspec.yaml | grep version: | cut -d ' ' -f2)
2727
echo "version=${VERSION}" >> $GITHUB_OUTPUT
@@ -36,12 +36,12 @@ jobs:
3636
flutter-version: '3.24.3'
3737
channel: 'stable'
3838
- name: Build windows
39-
working-directory: ./games_richpresence
39+
working-directory: ./rpc_express
4040
run: flutter build windows --build-name -t ./lib/main_entrypoint.dart ${{ needs.retrievingVersion.outputs.version }}
4141
- uses: actions/upload-artifact@v3
4242
with:
4343
name: build_windows
44-
path: ./games_richpresence/build/windows/x64/runner/Release
44+
path: ./rpc_express/build/windows/x64/runner/Release
4545
build_linux:
4646
runs-on: ubuntu-latest
4747
needs: retrievingVersion
@@ -56,12 +56,12 @@ jobs:
5656
flutter-version: '3.24.3'
5757
channel: 'stable'
5858
- name: Build linux
59-
working-directory: ./games_richpresence
59+
working-directory: ./rpc_express
6060
run: flutter build linux --build-name -t ./lib/main_entrypoint.dart ${{ needs.retrievingVersion.outputs.version }}
6161
- uses: actions/upload-artifact@v3
6262
with:
6363
name: build_linux
64-
path: ./games_richpresence/build/linux/x64/release/bundle
64+
path: ./rpc_express/build/linux/x64/release/bundle
6565
upload:
6666
runs-on: ubuntu-latest
6767
needs:
@@ -76,23 +76,23 @@ jobs:
7676
- uses: actions/download-artifact@v3
7777
with:
7878
name: build_windows
79-
path: dist/Games_RichPresence_Windows
79+
path: dist/RPC_Express_Windows
8080
- uses: actions/download-artifact@v3
8181
with:
8282
name: build_linux
83-
path: dist/Games_RichPresence_Linux
83+
path: dist/RPC_Express_Linux
8484
- name: Zipping windows release
85-
working-directory: dist/Games_RichPresence_Windows
85+
working-directory: dist/RPC_Express_Windows
8686
run: |
87-
zip -r ../../Games_RichPresence_Windows.zip *
87+
zip -r ../../RPC_Express_Windows.zip *
8888
- name: Zipping linux release
89-
working-directory: dist/Games_RichPresence_Linux
89+
working-directory: dist/RPC_Express_Linux
9090
run: |
91-
zip -r ../../Games_RichPresence_Linux.zip *
91+
zip -r ../../RPC_Express_Linux.zip *
9292
- name: Upload release onto Github
9393
uses: ncipollo/release-action@v1
9494
with:
95-
artifacts: 'Games_RichPresence_Windows.zip,Games_RichPresence_Linux.zip'
95+
artifacts: 'RPC_Express_Windows.zip,RPC_Express_Linux.zip'
9696
token: ${{ secrets.GITHUB_TOKEN }}
9797
tag: ${{ needs.retrievingVersion.outputs.version }}
9898
prerelease: false

.vscode/launch.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": []
7+
}

README.md

Lines changed: 1 addition & 1 deletion

api/v1/the_finals/activities.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
{
33
"id":"ranked",
44
"name": "_ranked",
5-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_ranked.jpg",
5+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_ranked.jpg",
66
"description": "_ranked_description",
77
"gamemodes": [
88
{
99
"id": "world_tour",
1010
"name": "_world_tour",
11-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_ranked_world_tour.jpg",
11+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_ranked_world_tour.jpg",
1212
"description": "_world_tour_description",
1313
"rpc": "_world_tour_rpc"
1414
},
1515
{
1616
"id": "ranked_cashout",
1717
"name": "_ranked_cashout",
18-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_ranked_cashout.jpg",
18+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_ranked_cashout.jpg",
1919
"description": "_ranked_cashout_description",
2020
"rpc": "_ranked_cashout_rpc"
2121
}
@@ -24,34 +24,34 @@
2424
{
2525
"id":"casual",
2626
"name": "_casual",
27-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual.jpg",
27+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual.jpg",
2828
"description": "_casual_description",
2929
"gamemodes": [
3030
{
3131
"id": "casual_quick_cash",
3232
"name": "_casual_quick_cash",
33-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_quick_cash.png",
33+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_quick_cash.png",
3434
"description": "_casual_quick_cash_description",
3535
"rpc": "_casual_quick_cash_rpc"
3636
},
3737
{
3838
"id": "casual_bank_it",
3939
"name": "_casual_bank_it",
40-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_bank_it.png",
40+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_bank_it.png",
4141
"description": "_casual_bank_it_description",
4242
"rpc": "_casual_bank_it_rpc"
4343
},
4444
{
4545
"id": "casual_power_shift",
4646
"name": "_casual_power_shift",
47-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_power_shift.png",
47+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_power_shift.png",
4848
"description": "_casual_power_shift_description",
4949
"rpc": "_casual_power_shift_rpc"
5050
},
5151
{
5252
"id": "casual_terminal_attack",
5353
"name": "_casual_terminal_attack",
54-
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_terminal_attack.png",
54+
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_terminal_attack.png",
5555
"description": "_casual_terminal_attack_description",
5656
"rpc": "_casual_terminal_attack_rpc"
5757
}

games_richpresence/lib/model/class/game_activities/helldivers/activity.dart

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

games_richpresence/lib/pages/helldivers/activity_select/difficulty_activity_select_page_view_model.dart

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

games_richpresence/lib/pages/sea_of_thieves/ships/choose_ship_view_model.dart

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

games_richpresence/lib/pages/the_finals/group/group_page_view_model.dart

Lines changed: 0 additions & 9 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion

games_richpresence/android/app/build.gradle renamed to rpc_express/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
android {
9-
namespace = "com.example.games_richpresence"
9+
namespace = "com.example.rpc_express"
1010
compileSdk = flutter.compileSdkVersion
1111
ndkVersion = flutter.ndkVersion
1212

@@ -21,7 +21,7 @@ android {
2121

2222
defaultConfig {
2323
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24-
applicationId = "com.example.games_richpresence"
24+
applicationId = "com.example.rpc_express"
2525
// You can update the following values to match your application needs.
2626
// For more information, see: https://flutter.dev/to/review-gradle-config.
2727
minSdk = flutter.minSdkVersion

games_richpresence/android/app/src/main/AndroidManifest.xml renamed to rpc_express/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
22
<application
3-
android:label="games_richpresence"
3+
android:label="rpc_express"
44
android:name="${applicationName}"
55
android:icon="@mipmap/ic_launcher">
66
<activity
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.games_richpresence
1+
package com.example.rpc_express
22

33
import io.flutter.embedding.android.FlutterActivity
44

File renamed without changes.

games_richpresence/ios/Runner/Info.plist renamed to rpc_express/ios/Runner/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleInfoDictionaryVersion</key>
1414
<string>6.0</string>
1515
<key>CFBundleName</key>
16-
<string>games_richpresence</string>
16+
<string>rpc_express</string>
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>

games_richpresence/lib/components/common/molecules/game_selection_container.dart renamed to rpc_express/lib/components/common/molecules/game_selection_container.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:flutter/material.dart';
2-
import 'package:games_richpresence/model/class/games/game_object.dart';
2+
import 'package:rpc_express/model/class/games/game_object.dart';
33

44
class GameSelectionContainer extends StatefulWidget {
55
final GameObject game;

games_richpresence/lib/components/helldivers/atoms/background/background.dart renamed to rpc_express/lib/components/helldivers/atoms/background/background.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:flutter/material.dart';
2-
import 'package:games_richpresence/gen/assets.gen.dart';
2+
import 'package:rpc_express/gen/assets.gen.dart';
33

44
class HelldiversBackground extends StatefulWidget {
55
final Widget child;

games_richpresence/lib/components/helldivers/atoms/buttons/button.dart renamed to rpc_express/lib/components/helldivers/atoms/buttons/button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:flutter/widgets.dart';
2-
import 'package:games_richpresence/gen/assets.gen.dart';
2+
import 'package:rpc_express/gen/assets.gen.dart';
33

44
class HelldiversButton extends StatefulWidget {
55
final Widget child;

games_richpresence/lib/components/helldivers/atoms/buttons/difficulty_button.dart renamed to rpc_express/lib/components/helldivers/atoms/buttons/difficulty_button.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:easy_localization/easy_localization.dart';
22
import 'package:flutter/widgets.dart';
3-
import 'package:games_richpresence/components/helldivers/atoms/buttons/button.dart';
4-
import 'package:games_richpresence/model/class/game_activities/helldivers/difficulties.dart';
3+
import 'package:rpc_express/components/helldivers/atoms/buttons/button.dart';
4+
import 'package:rpc_express/model/class/game_activities/helldivers/difficulties.dart';
55

66
class DifficultyButton extends StatefulWidget {
77
final Difficulties difficulty;

games_richpresence/lib/components/helldivers/atoms/buttons/text_button.dart renamed to rpc_express/lib/components/helldivers/atoms/buttons/text_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import 'package:flutter/widgets.dart';
2-
import 'package:games_richpresence/components/helldivers/atoms/buttons/button.dart';
2+
import 'package:rpc_express/components/helldivers/atoms/buttons/button.dart';
33

44
class HelldiversTextButton extends StatelessWidget {
55
final String text;

games_richpresence/lib/components/helldivers/molecules/panels/planet_panel.dart renamed to rpc_express/lib/components/helldivers/molecules/panels/planet_panel.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import 'package:easy_localization/easy_localization.dart';
22
import 'package:flutter/material.dart';
33
import 'package:flutter/widgets.dart';
4-
import 'package:games_richpresence/model/class/game_activities/helldivers/difficulties.dart';
5-
import 'package:games_richpresence/model/class/game_activities/helldivers/faction.dart';
6-
import 'package:games_richpresence/model/class/game_activities/helldivers/objective.dart';
7-
import 'package:games_richpresence/model/class/game_activities/helldivers/planets.dart';
4+
import 'package:rpc_express/model/class/game_activities/helldivers/difficulties.dart';
5+
import 'package:rpc_express/model/class/game_activities/helldivers/faction.dart';
6+
import 'package:rpc_express/model/class/game_activities/helldivers/objective.dart';
7+
import 'package:rpc_express/model/class/game_activities/helldivers/planets.dart';
88

99
class HelldiversPlanetPanel extends StatelessWidget {
1010
final HelldiversPlanet planet;

games_richpresence/lib/components/sea_of_thieves/atoms/buttons/icon_button.dart renamed to rpc_express/lib/components/sea_of_thieves/atoms/buttons/icon_button.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:flutter/material.dart';
22
import 'package:flutter_svg/flutter_svg.dart';
3-
import 'package:games_richpresence/components/sea_of_thieves/atoms/colors/colors.dart';
4-
import 'package:games_richpresence/gen/assets.gen.dart';
3+
import 'package:rpc_express/components/sea_of_thieves/atoms/colors/colors.dart';
4+
import 'package:rpc_express/gen/assets.gen.dart';
55

66
class SotIconButton extends StatefulWidget {
77
final void Function() onPressed;

games_richpresence/lib/components/sea_of_thieves/atoms/buttons/ship_button.dart renamed to rpc_express/lib/components/sea_of_thieves/atoms/buttons/ship_button.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import 'package:easy_localization/easy_localization.dart';
22
import 'package:flutter/material.dart';
33
import 'package:flutter_svg/svg.dart';
4-
import 'package:games_richpresence/components/sea_of_thieves/atoms/buttons/squared_button.dart';
5-
import 'package:games_richpresence/components/sea_of_thieves/molecules/panels/name_panel.dart';
6-
import 'package:games_richpresence/gen/assets.gen.dart';
7-
import 'package:games_richpresence/model/class/user_group/sea_of_thieves/ship.dart';
4+
import 'package:rpc_express/components/sea_of_thieves/atoms/buttons/squared_button.dart';
5+
import 'package:rpc_express/components/sea_of_thieves/molecules/panels/name_panel.dart';
6+
import 'package:rpc_express/gen/assets.gen.dart';
7+
import 'package:rpc_express/model/class/user_group/sea_of_thieves/ship.dart';
88

99
class ShipButton extends StatefulWidget {
1010
final Function onPressed;

games_richpresence/lib/components/sea_of_thieves/atoms/buttons/small_button.dart renamed to rpc_express/lib/components/sea_of_thieves/atoms/buttons/small_button.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'package:flutter/material.dart';
22
import 'package:flutter_svg/flutter_svg.dart';
3-
import 'package:games_richpresence/components/sea_of_thieves/atoms/texts/styles.dart';
4-
import 'package:games_richpresence/gen/assets.gen.dart';
3+
import 'package:rpc_express/components/sea_of_thieves/atoms/texts/styles.dart';
4+
import 'package:rpc_express/gen/assets.gen.dart';
55

66
class SmallButton extends StatefulWidget {
77
final void Function() onPressed;

0 commit comments

Comments
 (0)