File tree Expand file tree Collapse file tree 5 files changed +17
-5
lines changed
Logic/Getters/LibSocial/NewSocialLib Expand file tree Collapse file tree 5 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 4
4
<TargetFramework >net8.0</TargetFramework >
5
5
<LangVersion >latestmajor</LangVersion >
6
6
<PackageId >Core</PackageId >
7
- <Version >2.4.1 </Version >
7
+ <Version >2.5.0 </Version >
8
8
<GenerateEmbeddedFilesManifest >true</GenerateEmbeddedFilesManifest >
9
9
</PropertyGroup >
10
10
Original file line number Diff line number Diff line change 3
3
4
4
namespace Core . Logic . Getters . LibSocial . NewSocialLib ;
5
5
6
- public class HentaiLibGetter : MangalibLibGetterBase {
6
+ public class HentaiLibGetter : MangaLibGetterBase {
7
7
public HentaiLibGetter ( BookGetterConfig config ) : base ( config ) { }
8
8
9
9
protected override Uri ImagesHost => new ( "https://img3.imglib.info/" ) ;
Original file line number Diff line number Diff line change 3
3
4
4
namespace Core . Logic . Getters . LibSocial . NewSocialLib ;
5
5
6
- public class MangaLibGetter : MangalibLibGetterBase {
6
+ public class MangaLibGetter : MangaLibGetterBase {
7
7
public MangaLibGetter ( BookGetterConfig config ) : base ( config ) { }
8
8
9
9
protected override Uri ImagesHost => new ( "https://img33.imgslib.link/" ) ;
Original file line number Diff line number Diff line change 6
6
7
7
namespace Core . Logic . Getters . LibSocial . NewSocialLib ;
8
8
9
- public abstract class MangalibLibGetterBase : NewLibSocialGetterBase {
10
- protected MangalibLibGetterBase ( BookGetterConfig config ) : base ( config ) { }
9
+ public abstract class MangaLibGetterBase : NewLibSocialGetterBase {
10
+ protected MangaLibGetterBase ( BookGetterConfig config ) : base ( config ) { }
11
11
12
12
protected override HtmlDocument ResponseToHtmlDoc ( SocialLibBookChapter chapterResponse ) {
13
13
var sb = new StringBuilder ( ) ;
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using Core . Configs ;
3
+
4
+ namespace Core . Logic . Getters . LibSocial . NewSocialLib ;
5
+
6
+ public class MangaLibOrgGetter : MangaLibGetterBase {
7
+ public MangaLibOrgGetter ( BookGetterConfig config ) : base ( config ) { }
8
+
9
+ protected override Uri ImagesHost => new ( "https://img33.imgslib.link/" ) ;
10
+
11
+ protected override Uri SystemUrl => new ( "https://mangalib.org/" ) ;
12
+ }
You can’t perform that action at this time.
0 commit comments