Skip to content

Commit

Permalink
typo & support bun
Browse files Browse the repository at this point in the history
  • Loading branch information
tachibana-shin committed Oct 17, 2023
1 parent 1261d26 commit bb9f3a7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Binary file added bun.lockb
Binary file not shown.
8 changes: 4 additions & 4 deletions npm/raiku-pgs/lib/API.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,11 @@ export declare class API {
}>
>

getComic(mangaId: ID): Promise<Comic>
getComic(zlugComic: ID): Promise<Comic>
getComicChapter<Fast extends boolean>(
mangaId: ID,
zlugComic: ID,
chapId: ID,
fast: Fast
fast: Fast,
): Promise<
Fast extends true
? ComicChapter
Expand All @@ -286,7 +286,7 @@ export declare class API {
page: number,
comicKey: string
): Promise<Comments>
getListChapters(mangaId: ID): Promise<Chapter[]>
getListChapters(mangaId: ID, mangaParam: string): Promise<Chapter[]>
searchQuickly(keyword: string, page: number): Promise<readonly QuicklyItem[]>
search(keyword: string, page: number): Promise<General>
getRanking(
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"pinia": "^2.0.29",
"pinia-plugin-persistedstate": "^3.2.0",
"quasar": "^2.12.2",
"raiku-pgs": "workspace:^",
"raiku-pgs": "workspace:*",
"register-service-worker": "^1.7.2",
"set-cookie-parser": "^2.6.0",
"swiper": "^9.4.1",
Expand Down Expand Up @@ -192,6 +192,7 @@
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"workspaces": ["npm/*", "src-capacitor"],
"nx": {
"targets": {}
}
Expand Down
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
packages:
- "npm/*"
- src-capacitor
- src-pwa
2 changes: 1 addition & 1 deletion src/components/library/_components/DialogDLManga.vue
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ watch(showDownloadMore, async (state) => {
// load episodes
const episodes = await (
await pluginStore.get(meta.source_id)
).plugin.getListChapters(meta.manga_id)
).plugin.getListChapters(meta.manga_id, meta.manga_param)
allEp.value = episodes
} catch (err) {
$q.notify({
Expand Down

0 comments on commit bb9f3a7

Please sign in to comment.