This repository was archived by the owner on Nov 20, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +68
-16
lines changed
Expand file tree Collapse file tree 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
24Misc. sources for scanlators and aggregators.
35
46# Websites
Original file line number Diff line number Diff 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"
1216import { CatMangaParser } from "./CatMangaParser" ;
1317
1418const BASE = "https://catmanga.org"
1519
1620export 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
2842export class CatManga extends Source {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const BASE = "https://danke.moe"
55
66export 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}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const BASE = "http://dridesp.ooo"
2121
2222export 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}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const BASE = "https://hachirumi.com"
55
66export 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}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const BASE = "https://mahoushoujobu.com"
55
66export 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}
Original file line number Diff line number Diff line change @@ -9,22 +9,28 @@ import {
99 SearchRequest ,
1010 Source ,
1111 SourceInfo ,
12- TagSection ,
12+ TagSection , TagType ,
1313} from "paperback-extensions-common"
1414import { NovelCoolParser } from "./NovelCoolParser" ;
1515
1616const BASE = "https://www.novelcool.com"
1717
1818export 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
3036export class NovelCool extends Source {
Original file line number Diff line number Diff line change @@ -7,22 +7,28 @@ import {
77 Request , RequestManager ,
88 SearchRequest ,
99 Source ,
10- SourceInfo ,
10+ SourceInfo , TagType ,
1111} from "paperback-extensions-common"
1212import { RainOfSnowParser } from "./RainOfSnowParser" ;
1313
1414const BASE = "https://rainofsnow.com"
1515
1616export 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
2834export class RainOfSnow extends Source {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const BASE = "https://raw.senmanga.com"
1717
1818export 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}
You can’t perform that action at this time.
0 commit comments