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

Commit 296f35b

Browse files
committed
perf: 🚑 Canary June 22nd, 2022
final bug fixes and changes before compile
1 parent 7812df7 commit 296f35b

File tree

13 files changed

+111
-217
lines changed

13 files changed

+111
-217
lines changed

NUXT/nuxt.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
export default {
99
//--- VueTube Stuff ---//
1010
env: {
11+
release: "Unstable",
1112
appVersion: "dev-local",
1213
},
1314

NUXT/pages/index.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export default {
2929
await this.theming();
3030
3131
//--- Update Screen ---//
32-
if (localStorage.getItem("lastRunVersion") != process.env.appVersion)
33-
return this.$router.replace("/activities/update");
32+
if ( (localStorage.getItem("lastRunVersion") != null) && (localStorage.getItem("lastRunVersion") != process.env.appVersion) ) return this.$router.replace("/activities/update");
3433
3534
//--- Start Innertube Connection ---//
3635
await this.$youtube.getAPI();

NUXT/pages/mods/about.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<v-card-title>{{ lang.appinformation }}</v-card-title>
2626
<v-card-text>
2727
<h3>{{ lang.appversion }}</h3>
28-
{{ version.substring(0, 7) || "Unknown" }}
28+
{{ version.substring(0, 7) || "Unknown" }} ({{ release }})
2929
</v-card-text>
3030
</v-card>
3131
<!-- End App Information -->
@@ -95,6 +95,7 @@ export default {
9595
data() {
9696
return {
9797
version: process.env.appVersion,
98+
release: process.env.release,
9899
deviceInfo: "",
99100
lang: {},
100101
};

NUXT/pages/mods/updates.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
>{{ lang.latest }}</v-chip
3030
>
3131
<v-chip
32-
v-if="item == installedVersion"
32+
v-if="item.tag_name == installedVersion"
3333
class="tags"
3434
color="green"
3535
style="border-radius: 0.5rem; border: 2px var(--v-green-base)"

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
minSdkVersion rootProject.ext.minSdkVersion
88
targetSdkVersion rootProject.ext.targetSdkVersion
99
versionCode 1
10-
versionName "1.0"
10+
versionName "0.3"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
aaptOptions {
1313
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.

android/app/release/output-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"filters": [],
1313
"attributes": [],
1414
"versionCode": 1,
15-
"versionName": "1.0",
15+
"versionName": "0.3",
1616
"outputFile": "app-release.apk"
1717
}
1818
],
1919
"elementType": "File"
20-
}
20+
}
Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
2-
"appId": "com.Frontesque.vuetube",
3-
"appName": "VueTube",
4-
"webDir": "dist",
5-
"bundledWebRuntime": false,
6-
"server": {
7-
"hostname": "youtube.com",
8-
"androidScheme": "https"
9-
},
10-
"android": {
11-
"backgroundColor": "#000000"
12-
},
13-
"ios": {
14-
"backgroundColor": "#000000"
15-
},
16-
"plugins": {
17-
"SplashScreen": {
18-
"launchShowDuration": 0,
19-
"backgroundColor": "#000000",
20-
"splashFullScreen": false,
21-
"splashImmersive": false,
22-
"launchAutoHide": true,
23-
"showSpinner": false
24-
}
25-
}
2+
"appId": "com.Frontesque.vuetube",
3+
"appName": "VueTube",
4+
"webDir": "dist",
5+
"bundledWebRuntime": false,
6+
"server": {
7+
"hostname": "youtube.com",
8+
"androidScheme": "https"
9+
},
10+
"android": {
11+
"backgroundColor": "#000000"
12+
},
13+
"ios": {
14+
"backgroundColor": "#000000"
15+
},
16+
"plugins": {
17+
"SplashScreen": {
18+
"launchShowDuration": 0,
19+
"backgroundColor": "#000000",
20+
"splashFullScreen": false,
21+
"splashImmersive": false,
22+
"launchAutoHide": true,
23+
"showSpinner": false
24+
}
25+
}
2626
}
Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
[
2-
{
3-
"pkg": "@capacitor-community/http",
4-
"classpath": "com.getcapacitor.plugin.http.Http"
5-
},
6-
{
7-
"pkg": "@capacitor/app",
8-
"classpath": "com.capacitorjs.plugins.app.AppPlugin"
9-
},
10-
{
11-
"pkg": "@capacitor/browser",
12-
"classpath": "com.capacitorjs.plugins.browser.BrowserPlugin"
13-
},
14-
{
15-
"pkg": "@capacitor/device",
16-
"classpath": "com.capacitorjs.plugins.device.DevicePlugin"
17-
},
18-
{
19-
"pkg": "@capacitor/filesystem",
20-
"classpath": "com.capacitorjs.plugins.filesystem.FilesystemPlugin"
21-
},
22-
{
23-
"pkg": "@capacitor/haptics",
24-
"classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin"
25-
},
26-
{
27-
"pkg": "@capacitor/share",
28-
"classpath": "com.capacitorjs.plugins.share.SharePlugin"
29-
},
30-
{
31-
"pkg": "@capacitor/splash-screen",
32-
"classpath": "com.capacitorjs.plugins.splashscreen.SplashScreenPlugin"
33-
},
34-
{
35-
"pkg": "@capacitor/status-bar",
36-
"classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin"
37-
},
38-
{
39-
"pkg": "@capacitor/toast",
40-
"classpath": "com.capacitorjs.plugins.toast.ToastPlugin"
41-
},
42-
{
43-
"pkg": "@hugotomazi/capacitor-navigation-bar",
44-
"classpath": "br.com.tombus.capacitor.plugin.navigationbar.NavigationBarPlugin"
45-
}
2+
{
3+
"pkg": "@capacitor-community/http",
4+
"classpath": "com.getcapacitor.plugin.http.Http"
5+
},
6+
{
7+
"pkg": "@capacitor/app",
8+
"classpath": "com.capacitorjs.plugins.app.AppPlugin"
9+
},
10+
{
11+
"pkg": "@capacitor/browser",
12+
"classpath": "com.capacitorjs.plugins.browser.BrowserPlugin"
13+
},
14+
{
15+
"pkg": "@capacitor/device",
16+
"classpath": "com.capacitorjs.plugins.device.DevicePlugin"
17+
},
18+
{
19+
"pkg": "@capacitor/filesystem",
20+
"classpath": "com.capacitorjs.plugins.filesystem.FilesystemPlugin"
21+
},
22+
{
23+
"pkg": "@capacitor/haptics",
24+
"classpath": "com.capacitorjs.plugins.haptics.HapticsPlugin"
25+
},
26+
{
27+
"pkg": "@capacitor/share",
28+
"classpath": "com.capacitorjs.plugins.share.SharePlugin"
29+
},
30+
{
31+
"pkg": "@capacitor/splash-screen",
32+
"classpath": "com.capacitorjs.plugins.splashscreen.SplashScreenPlugin"
33+
},
34+
{
35+
"pkg": "@capacitor/status-bar",
36+
"classpath": "com.capacitorjs.plugins.statusbar.StatusBarPlugin"
37+
},
38+
{
39+
"pkg": "@capacitor/toast",
40+
"classpath": "com.capacitorjs.plugins.toast.ToastPlugin"
41+
},
42+
{
43+
"pkg": "@hugotomazi/capacitor-navigation-bar",
44+
"classpath": "br.com.tombus.capacitor.plugin.navigationbar.NavigationBarPlugin"
45+
}
4646
]

android/app/src/main/res/xml/config.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,5 @@
22
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
33
<access origin="*" />
44

5-
<feature name="CDVOrientation">
6-
<param name="android-package" value="cordova.plugins.screenorientation.CDVOrientation"/>
7-
</feature>
8-
95

106
</widget>

android/capacitor-cordova-android-plugins/src/main/java/cordova/plugins/screenorientation/CDVOrientation.java

Lines changed: 0 additions & 98 deletions
This file was deleted.

0 commit comments

Comments
 (0)