Skip to content

Commit

Permalink
feat: Change app name
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisL61 committed Nov 18, 2024
1 parent 2193a75 commit 928b834
Show file tree
Hide file tree
Showing 324 changed files with 438 additions and 431 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: rlespinasse/git-commit-data-action@v1
- name: Retrieve Release Version
id: versionstep
working-directory: games_richpresence
working-directory: rpc_express
run: |
VERSION=$(more pubspec.yaml | grep version: | cut -d ' ' -f2)
echo "version=${VERSION}-beta" >> $GITHUB_OUTPUT
Expand All @@ -36,12 +36,12 @@ jobs:
flutter-version: '3.24.3'
channel: 'stable'
- name: Build windows
working-directory: ./games_richpresence
working-directory: ./rpc_express
run: flutter build windows -t ./lib/main_entrypoint.dart --build-name ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_windows
path: ./games_richpresence/build/windows/x64/runner/Release
path: ./rpc_express/build/windows/x64/runner/Release
build_linux:
runs-on: ubuntu-latest
needs: retrievingVersion
Expand All @@ -56,12 +56,12 @@ jobs:
flutter-version: '3.24.3'
channel: 'stable'
- name: Build linux
working-directory: ./games_richpresence
working-directory: ./rpc_express
run: flutter build linux -t ./lib/main_entrypoint.dart --build-name ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_linux
path: ./games_richpresence/build/linux/x64/release/bundle
path: ./rpc_express/build/linux/x64/release/bundle
upload:
runs-on: ubuntu-latest
needs:
Expand All @@ -76,23 +76,23 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build_windows
path: dist/Games_RichPresence_Windows
path: dist/RPC_Express_Windows
- uses: actions/download-artifact@v3
with:
name: build_linux
path: dist/Games_RichPresence_Linux
path: dist/RPC_Express_Linux
- name: Zipping windows release
working-directory: dist/Games_RichPresence_Windows
working-directory: dist/RPC_Express_Windows
run: |
zip -r ../../Games_RichPresence_Windows.zip *
zip -r ../../RPC_Express_Windows.zip *
- name: Zipping linux release
working-directory: dist/Games_RichPresence_Linux
working-directory: dist/RPC_Express_Linux
run: |
zip -r ../../Games_RichPresence_Linux.zip *
zip -r ../../RPC_Express_Linux.zip *
- name: Upload release onto Github
uses: ncipollo/release-action@v1
with:
artifacts: 'Games_RichPresence_Windows.zip,Games_RichPresence_Linux.zip'
artifacts: 'RPC_Express_Windows.zip,RPC_Express_Linux.zip'
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ needs.retrievingVersion.outputs.version }}
prerelease: true
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: rlespinasse/git-commit-data-action@v1
- name: Retrieve Release Version
id: versionstep
working-directory: games_richpresence
working-directory: rpc_express
run: |
VERSION=$(more pubspec.yaml | grep version: | cut -d ' ' -f2)
echo "version=${VERSION}" >> $GITHUB_OUTPUT
Expand All @@ -36,12 +36,12 @@ jobs:
flutter-version: '3.24.3'
channel: 'stable'
- name: Build windows
working-directory: ./games_richpresence
working-directory: ./rpc_express
run: flutter build windows --build-name -t ./lib/main_entrypoint.dart ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_windows
path: ./games_richpresence/build/windows/x64/runner/Release
path: ./rpc_express/build/windows/x64/runner/Release
build_linux:
runs-on: ubuntu-latest
needs: retrievingVersion
Expand All @@ -56,12 +56,12 @@ jobs:
flutter-version: '3.24.3'
channel: 'stable'
- name: Build linux
working-directory: ./games_richpresence
working-directory: ./rpc_express
run: flutter build linux --build-name -t ./lib/main_entrypoint.dart ${{ needs.retrievingVersion.outputs.version }}
- uses: actions/upload-artifact@v3
with:
name: build_linux
path: ./games_richpresence/build/linux/x64/release/bundle
path: ./rpc_express/build/linux/x64/release/bundle
upload:
runs-on: ubuntu-latest
needs:
Expand All @@ -76,23 +76,23 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: build_windows
path: dist/Games_RichPresence_Windows
path: dist/RPC_Express_Windows
- uses: actions/download-artifact@v3
with:
name: build_linux
path: dist/Games_RichPresence_Linux
path: dist/RPC_Express_Linux
- name: Zipping windows release
working-directory: dist/Games_RichPresence_Windows
working-directory: dist/RPC_Express_Windows
run: |
zip -r ../../Games_RichPresence_Windows.zip *
zip -r ../../RPC_Express_Windows.zip *
- name: Zipping linux release
working-directory: dist/Games_RichPresence_Linux
working-directory: dist/RPC_Express_Linux
run: |
zip -r ../../Games_RichPresence_Linux.zip *
zip -r ../../RPC_Express_Linux.zip *
- name: Upload release onto Github
uses: ncipollo/release-action@v1
with:
artifacts: 'Games_RichPresence_Windows.zip,Games_RichPresence_Linux.zip'
artifacts: 'RPC_Express_Windows.zip,RPC_Express_Linux.zip'
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ needs.retrievingVersion.outputs.version }}
prerelease: false
Expand Down
7 changes: 7 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": []
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Games_RichPresence
# RPC_Express
16 changes: 8 additions & 8 deletions api/v1/the_finals/activities.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
{
"id":"ranked",
"name": "_ranked",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_ranked.jpg",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_ranked.jpg",
"description": "_ranked_description",
"gamemodes": [
{
"id": "world_tour",
"name": "_world_tour",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_ranked_world_tour.jpg",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_ranked_world_tour.jpg",
"description": "_world_tour_description",
"rpc": "_world_tour_rpc"
},
{
"id": "ranked_cashout",
"name": "_ranked_cashout",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_ranked_cashout.jpg",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_ranked_cashout.jpg",
"description": "_ranked_cashout_description",
"rpc": "_ranked_cashout_rpc"
}
Expand All @@ -24,34 +24,34 @@
{
"id":"casual",
"name": "_casual",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual.jpg",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual.jpg",
"description": "_casual_description",
"gamemodes": [
{
"id": "casual_quick_cash",
"name": "_casual_quick_cash",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_quick_cash.png",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_quick_cash.png",
"description": "_casual_quick_cash_description",
"rpc": "_casual_quick_cash_rpc"
},
{
"id": "casual_bank_it",
"name": "_casual_bank_it",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_bank_it.png",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_bank_it.png",
"description": "_casual_bank_it_description",
"rpc": "_casual_bank_it_rpc"
},
{
"id": "casual_power_shift",
"name": "_casual_power_shift",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_power_shift.png",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_power_shift.png",
"description": "_casual_power_shift_description",
"rpc": "_casual_power_shift_rpc"
},
{
"id": "casual_terminal_attack",
"name": "_casual_terminal_attack",
"image": "https://alexisl61.github.io/Games_RichPresence/assets/the_finals/gamemodes/the_finals_casual_terminal_attack.png",
"image": "https://alexisl61.github.io/RPC_Express/assets/the_finals/gamemodes/the_finals_casual_terminal_attack.png",
"description": "_casual_terminal_attack_description",
"rpc": "_casual_terminal_attack_rpc"
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion games_richpresence/README.md → rpc_express/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# games_richpresence
# rpc_express

A new Flutter project.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

android {
namespace = "com.example.games_richpresence"
namespace = "com.example.rpc_express"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

Expand All @@ -21,7 +21,7 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.games_richpresence"
applicationId = "com.example.rpc_express"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="games_richpresence"
android:label="rpc_express"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.games_richpresence
package com.example.rpc_express

import io.flutter.embedding.android.FlutterActivity

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>games_richpresence</string>
<string>rpc_express</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:games_richpresence/model/class/games/game_object.dart';
import 'package:rpc_express/model/class/games/game_object.dart';

class GameSelectionContainer extends StatefulWidget {
final GameObject game;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:games_richpresence/gen/assets.gen.dart';
import 'package:rpc_express/gen/assets.gen.dart';

class HelldiversBackground extends StatefulWidget {
final Widget child;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/widgets.dart';
import 'package:games_richpresence/gen/assets.gen.dart';
import 'package:rpc_express/gen/assets.gen.dart';

class HelldiversButton extends StatefulWidget {
final Widget child;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/widgets.dart';
import 'package:games_richpresence/components/helldivers/atoms/buttons/button.dart';
import 'package:games_richpresence/model/class/game_activities/helldivers/difficulties.dart';
import 'package:rpc_express/components/helldivers/atoms/buttons/button.dart';
import 'package:rpc_express/model/class/game_activities/helldivers/difficulties.dart';

class DifficultyButton extends StatefulWidget {
final Difficulties difficulty;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/widgets.dart';
import 'package:games_richpresence/components/helldivers/atoms/buttons/button.dart';
import 'package:rpc_express/components/helldivers/atoms/buttons/button.dart';

class HelldiversTextButton extends StatelessWidget {
final String text;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:games_richpresence/model/class/game_activities/helldivers/difficulties.dart';
import 'package:games_richpresence/model/class/game_activities/helldivers/faction.dart';
import 'package:games_richpresence/model/class/game_activities/helldivers/objective.dart';
import 'package:games_richpresence/model/class/game_activities/helldivers/planets.dart';
import 'package:rpc_express/model/class/game_activities/helldivers/difficulties.dart';
import 'package:rpc_express/model/class/game_activities/helldivers/faction.dart';
import 'package:rpc_express/model/class/game_activities/helldivers/objective.dart';
import 'package:rpc_express/model/class/game_activities/helldivers/planets.dart';

class HelldiversPlanetPanel extends StatelessWidget {
final HelldiversPlanet planet;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:games_richpresence/components/sea_of_thieves/atoms/colors/colors.dart';
import 'package:games_richpresence/gen/assets.gen.dart';
import 'package:rpc_express/components/sea_of_thieves/atoms/colors/colors.dart';
import 'package:rpc_express/gen/assets.gen.dart';

class SotIconButton extends StatefulWidget {
final void Function() onPressed;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:games_richpresence/components/sea_of_thieves/atoms/buttons/squared_button.dart';
import 'package:games_richpresence/components/sea_of_thieves/molecules/panels/name_panel.dart';
import 'package:games_richpresence/gen/assets.gen.dart';
import 'package:games_richpresence/model/class/user_group/sea_of_thieves/ship.dart';
import 'package:rpc_express/components/sea_of_thieves/atoms/buttons/squared_button.dart';
import 'package:rpc_express/components/sea_of_thieves/molecules/panels/name_panel.dart';
import 'package:rpc_express/gen/assets.gen.dart';
import 'package:rpc_express/model/class/user_group/sea_of_thieves/ship.dart';

class ShipButton extends StatefulWidget {
final Function onPressed;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';
import 'package:flutter_svg/flutter_svg.dart';
import 'package:games_richpresence/components/sea_of_thieves/atoms/texts/styles.dart';
import 'package:games_richpresence/gen/assets.gen.dart';
import 'package:rpc_express/components/sea_of_thieves/atoms/texts/styles.dart';
import 'package:rpc_express/gen/assets.gen.dart';

class SmallButton extends StatefulWidget {
final void Function() onPressed;
Expand Down
Loading

0 comments on commit 928b834

Please sign in to comment.