diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..f7b8634 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,81 @@ +name: 🐞 Issue Report +description: Report a issue in VueTube +labels: [bug] +body: + + - type: textarea + id: reproduce-steps + attributes: + label: Steps to reproduce + description: Provide an example of the issue. + placeholder: | + Example: + 1. First step + 2. Second step + 3. Issue here + validations: + required: true + + - type: textarea + id: expected-behavior + attributes: + label: Expected behavior + placeholder: | + Example: + "This should happen..." + validations: + required: true + + - type: textarea + id: actual-behavior + attributes: + label: Actual behavior + placeholder: | + Example: + "This happened instead..." + validations: + required: true + + - type: input + id: vuetube-version + attributes: + label: VueTube version + description: | + You can find your VueTube version in **Settings**. + placeholder: | + Example: "1.0" + validations: + required: true + + - type: input + id: android-version + attributes: + label: Android version + description: | + You can find this somewhere in your Android settings. + placeholder: | + Example: "Android 12" + validations: + required: true + + - type: textarea + id: other-details + attributes: + label: Other details + placeholder: | + Additional details and attachments. + + - type: checkboxes + id: acknowledgements + attributes: + label: Acknowledgements + description: Your issue will be closed if you haven't done these steps. + options: + - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open issue. + required: true + - label: I have written a short but informative title. + required: true + - label: I have updated the app to unstable version **[Latest](https://vuetube.app/install/)**. + required: true + - label: I will fill out all of the requested information in this form. + required: true diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 2a21876..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Device Information** - - OS: [e.g. iOS 15, Android 12] - - App Version [e.g. 22] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 0000000..9bc7ddb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,35 @@ +name: ⭐ Feature request +description: Suggest a feature to improve the app +labels: [feature request] +body: + + - type: textarea + id: feature-description + attributes: + label: Describe your suggested feature + description: How can an existing source be improved? + placeholder: | + Example: + "It should work like this..." + validations: + required: true + + - type: textarea + id: other-details + attributes: + label: Other details + placeholder: | + Additional details and attachments. + + - type: checkboxes + id: acknowledgements + attributes: + label: Acknowledgements + description: Your issue will be closed if you haven't done these steps. + options: + - label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open issue. + required: true + - label: I have written a short but informative title. + required: true + - label: I will fill out all of the requested information in this form. + required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index bbcbbe7..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: '' -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/NUXT/pages/mods/about.vue b/NUXT/pages/mods/about.vue index 726c706..43ebfb3 100644 --- a/NUXT/pages/mods/about.vue +++ b/NUXT/pages/mods/about.vue @@ -15,16 +15,15 @@ - App Information + {{ languagePack.mods.about.appinformation }} -

App Version

+

{{ languagePack.mods.about.appversion }}

{{ version.substring(0, 7) || "Unknown" }}
@@ -32,26 +31,27 @@ - Device Information + {{ + languagePack.mods.about.deviceinformation + }} -

Platform

+

{{ languagePack.mods.about.platform }}

{{ deviceInfo.platform || "Unknown" }}
-

Operating System

+

{{ languagePack.mods.about.os }}

{{ deviceInfo.operatingSystem || "Unknown" }} ({{ deviceInfo.osVersion || "Unknown" }})
-

Model

+

{{ languagePack.mods.about.model }}

{{ deviceInfo.model || "Unknown" }}
-

Manufacturer

+

{{ languagePack.mods.about.manufacturer }}

{{ deviceInfo.manufacturer || "Unknown" }}
-

Emulator

+

{{ languagePack.mods.about.emulator }}

{{ deviceInfo.isVirtual ? "yes" : "no" }}
@@ -69,7 +69,7 @@ @click="openExternal('https://github.com/Frontesque/VueTube')" > mdi-github - Github + {{ languagePack.mods.about.github }} mdi-discord - Discord + {{ languagePack.mods.about.discord }} @@ -96,6 +96,7 @@ export default { return { version: process.env.appVersion, deviceInfo: "", + languagePack: { mods: { about: {} } }, }; }, computed: { @@ -107,6 +108,8 @@ export default { async mounted() { const info = await Device.getInfo(); this.deviceInfo = info; + + this.languagePack = this.$lang(); }, methods: { async openExternal(url) { diff --git a/NUXT/pages/mods/startup.vue b/NUXT/pages/mods/startup.vue index e84392d..d9e11dd 100644 --- a/NUXT/pages/mods/startup.vue +++ b/NUXT/pages/mods/startup.vue @@ -1,59 +1,62 @@ diff --git a/NUXT/pages/settings.vue b/NUXT/pages/settings.vue index a064a3d..688822f 100644 --- a/NUXT/pages/settings.vue +++ b/NUXT/pages/settings.vue @@ -13,7 +13,19 @@ - + + + + mdi-database-edit + {{ devmodebuttonname }} + + @@ -35,6 +47,9 @@ export default { data() { return { devClicks: 0, + devmode: false, + + devmodebuttonname: "Developer Mode", settingsItems: [ { @@ -100,13 +115,17 @@ export default { this.settingsItems[6].name = this.$lang("settings").updates; this.settingsItems[7].name = this.$lang("settings").logs; this.settingsItems[8].name = this.$lang("settings").about; + this.devmodebuttonname = this.$lang("settings").devmode; + + this.devmode = localStorage.getItem("devmode"); }, methods: { dev() { this.devClicks++; if (this.devClicks >= 6) { - this.$router.push("/mods/developer"); + localStorage.setItem("devmode", "true"); + this.devmode = true; } }, }, diff --git a/NUXT/plugins/languages/english.js b/NUXT/plugins/languages/english.js index 47e1669..3d28f73 100644 --- a/NUXT/plugins/languages/english.js +++ b/NUXT/plugins/languages/english.js @@ -4,7 +4,7 @@ module.exports = { global: { home: "Home", subscriptions: "Subscriptions", - library: "Libraary" + library: "Library" }, index: { @@ -21,6 +21,24 @@ module.exports = { plugins: "Plugins", updates: "Updates", logs: "Logs", - about: "About" + about: "About", + devmode: "Registry Editor" + }, + + mods: { + about: { + appinformation: "App Information", + appversion: "App Version", + deviceinformation: "Device Information", + platform: "Platform", + os: "Operating System", + model: "Model", + manufacturer: "Manufacturer", + emulator: "Emulator", + github: "GitHub", + discord: "Discord" + } } + + }