-
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.
Signed-off-by: Jonas Aaberg <[email protected]>
- Loading branch information
Showing
7 changed files
with
103 additions
and
20 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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 Jonas Aaberg | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,43 @@ | ||
# Jomics | ||
|
||
Jomics is a simple comic reader server. It supports cbz and cbr and can handle folders. | ||
It has some basic `ComicInfo.xml` support. (Probably it can be developed further.) | ||
|
||
![jomics](jomics.png "Jomics screenshot") | ||
|
||
## Installation | ||
|
||
You need a go compiler, probably a pretty new version. Clone the repo, and run | ||
|
||
`go get && go build` | ||
|
||
All data will be embedded into the `jomics` binary. | ||
|
||
## Usage | ||
``` | ||
Usage of ./jomics: | ||
-addr string | ||
Server address. (default ":8080") | ||
-root string | ||
Comic collection root. (default ".") | ||
-th int | ||
Front page thumb nail size. (default 400) | ||
``` | ||
And point your favorite browser to `localhost:8080` if you are using the address. | ||
|
||
## Security | ||
There is none. It is just a comics reader server. | ||
|
||
## Third party packages | ||
* The folder icon is taken from http://www.clker.com/clipart-simple-file-folder.html (resized & included) | ||
* The CSS framework used https://picocss.com/ (included) | ||
* http://github.com/OpenPeeDeeP/xdg for cache directory. | ||
* http://github.com/disintegration/imaging is used to resize images. | ||
* http://github.com/gen2brain/go-unarr for uncompressing zip and rar archives. | ||
|
||
## TODO | ||
Currently jomics is feature complete. I have no plans to add any features, but it might change once I've used jomics for some time. | ||
|
||
## License | ||
MIT | ||
|
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,7 +1,4 @@ | ||
TODO: | ||
|
||
- progress bar when loading new albums | ||
- Remove ([text]) hooks at end | ||
- json file as config | ||
- alpha channel broken for folders | ||
- folder.jpg embedd in folder icon |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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