File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 8
8
9
9
Chytanka supports opening episodes from the following platforms:
10
10
11
- - [x] [ Blankary] ( https://blankary.com )
11
+ - [x] ~~ [ Blankary] ( https://blankary.com ) ~~ (image support has been discontinued )
12
12
- [x] [ Comick] ( https://comick.io )
13
13
- [x] [ Imgur] ( https://imgur.com )
14
14
- [x] [ Mangadex] ( https://mangadex.org )
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export class ZenkoService {
32
32
33
33
images : ( data . pages . map ( ( item : any ) => {
34
34
return {
35
- src : item . imgUrl
35
+ src : item . imgUrl || item . content
36
36
} ;
37
37
} ) ) . filter ( ( i : any ) => i . src ) . map ( ( img : any ) => { return { src : this . proxy . proxyUrl ( `https://zenko.b-cdn.net/${ img . src } ?optimizer=image&width=900&quality=90&height=auto` ) } } )
38
38
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export const BLANKARY_PATH = 'blankary';
31
31
export const FILE_PATH = 'file' ;
32
32
33
33
const linkParserMod : LoadChildrenCallback = ( ) => import ( './link-parser/link-parser.module' ) . then ( m => m . LinkParserModule )
34
- const blankaryMod = ( ) => import ( './@site-modules/blankary/blankary-shell.component' )
34
+ // const blankaryMod = () => import('./@site-modules/blankary/blankary-shell.component')
35
35
const comickMod = ( ) => import ( './@site-modules/comick/comick-shell.component' )
36
36
const imgurMod = ( ) => import ( './@site-modules/imgur/imgur-shell.component' )
37
37
const mangadexMod = ( ) => import ( './@site-modules/mangadex/mangadex-shell.component' )
@@ -49,7 +49,7 @@ const COMPARE_OUTLET_NAME = 'right'
49
49
type LoadComponentType = ( ( ) => Type < unknown > | Observable < Type < unknown > | DefaultExport < Type < unknown > > > | Promise < Type < unknown > | DefaultExport < Type < unknown > > > ) | undefined ;
50
50
51
51
const siteModulesMap = new Map < string , LoadComponentType > ( )
52
- . set ( BLANKARY_PATH + '/:id' , blankaryMod )
52
+ // .set(BLANKARY_PATH + '/:id', blankaryMod)
53
53
. set ( COMICK_PATH + '/:id' , comickMod )
54
54
. set ( IMGUR_PATH + '/:id' , imgurMod )
55
55
. set ( MANGADEX_PATH + '/:id' , mangadexMod )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class LinkParserService {
17
17
"Comick" ,
18
18
"NHentai" ,
19
19
"Yandere Pools" ,
20
- "Blankary" ,
20
+ // "Blankary",
21
21
"Pixiv"
22
22
] . sort ( ) )
23
23
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ export class ParserFormComponent {
44
44
this . parser . parsers . push ( new ComickLinkParser )
45
45
this . parser . parsers . push ( new YandereParser )
46
46
this . parser . parsers . push ( new PixivLinkParser )
47
- this . parser . parsers . push ( new BlankaryLinkParser )
47
+ // this.parser.parsers.push(new BlankaryLinkParser)
48
48
this . parser . parsers . push ( new JsonLinkParser )
49
49
}
50
50
@@ -107,7 +107,7 @@ export class ParserFormComponent {
107
107
comick : '//comick.io/favicon.ico' ,
108
108
yandere : '//yande.re/favicon.ico' ,
109
109
pixiv : '//pixiv.net/favicon.ico' ,
110
- blankary : '//blankary.com/favicon.ico' ,
110
+ // blankary: '//blankary.com/favicon.ico',
111
111
read : 'data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🗯️</text></svg>'
112
112
}
113
113
}
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export class ListShellComponent {
92
92
this . parser . parsers . push ( new ComickLinkParser )
93
93
this . parser . parsers . push ( new YandereParser )
94
94
this . parser . parsers . push ( new PixivLinkParser )
95
- this . parser . parsers . push ( new BlankaryLinkParser )
95
+ // this.parser.parsers.push(new BlankaryLinkParser)
96
96
this . parser . parsers . push ( new JsonLinkParser )
97
97
}
98
98
You can’t perform that action at this time.
0 commit comments