-
Notifications
You must be signed in to change notification settings - Fork 8
Dev #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Dev #11
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
88b49b3
update
SANDRO00O c2a07be
update
SANDRO00O bb5c3d3
update
SANDRO00O d803a06
update
SANDRO00O 4dfdfda
update
SANDRO00O 9459686
update
SANDRO00O 99c1ee0
update
SANDRO00O db1fc4e
update gradle-wrapper.jar
SANDRO00O a32dc44
update MainActivity.kt
SANDRO00O a66f256
update
SANDRO00O 718009e
update
SANDRO00O e5546c9
update
SANDRO00O 541f1ee
update
SANDRO00O c36d259
update
SANDRO00O 50a5c56
update
SANDRO00O 33bd711
update
SANDRO00O a5292a5
update
SANDRO00O 91a4d64
update
SANDRO00O 1bd05f5
update
SANDRO00O ce77a4a
update
SANDRO00O 433bbbf
update
SANDRO00O 9c87122
update
SANDRO00O 2037c80
update
SANDRO00O 45350f9
update
SANDRO00O 9249475
update
SANDRO00O 3fea4fe
update ic_splashscreen.xml
SANDRO00O 8234f87
update
SANDRO00O File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| name: Generate Release Keystore | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| generate: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Generate Release Keystore | ||
| run: | | ||
| keytool -genkeypair -alias consoleflow -keyalg RSA -keysize 2048 -validity 10000 -keystore release.keystore -storepass consoleflow123 -keypass consoleflow123 -dname "CN=consoleflow, OU=App, O=consoleflow, L=Unknown, ST=Unknown, C=US" | ||
|
|
||
| echo "" | ||
| echo "================================================" | ||
| echo " COPY THESE VALUES TO GITHUB SECRETS" | ||
| echo "================================================" | ||
| echo "" | ||
| echo "Secret name: KEYSTORE_B64" | ||
| echo "Secret value (copy everything between the lines):" | ||
| echo "----" | ||
| base64 -w 0 release.keystore | ||
| echo "" | ||
| echo "----" | ||
| echo "" | ||
| echo "Secret name: KEY_ALIAS" | ||
| echo "Secret value: consoleflow" | ||
| echo "" | ||
| echo "Secret name: KEYSTORE_PASSWORD" | ||
| echo "Secret value: consoleflow123" | ||
| echo "" | ||
| echo "Secret name: KEY_PASSWORD" | ||
| echo "Secret value: consoleflow123" | ||
| echo "" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| name: Quick APK | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build: | ||
| name: Build quick APK | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: '17' | ||
| cache: gradle | ||
|
|
||
| - name: Make Gradle wrapper executable | ||
| run: chmod +x ./gradlew | ||
|
|
||
| - name: Build debug APK | ||
| run: ./gradlew assembleDebug --no-daemon | ||
|
|
||
| - name: Rename APK | ||
| id: rename | ||
| run: | | ||
| APK_PATH=$(find app/build/outputs/apk/debug -name '*.apk' | head -n 1) | ||
| SHORT_SHA="${GITHUB_SHA::7}" | ||
| NEW_NAME="ConsoleFlow-quick-${SHORT_SHA}.apk" | ||
| cp "$APK_PATH" "$NEW_NAME" | ||
| echo "apk_path=$NEW_NAME" >> "$GITHUB_OUTPUT" | ||
|
|
||
| - name: Upload APK artifact | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: ConsoleFlow-quick-apk | ||
| path: ${{ steps.rename.outputs.apk_path }} | ||
| if-no-files-found: error | ||
| retention-days: 14 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| *.keystore | ||
| *.jks | ||
| release.keystore | ||
| debug.keystore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # Changelog | ||
|
|
||
| ## v2.2.8 | ||
|
|
||
| ### What is new | ||
|
|
||
| - Added a **new dedicated download management system** with its own page. | ||
| - Added **full support** for controllers, keyboard, mouse, and TV remotes. | ||
| - Fixed some issues and made other improvements. | ||
| - New app logo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. Keystore leaked in logs
🐞 Bug⛨ SecurityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools