This repository was archived by the owner on Nov 20, 2021. It is now read-only.
File tree 9 files changed +68
-16
lines changed
9 files changed +68
-16
lines changed Original file line number Diff line number Diff line change 1
- # PythonCoderAS Sources
1
+ ** Deprecated: I will no longer update these extensions. Please use other extensions as a replacement.**
2
+
3
+ # PythonCoderAS Sources
2
4
Misc. sources for scanlators and aggregators.
3
5
4
6
# Websites
Original file line number Diff line number Diff line change @@ -2,27 +2,41 @@ import {
2
2
Chapter ,
3
3
ChapterDetails ,
4
4
HomeSection ,
5
- Manga , MangaTile , MangaUpdates ,
5
+ Manga ,
6
+ MangaTile ,
7
+ MangaUpdates ,
6
8
PagedResults ,
7
- Request , RequestManager ,
9
+ Request ,
10
+ RequestManager ,
8
11
SearchRequest ,
9
12
Source ,
10
13
SourceInfo ,
14
+ TagType ,
11
15
} from "paperback-extensions-common"
12
16
import { CatMangaParser } from "./CatMangaParser" ;
13
17
14
18
const BASE = "https://catmanga.org"
15
19
16
20
export const CatMangaInfo : SourceInfo = {
17
21
icon : "icon.png" ,
18
- version : "1.2.9 " ,
22
+ version : "1.2.10 " ,
19
23
name : "CatManga" ,
20
24
author : "PythonCoderAS" ,
21
25
authorWebsite : "https://github.com/PythonCoderAS" ,
22
26
description : "Extension that pulls manga from CatManga" ,
23
27
language : "en" ,
24
28
hentaiSource : false ,
25
- websiteBaseURL : BASE
29
+ websiteBaseURL : BASE ,
30
+ sourceTags : [
31
+ {
32
+ text : "Site Down Forever" ,
33
+ type : TagType . RED
34
+ } ,
35
+ {
36
+ text : "Deprecated - Will Not Be Updated" ,
37
+ type : TagType . RED
38
+ }
39
+ ]
26
40
}
27
41
28
42
export class CatManga extends Source {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const BASE = "https://danke.moe"
5
5
6
6
export const DankeFursInfo : SourceInfo = {
7
7
icon : "icon.png" ,
8
- version : "1.1.2 " ,
8
+ version : "1.1.3 " ,
9
9
name : "DankeFurs" ,
10
10
author : "PythonCoderAS" ,
11
11
authorWebsite : "https://github.com/PythonCoderAS" ,
@@ -21,6 +21,10 @@ export const DankeFursInfo: SourceInfo = {
21
21
{
22
22
text : "Cloudflare" ,
23
23
type : TagType . RED
24
+ } ,
25
+ {
26
+ text : "Deprecated - Will Not Be Updated" ,
27
+ type : TagType . RED
24
28
}
25
29
]
26
30
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const BASE = "http://dridesp.ooo"
21
21
22
22
export const DridespoonInfo : SourceInfo = {
23
23
icon : "icon.png" ,
24
- version : "1.0.0 " ,
24
+ version : "1.0.1 " ,
25
25
name : "Dridespoon" ,
26
26
author : "PythonCoderAS" ,
27
27
authorWebsite : "https://github.com/PythonCoderAS" ,
@@ -33,6 +33,14 @@ export const DridespoonInfo: SourceInfo = {
33
33
{
34
34
text : "Notifications" ,
35
35
type : TagType . GREEN
36
+ } ,
37
+ {
38
+ text : "Site Down Forever" ,
39
+ type : TagType . RED
40
+ } ,
41
+ {
42
+ text : "Deprecated - Will Not Be Updated" ,
43
+ type : TagType . RED
36
44
}
37
45
]
38
46
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const BASE = "https://hachirumi.com"
5
5
6
6
export const HachirumiInfo : SourceInfo = {
7
7
icon : "icon.png" ,
8
- version : "1.1.0 " ,
8
+ version : "1.1.1 " ,
9
9
name : "Hachirumi" ,
10
10
author : "PythonCoderAS" ,
11
11
authorWebsite : "https://github.com/PythonCoderAS" ,
@@ -21,6 +21,10 @@ export const HachirumiInfo: SourceInfo = {
21
21
{
22
22
text : "Cloudflare" ,
23
23
type : TagType . RED
24
+ } ,
25
+ {
26
+ text : "Deprecated - Will Not Be Updated" ,
27
+ type : TagType . RED
24
28
}
25
29
]
26
30
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const BASE = "https://mahoushoujobu.com"
5
5
6
6
export const MahouShoujoBuInfo : SourceInfo = {
7
7
icon : "icon.png" ,
8
- version : "1.0.5 " ,
8
+ version : "1.0.6 " ,
9
9
name : "MahouShoujoBu" ,
10
10
author : "PythonCoderAS" ,
11
11
authorWebsite : "https://github.com/PythonCoderAS" ,
@@ -17,6 +17,10 @@ export const MahouShoujoBuInfo: SourceInfo = {
17
17
{
18
18
text : "Notifications" ,
19
19
type : TagType . GREEN
20
+ } ,
21
+ {
22
+ text : "Deprecated - Will Not Be Updated" ,
23
+ type : TagType . RED
20
24
}
21
25
]
22
26
}
Original file line number Diff line number Diff line change @@ -9,22 +9,28 @@ import {
9
9
SearchRequest ,
10
10
Source ,
11
11
SourceInfo ,
12
- TagSection ,
12
+ TagSection , TagType ,
13
13
} from "paperback-extensions-common"
14
14
import { NovelCoolParser } from "./NovelCoolParser" ;
15
15
16
16
const BASE = "https://www.novelcool.com"
17
17
18
18
export const NovelCoolInfo : SourceInfo = {
19
19
icon : "icon.png" ,
20
- version : "1.0.2 " ,
20
+ version : "1.0.3 " ,
21
21
name : "NovelCool" ,
22
22
author : "PythonCoderAS" ,
23
23
authorWebsite : "https://github.com/PythonCoderAS" ,
24
24
description : "Extension that pulls manga from NovelCool" ,
25
25
language : "en" ,
26
26
hentaiSource : false ,
27
- websiteBaseURL : BASE
27
+ websiteBaseURL : BASE ,
28
+ sourceTags : [
29
+ {
30
+ text : "Deprecated - Will Not Be Updated" ,
31
+ type : TagType . RED
32
+ }
33
+ ]
28
34
}
29
35
30
36
export class NovelCool extends Source {
Original file line number Diff line number Diff line change @@ -7,22 +7,28 @@ import {
7
7
Request , RequestManager ,
8
8
SearchRequest ,
9
9
Source ,
10
- SourceInfo ,
10
+ SourceInfo , TagType ,
11
11
} from "paperback-extensions-common"
12
12
import { RainOfSnowParser } from "./RainOfSnowParser" ;
13
13
14
14
const BASE = "https://rainofsnow.com"
15
15
16
16
export const RainOfSnowInfo : SourceInfo = {
17
17
icon : "icon.png" ,
18
- version : "1.4.1 " ,
18
+ version : "1.4.2 " ,
19
19
name : "RainOfSnow" ,
20
20
author : "PythonCoderAS" ,
21
21
authorWebsite : "https://github.com/PythonCoderAS" ,
22
22
description : "Extension that pulls manga from RainOfSnow" ,
23
23
language : "en" ,
24
24
hentaiSource : false ,
25
- websiteBaseURL : BASE
25
+ websiteBaseURL : BASE ,
26
+ sourceTags : [
27
+ {
28
+ text : "Deprecated - Will Not Be Updated" ,
29
+ type : TagType . RED
30
+ }
31
+ ]
26
32
}
27
33
28
34
export class RainOfSnow extends Source {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const BASE = "https://raw.senmanga.com"
17
17
18
18
export const SenMangaInfo : SourceInfo = {
19
19
icon : "icon.png" ,
20
- version : "1.0.4 " ,
20
+ version : "1.0.5 " ,
21
21
name : "SenManga" ,
22
22
author : "PythonCoderAS" ,
23
23
authorWebsite : "https://github.com/PythonCoderAS" ,
@@ -29,6 +29,10 @@ export const SenMangaInfo: SourceInfo = {
29
29
{
30
30
text : "Notifications" ,
31
31
type : TagType . GREEN
32
+ } ,
33
+ {
34
+ text : "Deprecated - Will Not Be Updated" ,
35
+ type : TagType . RED
32
36
}
33
37
]
34
38
}
You can’t perform that action at this time.
0 commit comments