From 9b5cc9cca9a79c852f0181e9602947604c8f7c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ak=C3=ACra?= <166439659+slotmachinedev@users.noreply.github.com> Date: Tue, 30 Apr 2024 12:32:12 +0000 Subject: [PATCH 1/6] Remove first loading bug warning. --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 7d501e0..9eb41a7 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,6 @@ However, if you currently want to use a mobile mod, you can use [Aliucord](https ## Download -> [!WARNING] -> After finishing the setup wizard, Discord may not load. This only happens at that moment, you have to restart the app to load Discord. - [Here!](https://github.com/VendroidEnhanced/Vendroid/releases/latest/download/app-release.apk) ## Build From 0ba963bc4132970e6018eafb875bb14631515939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ak=C3=ACra?= <166439659+slotmachinedev@users.noreply.github.com> Date: Tue, 30 Apr 2024 12:37:13 +0000 Subject: [PATCH 2/6] Load fixes.css (ported from Vesktop). --- app/src/main/res/raw/vencord_mobile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/res/raw/vencord_mobile.js b/app/src/main/res/raw/vencord_mobile.js index 819fd98..2a914b3 100644 --- a/app/src/main/res/raw/vencord_mobile.js +++ b/app/src/main/res/raw/vencord_mobile.js @@ -39,7 +39,8 @@ Object.assign(document.createElement("link"), { rel: "stylesheet", type: "text/css", - href: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css" + href: "https://github.com/Vendicated/Vencord/releases/download/devbuild/browser.css", + href: "https://raw.githubusercontent.com/VendroidEnhanced/Vencord/main/src/utils/fixes.css" }) ), { once: true }); })(); From 46b02d495af11bca5a59379ceb5c5e1a24d774b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ak=C3=ACra?= <166439659+slotmachinedev@users.noreply.github.com> Date: Tue, 30 Apr 2024 12:43:15 +0000 Subject: [PATCH 3/6] Remove output-metadata.json from build artifact. --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 8d630a3..11a4e3c 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -40,4 +40,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: app - path: ${{ env.main_project_module }}/build/outputs/apk/debug/ + path: ${{ env.main_project_module }}/build/outputs/apk/debug/app-debug.apk From 72b2f034acf50af2894ce2ff88a64268db8f89f1 Mon Sep 17 00:00:00 2001 From: nin0dev Date: Tue, 30 Apr 2024 19:13:42 -0400 Subject: [PATCH 4/6] added non working template --- .github/ISSUE_TEMPLATE/blank.yml | 69 ++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/blank.yml diff --git a/.github/ISSUE_TEMPLATE/blank.yml b/.github/ISSUE_TEMPLATE/blank.yml new file mode 100644 index 0000000..b773f24 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/blank.yml @@ -0,0 +1,69 @@ +description: "Open a blank issue." +labels: [bug] +title: "[Bug] " + +body: + - type: markdown + attributes: + value: | + > [!WARNING] + > ## ONLY OPEN AN ISSUE IF: + > * You are using an up-to-date version of VendroidEnhanced + > * You **did not** edit the Vencord location in app settings + > * You are using Discord Stable, not PTB or Canary. + > * You **could not** reproduce the issue on: + > * Vencord Web, Vesktop, or ArmCord, on a computer + > * The Discord mobile website (`discord.com/app`) on a mobile browser WITHOUT VENCORD + > + > **Your issue will get closed and you will possibly be blocked from the repository if you cannot read this!** + + - type: input + id: discord + attributes: + label: Discord account + description: Who on Discord is making this request? Not required but encouraged for easier follow-up. + placeholder: username + validations: + required: false + + - type: textarea + id: bug-description + attributes: + label: What happens when the bug or crash occurs? + description: Where does this bug or crash occur, when does it occur, etc. + placeholder: The bug/crash happens sometimes when I do ..., causing this to not work/the app to crash. I think it happens because of ... + validations: + required: true + + - type: textarea + id: expected-behaviour + attributes: + label: What is the expected behaviour? + description: Simply detail what the expected behaviour is. + placeholder: I expect Vendroid/Discord to open the ... page instead of ..., it prevents me from doing ... + validations: + required: true + + - type: textarea + id: steps-to-take + attributes: + label: How do you recreate this bug or crash? + description: Give us a list of steps in order to recreate the bug or crash. + placeholder: | + 1. Do ... + 2. Then ... + 3. Do this ..., ... and then ... + 4. Observe "the bug" or "the crash" + validations: + required: true + + - type: checkboxes + id: agreement-check + attributes: + label: Request agreement + description: We only accept reports for bugs that happen on Discord Stable. Canary and PTB are Development branches and may be unstable. + options: + - label: I am using Discord Stable or tried on Stable and this bug happens there as well + required: true + - label: I have read the requirements for opening an issue above + \ No newline at end of file From 4353a3993cb2a078582f3c9b1a018ebba687848f Mon Sep 17 00:00:00 2001 From: nin0dev <personal@nin0dev.com> Date: Tue, 30 Apr 2024 19:20:21 -0400 Subject: [PATCH 5/6] Update blank.yml Fixed blank issue template --- .github/ISSUE_TEMPLATE/blank.yml | 83 +++++++------------------------- 1 file changed, 18 insertions(+), 65 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/blank.yml b/.github/ISSUE_TEMPLATE/blank.yml index b773f24..222ca11 100644 --- a/.github/ISSUE_TEMPLATE/blank.yml +++ b/.github/ISSUE_TEMPLATE/blank.yml @@ -1,69 +1,22 @@ -description: "Open a blank issue." -labels: [bug] -title: "[Bug] <title>" +description: Open a blank issue. Only for contributors or if explicitly allowed by one. +title: "<title>" body: - type: markdown - attributes: - value: | - > [!WARNING] - > ## ONLY OPEN AN ISSUE IF: - > * You are using an up-to-date version of VendroidEnhanced - > * You **did not** edit the Vencord location in app settings - > * You are using Discord Stable, not PTB or Canary. - > * You **could not** reproduce the issue on: - > * Vencord Web, Vesktop, or ArmCord, on a computer - > * The Discord mobile website (`discord.com/app`) on a mobile browser WITHOUT VENCORD - > - > **Your issue will get closed and you will possibly be blocked from the repository if you cannot read this!** - - - type: input - id: discord - attributes: - label: Discord account - description: Who on Discord is making this request? Not required but encouraged for easier follow-up. - placeholder: username - validations: - required: false + attributes: + value: | + > [!CAUTION] + > ## ONLY OPEN A BLANK ISSUE if you: + > - are a VendroidEnhanced contributor + > - are a Vencord (upstream) contributor + > - were explicitly told to do so by a contributor or org member. + > If you don't meet the conditions, please use the other templates. + > + > **If you open a blank issue without meeting these conditions, you will be blocked from the repository.** - - type: textarea - id: bug-description - attributes: - label: What happens when the bug or crash occurs? - description: Where does this bug or crash occur, when does it occur, etc. - placeholder: The bug/crash happens sometimes when I do ..., causing this to not work/the app to crash. I think it happens because of ... - validations: - required: true - - - type: textarea - id: expected-behaviour - attributes: - label: What is the expected behaviour? - description: Simply detail what the expected behaviour is. - placeholder: I expect Vendroid/Discord to open the ... page instead of ..., it prevents me from doing ... - validations: - required: true - - - type: textarea - id: steps-to-take - attributes: - label: How do you recreate this bug or crash? - description: Give us a list of steps in order to recreate the bug or crash. - placeholder: | - 1. Do ... - 2. Then ... - 3. Do this ..., ... and then ... - 4. Observe "the bug" or "the crash" - validations: - required: true - - - type: checkboxes - id: agreement-check - attributes: - label: Request agreement - description: We only accept reports for bugs that happen on Discord Stable. Canary and PTB are Development branches and may be unstable. - options: - - label: I am using Discord Stable or tried on Stable and this bug happens there as well - required: true - - label: I have read the requirements for opening an issue above - \ No newline at end of file + - type: textarea + id: description + attributes: + label: Issue content + validations: + required: true From 8872f1dffd8cd99bed4ceecd2f4e416fb015e4e7 Mon Sep 17 00:00:00 2001 From: nin0dev <personal@nin0dev.com> Date: Tue, 30 Apr 2024 19:20:37 -0400 Subject: [PATCH 6/6] Update blank.yml --- .github/ISSUE_TEMPLATE/blank.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/blank.yml b/.github/ISSUE_TEMPLATE/blank.yml index 222ca11..ea87256 100644 --- a/.github/ISSUE_TEMPLATE/blank.yml +++ b/.github/ISSUE_TEMPLATE/blank.yml @@ -1,3 +1,4 @@ +name: Blank issue description: Open a blank issue. Only for contributors or if explicitly allowed by one. title: "<title>"