Skip to content
This repository was archived by the owner on Jan 1, 2023. It is now read-only.

Commit 0bab751

Browse files
author
doomsdayrs
committed
Finished refactoring, i will now proclaim 1.0.0
1 parent 030f4db commit 0bab751

File tree

6 files changed

+86
-3
lines changed

6 files changed

+86
-3
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ apply plugin: 'java'
22
apply plugin: 'maven'
33

44
group = 'com.github.Doomsdayrs'
5-
version = '0.9.G'
5+
version = '1.0.0'
66

77
description = """Jikan4java, Java wrapper for the Jikan api"""
88

99
sourceCompatibility = 8
1010
targetCompatibility = 8
1111

1212
repositories {
13-
1413
maven { url "http://repo.maven.apache.org/maven2" }
1514
}
1615
dependencies {

src/main/java/com/github/Doomsdayrs/Jikan4java/connection/Club/ClubConnection.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,20 @@
66
import java.util.concurrent.CompletableFuture;
77

88
/**
9+
* This file is part of Jikan4java.
10+
* Jikan4java is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
* Foobar is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
* You should have received a copy of the GNU General Public License
19+
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
20+
* ====================================================================
921
* Jikan4java
10-
* 05 / January / 2019
22+
* 11 / May / 2019
1123
*
1224
* @author github.com/doomsdayrs
1325
*/

src/main/java/com/github/Doomsdayrs/Jikan4java/exceptions/RequestError.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
package com.github.Doomsdayrs.Jikan4java.exceptions;
22

3+
/**
4+
* This file is part of Jikan4java.
5+
* Jikan4java is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
* Foobar is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
* You should have received a copy of the GNU General Public License
14+
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
15+
* ====================================================================
16+
* Jikan4java
17+
* 11 / May / 2019
18+
*
19+
* @author github.com/doomsdayrs
20+
*/
321
public class RequestError extends Exception {
422
public RequestError() {
523
super();

src/main/java/com/github/Doomsdayrs/Jikan4java/types/Support/enums/Days.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
package com.github.Doomsdayrs.Jikan4java.types.Support.enums;
22

3+
/**
4+
* This file is part of Jikan4java.
5+
* Jikan4java is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
* Foobar is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
* You should have received a copy of the GNU General Public License
14+
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
15+
* ====================================================================
16+
* Jikan4java
17+
* 11 / May / 2019
18+
*
19+
* @author github.com/doomsdayrs
20+
*/
321
public enum Days {
422
MONDAY,
523
TUESDAY,

src/main/java/com/github/Doomsdayrs/Jikan4java/types/Support/enums/Season.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
package com.github.Doomsdayrs.Jikan4java.types.Support.enums;
22

3+
/**
4+
* This file is part of Jikan4java.
5+
* Jikan4java is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
* Foobar is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
* You should have received a copy of the GNU General Public License
14+
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
15+
* ====================================================================
16+
* Jikan4java
17+
* 11 / May / 2019
18+
*
19+
* @author github.com/doomsdayrs
20+
*/
321
public enum Season {
422
SUMMER,
523
SPRING,

src/main/java/com/github/Doomsdayrs/Jikan4java/types/Support/enums/Tops.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
package com.github.Doomsdayrs.Jikan4java.types.Support.enums;
22

3+
/**
4+
* This file is part of Jikan4java.
5+
* Jikan4java is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
* Foobar is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
* You should have received a copy of the GNU General Public License
14+
* along with Jikan4java. If not, see <https://www.gnu.org/licenses/>.
15+
* ====================================================================
16+
* Jikan4java
17+
* 11 / May / 2019
18+
*
19+
* @author github.com/doomsdayrs
20+
*/
321
public enum Tops {
422
ANIME(),
523
MANGA,

0 commit comments

Comments
 (0)