Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Merge from upstream + expose more functions + build files refactoration #9

Merged
merged 30 commits into from
Dec 17, 2023
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
762e3a1
Add Preference#setVisible stub
arkon Jul 10, 2023
76351ec
Increase compile/target SDK
arkon Aug 26, 2023
ad582d4
chore: Suppress unused warnings
Claudemirovsky Nov 27, 2023
6f4e156
feat: Add replacement suspend functions in AnimeSource interface
arkon Sep 3, 2023
e1d4fbd
Add support to kotlin.time APIs in the rate limit interceptor (#10)
alessandrojean Aug 4, 2023
bb6443d
feat: Expose more suspend functions
Claudemirovsky Nov 28, 2023
858521d
chore: Rename UpdateStrategy to AnimeUpdateStrategy
Claudemirovsky Nov 28, 2023
353bdf8
Make source ID generation function reusable to extensions (#11)
alessandrojean Aug 12, 2023
bad6dcf
Share HttpException from the app with the extensions-lib. (#12)
alessandrojean Aug 19, 2023
1587f70
chore: Bump Jsoup version
Claudemirovsky Nov 28, 2023
2eea64e
chore!: Update gradle wrapper
Claudemirovsky Dec 16, 2023
8d772d6
refactor: Convert groovy files to kotlin
Claudemirovsky Dec 16, 2023
37403e9
chore: Bump AGP
Claudemirovsky Dec 16, 2023
1e4b18d
refactor: Use version catalog
Claudemirovsky Dec 16, 2023
338d092
chore: Bump kotlin version
Claudemirovsky Dec 16, 2023
17db557
fix: Fix jvmTarget incompatibility
Claudemirovsky Dec 16, 2023
bbc5868
chore: Bump Dokka
Claudemirovsky Dec 16, 2023
73e86ae
feat: Add ResolvableAnimeSource interface
Claudemirovsky Dec 16, 2023
8642b9c
chore: Add deprecated annotation to NetworkHelper.cloudflareClient val
Claudemirovsky Dec 16, 2023
30df299
feat: Expose NetworkHelper.defaultUserAgentProvider function
Claudemirovsky Dec 16, 2023
52c58be
feat: Add parallelCatchingFlatMap util & remove rarely-used coroutine…
Claudemirovsky Dec 16, 2023
74b5921
docs: Document utility methods
Claudemirovsky Dec 16, 2023
ba3f637
feat: Make coroutine extensions non-blocking
Claudemirovsky Dec 16, 2023
ebfa4e8
feat: Expose Call.awaitSuccess extension function
Claudemirovsky Dec 16, 2023
8a18b32
chore(CI): Bump actions versions
Claudemirovsky Dec 16, 2023
0bd994b
refactor: Reorder function modifiers in CoroutinesExtensions
Claudemirovsky Dec 16, 2023
b8ef44f
fix: Fix maven publishing
Claudemirovsky Dec 16, 2023
828f03b
feat(coroutines): Add thread-blocking counterparts to parallel functions
Claudemirovsky Dec 17, 2023
8ca37c5
feat: Expose ConfigurableAnimeSource.getSourcePreferences
Claudemirovsky Dec 17, 2023
2a0cef3
docs: Minor fixes
Claudemirovsky Dec 17, 2023
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
Prev Previous commit
Next Next commit
fix: Fix maven publishing
Claudemirovsky committed Dec 16, 2023
commit b8ef44fba0771d85c7fd52ca4baf08c171539df8
8 changes: 4 additions & 4 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -9,7 +9,9 @@ plugins {
alias(libs.plugins.dokka)
}

val version = "14"
val ver = "14"
version = ver
group = "com.github.aniyomiorg"

android {
compileSdk = 34
@@ -51,7 +53,7 @@ tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
named("main") {
moduleName.set("extensions-lib")
moduleVersion.set(version)
moduleVersion.set(ver)
outputDirectory.set(file("build/docs/"))
// Speedup doc generation
// offlineMode.set(true)
@@ -87,9 +89,7 @@ tasks.withType<DokkaTask>().configureEach {
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.aniyomiorg"
artifactId = "extensions-lib"
version = version

afterEvaluate {
from(components["release"])