Skip to content
This repository was archived by the owner on Nov 20, 2021. It is now read-only.

Commit e4ce3e4

Browse files
committed
Deprecate
1 parent eb45773 commit e4ce3e4

File tree

9 files changed

+68
-16
lines changed

9 files changed

+68
-16
lines changed

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# PythonCoderAS Sources
1+
**Deprecated: I will no longer update these extensions. Please use other extensions as a replacement.**
2+
3+
# PythonCoderAS Sources
24
Misc. sources for scanlators and aggregators.
35

46
# Websites

Diff for: src/CatManga/CatManga.ts

+18-4
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,41 @@ import {
22
Chapter,
33
ChapterDetails,
44
HomeSection,
5-
Manga, MangaTile, MangaUpdates,
5+
Manga,
6+
MangaTile,
7+
MangaUpdates,
68
PagedResults,
7-
Request, RequestManager,
9+
Request,
10+
RequestManager,
811
SearchRequest,
912
Source,
1013
SourceInfo,
14+
TagType,
1115
} from "paperback-extensions-common"
1216
import {CatMangaParser} from "./CatMangaParser";
1317

1418
const BASE = "https://catmanga.org"
1519

1620
export const CatMangaInfo: SourceInfo = {
1721
icon: "icon.png",
18-
version: "1.2.9",
22+
version: "1.2.10",
1923
name: "CatManga",
2024
author: "PythonCoderAS",
2125
authorWebsite: "https://github.com/PythonCoderAS",
2226
description: "Extension that pulls manga from CatManga",
2327
language: "en",
2428
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+
]
2640
}
2741

2842
export class CatManga extends Source {

Diff for: src/DankeFurs/DankeFurs.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const BASE = "https://danke.moe"
55

66
export const DankeFursInfo: SourceInfo = {
77
icon: "icon.png",
8-
version: "1.1.2",
8+
version: "1.1.3",
99
name: "DankeFurs",
1010
author: "PythonCoderAS",
1111
authorWebsite: "https://github.com/PythonCoderAS",
@@ -21,6 +21,10 @@ export const DankeFursInfo: SourceInfo = {
2121
{
2222
text: "Cloudflare",
2323
type: TagType.RED
24+
},
25+
{
26+
text: "Deprecated - Will Not Be Updated",
27+
type: TagType.RED
2428
}
2529
]
2630
}

Diff for: src/Dridespoon/Dridespoon.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const BASE = "http://dridesp.ooo"
2121

2222
export const DridespoonInfo: SourceInfo = {
2323
icon: "icon.png",
24-
version: "1.0.0",
24+
version: "1.0.1",
2525
name: "Dridespoon",
2626
author: "PythonCoderAS",
2727
authorWebsite: "https://github.com/PythonCoderAS",
@@ -33,6 +33,14 @@ export const DridespoonInfo: SourceInfo = {
3333
{
3434
text: "Notifications",
3535
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
3644
}
3745
]
3846
}

Diff for: src/Hachirumi/Hachirumi.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const BASE = "https://hachirumi.com"
55

66
export const HachirumiInfo: SourceInfo = {
77
icon: "icon.png",
8-
version: "1.1.0",
8+
version: "1.1.1",
99
name: "Hachirumi",
1010
author: "PythonCoderAS",
1111
authorWebsite: "https://github.com/PythonCoderAS",
@@ -21,6 +21,10 @@ export const HachirumiInfo: SourceInfo = {
2121
{
2222
text: "Cloudflare",
2323
type: TagType.RED
24+
},
25+
{
26+
text: "Deprecated - Will Not Be Updated",
27+
type: TagType.RED
2428
}
2529
]
2630
}

Diff for: src/MahouShoujoBu/MahouShoujoBu.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const BASE = "https://mahoushoujobu.com"
55

66
export const MahouShoujoBuInfo: SourceInfo = {
77
icon: "icon.png",
8-
version: "1.0.5",
8+
version: "1.0.6",
99
name: "MahouShoujoBu",
1010
author: "PythonCoderAS",
1111
authorWebsite: "https://github.com/PythonCoderAS",
@@ -17,6 +17,10 @@ export const MahouShoujoBuInfo: SourceInfo = {
1717
{
1818
text: "Notifications",
1919
type: TagType.GREEN
20+
},
21+
{
22+
text: "Deprecated - Will Not Be Updated",
23+
type: TagType.RED
2024
}
2125
]
2226
}

Diff for: src/NovelCool/NovelCool.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,28 @@ import {
99
SearchRequest,
1010
Source,
1111
SourceInfo,
12-
TagSection,
12+
TagSection, TagType,
1313
} from "paperback-extensions-common"
1414
import {NovelCoolParser} from "./NovelCoolParser";
1515

1616
const BASE = "https://www.novelcool.com"
1717

1818
export const NovelCoolInfo: SourceInfo = {
1919
icon: "icon.png",
20-
version: "1.0.2",
20+
version: "1.0.3",
2121
name: "NovelCool",
2222
author: "PythonCoderAS",
2323
authorWebsite: "https://github.com/PythonCoderAS",
2424
description: "Extension that pulls manga from NovelCool",
2525
language: "en",
2626
hentaiSource: false,
27-
websiteBaseURL: BASE
27+
websiteBaseURL: BASE,
28+
sourceTags: [
29+
{
30+
text: "Deprecated - Will Not Be Updated",
31+
type: TagType.RED
32+
}
33+
]
2834
}
2935

3036
export class NovelCool extends Source {

Diff for: src/RainOfSnow/RainOfSnow.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,28 @@ import {
77
Request, RequestManager,
88
SearchRequest,
99
Source,
10-
SourceInfo,
10+
SourceInfo, TagType,
1111
} from "paperback-extensions-common"
1212
import {RainOfSnowParser} from "./RainOfSnowParser";
1313

1414
const BASE = "https://rainofsnow.com"
1515

1616
export const RainOfSnowInfo: SourceInfo = {
1717
icon: "icon.png",
18-
version: "1.4.1",
18+
version: "1.4.2",
1919
name: "RainOfSnow",
2020
author: "PythonCoderAS",
2121
authorWebsite: "https://github.com/PythonCoderAS",
2222
description: "Extension that pulls manga from RainOfSnow",
2323
language: "en",
2424
hentaiSource: false,
25-
websiteBaseURL: BASE
25+
websiteBaseURL: BASE,
26+
sourceTags: [
27+
{
28+
text: "Deprecated - Will Not Be Updated",
29+
type: TagType.RED
30+
}
31+
]
2632
}
2733

2834
export class RainOfSnow extends Source {

Diff for: src/SenManga/SenManga.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const BASE = "https://raw.senmanga.com"
1717

1818
export const SenMangaInfo: SourceInfo = {
1919
icon: "icon.png",
20-
version: "1.0.4",
20+
version: "1.0.5",
2121
name: "SenManga",
2222
author: "PythonCoderAS",
2323
authorWebsite: "https://github.com/PythonCoderAS",
@@ -29,6 +29,10 @@ export const SenMangaInfo: SourceInfo = {
2929
{
3030
text: "Notifications",
3131
type: TagType.GREEN
32+
},
33+
{
34+
text: "Deprecated - Will Not Be Updated",
35+
type: TagType.RED
3236
}
3337
]
3438
}

0 commit comments

Comments
 (0)