Version bump v0.9.75-beta & targetSdkVersion bump to 34

This commit is contained in:
advplyr 2024-08-12 17:24:05 -05:00
parent f01f0229a8
commit d18537cf04
5 changed files with 8 additions and 12 deletions

View file

@ -33,8 +33,8 @@ android {
applicationId "com.audiobookshelf.app" applicationId "com.audiobookshelf.app"
minSdkVersion rootProject.ext.minSdkVersion minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 105 versionCode 106
versionName "0.9.74-beta" versionName "0.9.75-beta"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [ manifestPlaceholders = [
"appAuthRedirectScheme": "com.audiobookshelf.app" "appAuthRedirectScheme": "com.audiobookshelf.app"

View file

@ -1,7 +1,7 @@
ext { ext {
minSdkVersion = 24 minSdkVersion = 24
compileSdkVersion = 34 compileSdkVersion = 34
targetSdkVersion = 33 targetSdkVersion = 34
androidxActivityVersion = '1.7.0' androidxActivityVersion = '1.7.0'
androidxAppCompatVersion = '1.6.1' androidxAppCompatVersion = '1.6.1'
androidxCoordinatorLayoutVersion = '1.2.0' androidxCoordinatorLayoutVersion = '1.2.0'

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "audiobookshelf-app", "name": "audiobookshelf-app",
"version": "0.9.74-beta", "version": "0.9.75-beta",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "audiobookshelf-app", "name": "audiobookshelf-app",
"version": "0.9.74-beta", "version": "0.9.75-beta",
"dependencies": { "dependencies": {
"@byteowls/capacitor-filesharer": "^5.0.0", "@byteowls/capacitor-filesharer": "^5.0.0",
"@capacitor/android": "^5.0.0", "@capacitor/android": "^5.0.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "audiobookshelf-app", "name": "audiobookshelf-app",
"version": "0.9.74-beta", "version": "0.9.75-beta",
"author": "advplyr", "author": "advplyr",
"scripts": { "scripts": {
"dev": "nuxt --hostname 0.0.0.0 --port 1337", "dev": "nuxt --hostname 0.0.0.0 --port 1337",

View file

@ -34,11 +34,7 @@ export default {
deviceData: null deviceData: null
} }
}, },
computed: { computed: {},
networkConnected() {
return this.$store.state.networkConnected
}
},
methods: { methods: {
async init() { async init() {
this.deviceData = await this.$db.getDeviceData() this.deviceData = await this.$db.getDeviceData()
@ -53,4 +49,4 @@ export default {
this.init() this.init()
} }
} }
</script> </script>