This repository was archived by the owner on Nov 22, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed
src/main/kotlin/moe/ganen/jikankt Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ repositories {
14
14
}
15
15
16
16
dependencies {
17
- implementation 'com.github.GSculerlor:JikanKt:0 .0.1 '
17
+ implementation 'com.github.GSculerlor:JikanKt:1 .0.0 '
18
18
}
19
19
```
20
20
with Maven
@@ -29,7 +29,7 @@ with Maven
29
29
<dependency >
30
30
<groupId >com.github.GSculerlor</groupId >
31
31
<artifactId >JikanKt</artifactId >
32
- <version >0 .0.1 </version >
32
+ <version >1 .0.0 </version >
33
33
</dependency >
34
34
```
35
35
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
4
4
}
5
5
6
6
group = " com.github.GSculerlor"
7
- version = " 0 .0.1 "
7
+ version = " 1 .0.0 "
8
8
9
9
repositories {
10
10
mavenCentral()
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ open class JikanClient {
32
32
33
33
companion object {
34
34
private const val JIKANKT_NAME = " JikanKt"
35
- private const val JIKANKT_VERSION = " 0 .0.1 "
35
+ private const val JIKANKT_VERSION = " 1 .0.0 "
36
36
}
37
37
}
Original file line number Diff line number Diff line change @@ -4,6 +4,21 @@ import com.google.gson.GsonBuilder
4
4
import moe.ganen.jikankt.connection.RestClient
5
5
import moe.ganen.jikankt.models.anime.*
6
6
import moe.ganen.jikankt.models.base.Entity
7
+ import moe.ganen.jikankt.models.character.CharacterPictures
8
+ import moe.ganen.jikankt.models.club.Club
9
+ import moe.ganen.jikankt.models.club.ClubMembers
10
+ import moe.ganen.jikankt.models.genre.Genre
11
+ import moe.ganen.jikankt.models.genre.RequestType
12
+ import moe.ganen.jikankt.models.person.Person
13
+ import moe.ganen.jikankt.models.person.PersonPictures
14
+ import moe.ganen.jikankt.models.prod.Magazine
15
+ import moe.ganen.jikankt.models.prod.Producer
16
+ import moe.ganen.jikankt.models.schedule.Day
17
+ import moe.ganen.jikankt.models.schedule.Schedule
18
+ import moe.ganen.jikankt.models.season.Season
19
+ import moe.ganen.jikankt.models.season.SeasonArchives
20
+ import moe.ganen.jikankt.models.season.SeasonType
21
+ import moe.ganen.jikankt.models.top.*
7
22
import moe.ganen.jikankt.utils.InterfaceAdapter
8
23
import moe.ganen.jikankt.utils.deserialize
9
24
You can’t perform that action at this time.
0 commit comments