Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
perf: 🚑 Canary June 22nd, 2022
Browse files Browse the repository at this point in the history
final bug fixes and changes before compile
  • Loading branch information
Frontesque committed Jun 22, 2022
1 parent 7812df7 commit 296f35b
Show file tree
Hide file tree
Showing 13 changed files with 111 additions and 217 deletions.
1 change: 1 addition & 0 deletions NUXT/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
export default {
//--- VueTube Stuff ---//
env: {
release: "Unstable",
appVersion: "dev-local",
},

Expand Down
3 changes: 1 addition & 2 deletions NUXT/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export default {
await this.theming();
//--- Update Screen ---//
if (localStorage.getItem("lastRunVersion") != process.env.appVersion)
return this.$router.replace("/activities/update");
if ( (localStorage.getItem("lastRunVersion") != null) && (localStorage.getItem("lastRunVersion") != process.env.appVersion) ) return this.$router.replace("/activities/update");
//--- Start Innertube Connection ---//
await this.$youtube.getAPI();
Expand Down
3 changes: 2 additions & 1 deletion NUXT/pages/mods/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<v-card-title>{{ lang.appinformation }}</v-card-title>
<v-card-text>
<h3>{{ lang.appversion }}</h3>
{{ version.substring(0, 7) || "Unknown" }}
{{ version.substring(0, 7) || "Unknown" }} ({{ release }})
</v-card-text>
</v-card>
<!-- End App Information -->
Expand Down Expand Up @@ -95,6 +95,7 @@ export default {
data() {
return {
version: process.env.appVersion,
release: process.env.release,
deviceInfo: "",
lang: {},
};
Expand Down
2 changes: 1 addition & 1 deletion NUXT/pages/mods/updates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
>{{ lang.latest }}</v-chip
>
<v-chip
v-if="item == installedVersion"
v-if="item.tag_name == installedVersion"
class="tags"
color="green"
style="border-radius: 0.5rem; border: 2px var(--v-green-base)"
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
versionName "0.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 2 additions & 2 deletions android/app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0",
"versionName": "0.3",
"outputFile": "app-release.apk"
}
],
"elementType": "File"
}
}
48 changes: 24 additions & 24 deletions android/app/src/main/assets/capacitor.config.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"appId": "com.Frontesque.vuetube",
"appName": "VueTube",
"webDir": "dist",
"bundledWebRuntime": false,
"server": {
"hostname": "youtube.com",
"androidScheme": "https"
},
"android": {
"backgroundColor": "#000000"
},
"ios": {
"backgroundColor": "#000000"
},
"plugins": {
"SplashScreen": {
"launchShowDuration": 0,
"backgroundColor": "#000000",
"splashFullScreen": false,
"splashImmersive": false,
"launchAutoHide": true,
"showSpinner": false
}
}
"appId": "com.Frontesque.vuetube",
"appName": "VueTube",
"webDir": "dist",
"bundledWebRuntime": false,
"server": {
"hostname": "youtube.com",
"androidScheme": "https"
},
"android": {
"backgroundColor": "#000000"
},
"ios": {
"backgroundColor": "#000000"
},
"plugins": {
"SplashScreen": {
"launchShowDuration": 0,
"backgroundColor": "#000000",
"splashFullScreen": false,
"splashImmersive": false,
"launchAutoHide": true,
"showSpinner": false
}
}
}
88 changes: 44 additions & 44 deletions android/app/src/main/assets/capacitor.plugins.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
[
{
"pkg": "@capacitor-community/http",
"classpath": "com.getcapacitor.plugin.http.Http"
},
{
"pkg": "@capacitor/app",
"classpath": "com.capacitorjs.plugins.app.AppPlugin"
},
{
"pkg": "@capacitor/browser",
"classpath": "com.capacitorjs.plugins.browser.BrowserPlugin"
},
{
"pkg": "@capacitor/device",
"classpath": "com.capacitorjs.plugins.device.DevicePlugin"
},
{
"pkg": "@capacitor/filesystem",
"classpath": "com.capacitorjs.plugins.filesystem.FilesystemPlugin"
},
{
"pkg": "@capacitor/haptics",
"classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin"
},
{
"pkg": "@capacitor/share",
"classpath": "com.capacitorjs.plugins.share.SharePlugin"
},
{
"pkg": "@capacitor/splash-screen",
"classpath": "com.capacitorjs.plugins.splashscreen.SplashScreenPlugin"
},
{
"pkg": "@capacitor/status-bar",
"classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin"
},
{
"pkg": "@capacitor/toast",
"classpath": "com.capacitorjs.plugins.toast.ToastPlugin"
},
{
"pkg": "@hugotomazi/capacitor-navigation-bar",
"classpath": "br.com.tombus.capacitor.plugin.navigationbar.NavigationBarPlugin"
}
{
"pkg": "@capacitor-community/http",
"classpath": "com.getcapacitor.plugin.http.Http"
},
{
"pkg": "@capacitor/app",
"classpath": "com.capacitorjs.plugins.app.AppPlugin"
},
{
"pkg": "@capacitor/browser",
"classpath": "com.capacitorjs.plugins.browser.BrowserPlugin"
},
{
"pkg": "@capacitor/device",
"classpath": "com.capacitorjs.plugins.device.DevicePlugin"
},
{
"pkg": "@capacitor/filesystem",
"classpath": "com.capacitorjs.plugins.filesystem.FilesystemPlugin"
},
{
"pkg": "@capacitor/haptics",
"classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin"
},
{
"pkg": "@capacitor/share",
"classpath": "com.capacitorjs.plugins.share.SharePlugin"
},
{
"pkg": "@capacitor/splash-screen",
"classpath": "com.capacitorjs.plugins.splashscreen.SplashScreenPlugin"
},
{
"pkg": "@capacitor/status-bar",
"classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin"
},
{
"pkg": "@capacitor/toast",
"classpath": "com.capacitorjs.plugins.toast.ToastPlugin"
},
{
"pkg": "@hugotomazi/capacitor-navigation-bar",
"classpath": "br.com.tombus.capacitor.plugin.navigationbar.NavigationBarPlugin"
}
]
4 changes: 0 additions & 4 deletions android/app/src/main/res/xml/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<access origin="*" />

<feature name="CDVOrientation">
<param name="android-package" value="cordova.plugins.screenorientation.CDVOrientation"/>
</feature>


</widget>

This file was deleted.

48 changes: 24 additions & 24 deletions ios/App/App/capacitor.config.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"appId": "com.Frontesque.vuetube",
"appName": "VueTube",
"webDir": "dist",
"bundledWebRuntime": false,
"server": {
"hostname": "youtube.com",
"androidScheme": "https"
},
"android": {
"backgroundColor": "#000000"
},
"ios": {
"backgroundColor": "#000000"
},
"plugins": {
"SplashScreen": {
"launchShowDuration": 0,
"backgroundColor": "#000000",
"splashFullScreen": false,
"splashImmersive": false,
"launchAutoHide": true,
"showSpinner": false
}
}
"appId": "com.Frontesque.vuetube",
"appName": "VueTube",
"webDir": "dist",
"bundledWebRuntime": false,
"server": {
"hostname": "youtube.com",
"androidScheme": "https"
},
"android": {
"backgroundColor": "#000000"
},
"ios": {
"backgroundColor": "#000000"
},
"plugins": {
"SplashScreen": {
"launchShowDuration": 0,
"backgroundColor": "#000000",
"splashFullScreen": false,
"splashImmersive": false,
"launchAutoHide": true,
"showSpinner": false
}
}
}
4 changes: 0 additions & 4 deletions ios/App/App/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,5 @@
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<access origin="*" />

<feature name="CDVOrientation">
<param name="ios-package" value="CDVOrientation"/>
</feature>


</widget>
Loading

0 comments on commit 296f35b

Please sign in to comment.