Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ apply from: "$rootDir/common.gradle"
| `extName` | The name of the extension. Should be romanized if site name is not in English. |
| `extClass` | Points to the class that implements `Source`. You can use a relative path starting with a dot (the package name is the base path). This is used to find and instantiate the source(s). |
| `extVersionCode` | The extension version code. This must be a positive integer and incremented with any change to the code. |
| `isNsfw` | (Optional, defaults to `false`) Flag to indicate that a source contains NSFW content. |
| `isNsfw` | Flag to indicate that a source contains NSFW content. Must be explicitly set to `true` or `false`. |

The extension's version name is generated automatically by concatenating `1.4` and `extVersionCode`.
With the example used above, the version would be `1.4.1`.
Expand Down
1 change: 1 addition & 0 deletions src/all/comicskingdom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'ComicsKingdom'
extClass = '.ComicsKingdomFactory'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/comikey/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = "Comikey"
extClass = ".ComikeyFactory"
extVersionCode = 3
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/all/commitstrip/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Commit Strip'
extClass = '.CommitStripFactory'
extVersionCode = 3
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/cubari/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Cubari'
extClass = '.CubariFactory'
extVersionCode = 26
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/dragonballmultiverse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Dragon Ball Multiverse'
extClass = '.DbMFactory'
extVersionCode = 6
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/foolslidecustomizable/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ext {
extClass = '.FoolSlideCustomizableFactory'
themePkg = 'foolslide'
overrideVersionCode = 0
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/komga/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Komga'
extClass = '.KomgaFactory'
extVersionCode = 64
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/all/lanraragi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'LANraragi'
extClass = '.LANraragiFactory'
extVersionCode = 20
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/leagueoflegends/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'League of Legends'
extClass = '.LOLFactory'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/mangaplus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'MANGA Plus by SHUEISHA'
extClass = '.MangaPlusFactory'
extVersionCode = 60
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/all/mangapluscreators/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'MANGA Plus Creators by SHUEISHA'
extClass = '.MangaPlusCreatorsFactory'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/mango/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Mango'
extClass = '.Mango'
extVersionCode = 11
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
3 changes: 2 additions & 1 deletion src/all/ninemanga/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ext {
extName = 'NineManga'
extClass = '.NineMangaFactory'
extVersionCode = 25
extVersionCode = 26
isNsfw = true
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/all/peppercarrot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Pepper&Carrot'
extClass = '.PepperCarrot'
extVersionCode = 4
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/projectsuki/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Project Suki'
extClass = '.ProjectSuki'
extVersionCode = 6
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/all/taddyink/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Taddy INK (Webtoons)'
extClass = '.TaddyInkFactory'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/thelibraryofohara/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'The Library of Ohara'
extClass = '.TheLibraryOfOharaFactory'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/vinnieVeritas/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Vinne Veritas - CCC'
extClass = '.VinnieVeritasFactory'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/all/xkcd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'xkcd'
extClass = '.XkcdFactory'
extVersionCode = 16
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/ar/dilar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ext {
extClass = '.Dilar'
themePkg = 'gmanga'
overrideVersionCode = 3
isNsfw = true
}

apply from: "$rootDir/common.gradle"
3 changes: 2 additions & 1 deletion src/ar/mangalink/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ ext {
extClass = '.Mangalink'
themePkg = 'madara'
baseUrl = 'https://link-manga.net'
overrideVersionCode = 5
overrideVersionCode = 6
isNsfw = true
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/ar/mangatales/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ext {
extClass = '.MangaTales'
themePkg = 'gmanga'
overrideVersionCode = 0
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/ar/shqqaa/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Shqqaa Manga'
extClass = '.Shqqaa'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
3 changes: 2 additions & 1 deletion src/de/mangatube/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ext {
extName = 'Manga Tube'
extClass = '.MangaTube'
extVersionCode = 2
extVersionCode = 3
isNsfw = true
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/alandal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Alandal'
extClass = '.Alandal'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/asurascans/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Asura Scans'
extClass = '.AsuraScans'
extVersionCode = 58
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/aurora/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'aurora'
extClass = '.Aurora'
extVersionCode = 4
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/bakkinselfhosted/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ext {
extClass = '.BakkinSelfHosted'
themePkg = 'bakkin'
overrideVersionCode = 0
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/batcave/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'BatCave'
extClass = '.BatCave'
extVersionCode = 5
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/broccolisoup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Broccoli Soup'
extClass = '.BroccoliSoup'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Expand Down
1 change: 1 addition & 0 deletions src/en/clonemanga/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Clone Manga'
extClass = '.CloneManga'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
2 changes: 1 addition & 1 deletion src/en/collectedcurios/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ext {
extName = 'Collected Curios'
extClass = '.Collectedcurios'
extVersionCode = 2
isNsfw = false
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/darklegacycomics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Dark Legacy Comics'
extClass = '.DarkLegacyComics'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/darkscience/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Dark Science'
extClass = '.DarkScience'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/darthsdroids/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Darths & Droids'
extClass = '.DarthsDroids'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/elanschool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Elan School'
extClass = '.ElanSchool'
extVersionCode = 1
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/existentialcomics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Existential Comics'
extClass = '.ExistentialComics'
extVersionCode = 4
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/explosm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Cyanide & Happiness'
extClass = '.Explosm'
extVersionCode = 4
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/flamecomics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Flame Comics'
extClass = '.FlameComics'
extVersionCode = 47
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/goda/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ext {
extClass = '.Goda'
themePkg = 'goda'
overrideVersionCode = 0
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/gunnerkriggcourt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Gunnerkrigg Court'
extClass = '.GunnerkriggCourt'
extVersionCode = 2
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/hiveworks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Hiveworks Comics'
extClass = '.Hiveworks'
extVersionCode = 11
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/honkaiimpact/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'HonkaiImpact3'
extClass = '.Honkaiimpact'
extVersionCode = 3
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/keenspot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'keenspot'
extClass = '.KeenspotFactory'
extVersionCode = 3
isNsfw = false
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/killsixbilliondemons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Kill Six Billion Demons'
extClass = '.KillSixBillionDemons'
extVersionCode = 5
isNsfw = false
}

apply from: "$rootDir/common.gradle"
3 changes: 2 additions & 1 deletion src/en/likemanga/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ext {
extName = 'LikeManga'
extClass = '.LikeManga'
extVersionCode = 5
extVersionCode = 6
isNsfw = true
}

apply from: "$rootDir/common.gradle"
1 change: 1 addition & 0 deletions src/en/loadingartist/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ext {
extName = 'Loading Artist'
extClass = '.LoadingArtist'
extVersionCode = 3
isNsfw = false
}

apply from: "$rootDir/common.gradle"
Loading
Loading