-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
4,824 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
### Changes Made | ||
|
||
Give Details for all your changes, include an itemized list if you can. | ||
|
||
### Reason of Changes | ||
|
||
Give Reason for these changes, e.g. `input validation is not worked as expected`, or `improve UX`. Also give 2~3 sentence to explain your reason. | ||
|
||
### Checklist: | ||
|
||
- [ ] I have run the new code and ensure the change is work expected | ||
- [ ] I have write/modify comments to important function & hard-to-understand code | ||
- [ ] I have create/modify corresponding test for new changes | ||
- [ ] I have made corresponding changes to the documentation | ||
- [ ] I have run all new & existing test and pass locally with my changes | ||
- [ ] I have checked my code has no misspellings & no warnings | ||
- [ ] I have checked that only essential code remains in this pull request |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"cSpell.words": [ | ||
"assetserver", | ||
"Colour", | ||
"comicinfo", | ||
"GTIN", | ||
"innerxml", | ||
"Komga", | ||
"Penciller", | ||
"wailsapp" | ||
], | ||
"editor.formatOnSave": true, | ||
"editor.unicodeHighlight.includeStrings": false, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[css]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "vscode.json-language-features" | ||
}, | ||
"editor.tabSize": 4, | ||
"editor.detectIndentation": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,31 @@ | ||
# README | ||
# GUI ComicInfo Parser | ||
|
||
## About | ||
|
||
This is the official Wails React-TS template. | ||
[ComicInfo.xml](https://anansi-project.github.io/docs/comicinfo/documentation) is a metadata for manga/comic. It is used in some self-hosted app, e.g. `komga`. | ||
|
||
You can configure the project by editing `wails.json`. More information about the project settings can be found | ||
here: https://wails.io/docs/reference/project-config | ||
This Project is aim to provide a simple GUI for create `ComicInfo.xml` and `.cbz` archive at easy way. | ||
|
||
## Live Development | ||
## Feature Available | ||
|
||
To run in live development mode, run `wails dev` in the project directory. This will run a Vite development | ||
server that will provide very fast hot reload of your frontend changes. If you want to develop in a browser | ||
and have access to your Go methods, there is also a dev server that runs on https://localhost:34115. Connect | ||
to this in your browser, and you can call your Go code from devtools. | ||
### Quick Export (Komga Only) | ||
|
||
## Building | ||
Create a directory that can copy directly to `komga` comic directory. | ||
|
||
To build a redistributable, production mode package, use `wails build`. | ||
Already contains a `.cbz` archive and `ComicInfo.xml` at correct location. | ||
|
||
## Develop | ||
|
||
This project using `go` language, with `wails` framework and `react` typescript as frontend. | ||
|
||
### Live Development Mode | ||
|
||
To run in live development mode, run `wails dev` in the project directory. | ||
|
||
This will run a Vite development server that will provide very fast hot reload of your frontend changes. | ||
|
||
If you want to develop in a browser and have access to your Go methods, there is also a dev server that runs on https://localhost:34115. Connect to this in your browser, and you can call your Go code from devtools. | ||
|
||
### Building | ||
|
||
To build a re-distributable, production mode package, use `wails build`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"/> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport"/> | ||
<title>Gui-comicInfo-Parser</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script src="./src/main.tsx" type="module"></script> | ||
</body> | ||
<html lang="en" data-bs-theme="dark"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta content="width=device-width, initial-scale=1.0" name="viewport" /> | ||
<title>Gui-comicInfo-Parser</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script src="./src/main.tsx" type="module"></script> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.