Comikey fix (#8296)

* Fix typo in Comikey

Second set of intent filters should be for `www.comikey.com`, was accidentally just a duplicate of the first set.

* Pump Comikey version number
This commit is contained in:
lord-ne 2021-07-27 14:08:02 -04:00 committed by GitHub
parent 02393522b5
commit e0e24f149f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -23,11 +23,11 @@
android:scheme="https" /> android:scheme="https" />
<data <data
android:host="comikey.com" android:host="www.comikey.com"
android:pathPattern="/comics/..*" android:pathPattern="/comics/..*"
android:scheme="https" /> android:scheme="https" />
<data <data
android:host="comikey.com" android:host="www.comikey.com"
android:pathPattern="/read/..*" android:pathPattern="/read/..*"
android:scheme="https" /> android:scheme="https" />
</intent-filter> </intent-filter>

View File

@ -6,7 +6,7 @@ ext {
extName = 'Comikey' extName = 'Comikey'
pkgNameSuffix = 'en.comikey' pkgNameSuffix = 'en.comikey'
extClass = '.Comikey' extClass = '.Comikey'
extVersionCode = 1 extVersionCode = 2
libVersion = '1.2' libVersion = '1.2'
} }