Add support for four more bookwyrm instances.

This commit is contained in:
Privacy_Dragon
2022-03-10 18:29:32 +01:00
parent f7f28ea807
commit 303eed4e3f
7 changed files with 53 additions and 5 deletions

View File

@@ -5,4 +5,4 @@ It can also open links to userpages of Bookwyrm users.
This application works on: Android 6 and above. This application works on: Android 6 and above.
And if you want to know, I am @StoryDragon@wyrms.de on BookWyrm. And if you want to know, I am `@StoryDragon@wyrms.de` on BookWyrm.

View File

@@ -9,8 +9,8 @@ android {
applicationId "nl.privacydragon.bookwyrm" applicationId "nl.privacydragon.bookwyrm"
minSdk 23 minSdk 23
targetSdk 31 targetSdk 31
versionCode 5 versionCode 6
versionName "1.2.2" versionName "1.2.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }

View File

@@ -11,8 +11,8 @@
"type": "SINGLE", "type": "SINGLE",
"filters": [], "filters": [],
"attributes": [], "attributes": [],
"versionCode": 5, "versionCode": 6,
"versionName": "1.2.2", "versionName": "1.2.3",
"outputFile": "app-release.apk" "outputFile": "app-release.apk"
} }
], ],

View File

@@ -192,6 +192,50 @@
android:host="bookwyrm.tardis.pw" android:host="bookwyrm.tardis.pw"
android:pathPrefix="/user/" /> android:pathPrefix="/user/" />
</intent-filter> </intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="tankie.ml"
android:pathPrefix="/user/" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="masstoc.io"
android:pathPrefix="/user/" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="books.mennisch.net"
android:pathPrefix="/user/" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="bookwyrm.pt"
android:pathPrefix="/user/" />
</intent-filter>
</activity> </activity>
<activity <activity
android:name=".StartActivity" android:name=".StartActivity"

View File

@@ -0,0 +1,3 @@
Initial release for F-Droid.
* Added support for four more BookWyrm instances.

View File

@@ -1,2 +1,3 @@
This is an Android client for BookWyrm. This is an Android client for BookWyrm.
It is just BookWyrm put into a webview element, nothing special. It is just BookWyrm put into a webview element, nothing special.
<b>This application is <u>not</u> an official client!</b> (An official client does not exist yet, as far as I know)