diff --git a/assets/views/pixivisionCategory.jet.html~ b/assets/views/pixivisionCategory.jet.html~ deleted file mode 100644 index 8a5dca7..0000000 --- a/assets/views/pixivisionCategory.jet.html~ +++ /dev/null @@ -1,31 +0,0 @@ -{{- extends "layout/default" }} -{{- block body() }} -
-
-

{{.Category.Title}}

-

{{.Category.Description}}

- {{- range _, article := .Category.Articles }} -
-
- {{article.Title}} -
- -
- {{- end }} -
-
-{{- end }} diff --git a/doc/dev/roadmap.md b/doc/dev/roadmap.md index 705eac0..db9b5db 100644 --- a/doc/dev/roadmap.md +++ b/doc/dev/roadmap.md @@ -18,10 +18,11 @@ A release version will be published when all features assigned with that version | Features | Release | |-----------------------------------------------------------|---------| | AI/R15/R18/R18-G filtering | 2.9 ✅ | -| Pixivision (articles, tags, categories, RSS) | 2.10 🔁 | -| Full landing page (recommended users, trending tags, ...) | 2.10 🔁 | +| Novel series | 2.9 ✅ | +| Testing | 2.10 🔁 | +| Pixivision (articles, tags, categories, RSS) | 2.10 🔁 | +| Full landing page (recommended users, trending tags, ...) | 2.10 🔁 | | Manga series | N/A | -| Novel series | N/A | | Complete novel content support (furigana, pages, ...) | N/A | | Pixiv Sketch | N/A | | Pixiv Idea (pixiv.net/idea) | N/A | @@ -58,7 +59,7 @@ A release version will be published when all features assigned with that version - [ ] **Manga series** Serialized web comics. - + Example: [Pixiv Manga Series](https://www.pixiv.net/user/13651304/series/171013) - [ ] **Novel series** @@ -90,7 +91,7 @@ A release version will be published when all features assigned with that version There are a lot of sections for the landing page. [Pixiv Landing](https://www.pixiv.net/ajax/top/illust) The artwork parsing part has already been implemented flawlessly. - + We only have to write the frontend code for those sections. - [ ] **Various interesting pages from Pixiv.net:** diff --git a/main_test.go b/main_test.go index 77d2030..bafd475 100644 --- a/main_test.go +++ b/main_test.go @@ -14,7 +14,7 @@ func setup() { var err error if err = playwright.Install(); err != nil { - log.Fatalf("could not install playwright dependencies") + log.Fatalf("could not install playwright dependencies. %s", err) } pw, err = playwright.Run()