Manga latest downloaded and available via SQL Queries

This commit is contained in:
2024-12-18 16:42:59 +01:00
parent 5494f2b754
commit 55c0e2c4e7
14 changed files with 16 additions and 24 deletions

View File

@ -110,7 +110,7 @@ public class AsuraToon : MangaConnector
uint year = uint.Parse(firstChapterNode?.InnerText.Split(' ')[^1] ?? "2000");
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -112,7 +112,7 @@ public class Bato : MangaConnector
}
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -175,7 +175,7 @@ public class MangaDex : MangaConnector
List<Author> authors = authorNames.Select(a => new Author(a)).ToList();
Manga pub = new (publicationId, sortName, description, $"https://mangadex.org/title/{publicationId}", coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -100,7 +100,7 @@ public class MangaHere : MangaConnector
string description = descriptionNode.InnerText;
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, 0,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -140,7 +140,7 @@ public class MangaKatana : MangaConnector
List<MangaAltTitle> altTitles = altTitlesDict.Select(x => new MangaAltTitle(x.Key, x.Value)).ToList();
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -119,7 +119,7 @@ public class MangaLife : MangaConnector
string description = descriptionNode.InnerText;
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -135,7 +135,7 @@ public class Manganato : MangaConnector
CultureInfo.InvariantCulture).Year;
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -149,7 +149,7 @@ public class Mangasee : MangaConnector
string description = descriptionNode.InnerText;
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -116,7 +116,7 @@ public class Mangaworld : MangaConnector
uint year = uint.Parse(yearString);
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -121,7 +121,7 @@ public class ManhuaPlus : MangaConnector
string description = descriptionNode.InnerText;
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,

View File

@ -113,7 +113,7 @@ public class Weebcentral : MangaConnector
var originalLanguage = "";
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
originalLanguage, releaseStatus, -1,
this,
authors,
mangaTags,