Skip to content

Commit

Permalink
Updated the README for arm users and made further improvements to the…
Browse files Browse the repository at this point in the history
… Book List page
  • Loading branch information
crocodilestick committed Nov 4, 2024
1 parent 2ead91e commit 4ebf28d
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 14 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,11 @@ services:
restart: unless-stopped

```
- **Explanation of the Container Bindings:**
### ATTENTION ARM DEVICE USERS ⚠️
- Currently, `crocodilestick/calibre-web-automated` only supports `x86/amd64` architectures (though this will hopefully be sorted in the near future through sucsessful utilisation of `docker buildx`)
- In the meantime, please use the `driftywinds/cwa:latest` image maintained by the wonderful [@driftywinds](https://github.com/driftywinds)
---
### Explanation of the Container Bindings:
- Make sure all 3 of the main bindings are separate directories, errors can occur when binds are made within other binds
- `/config` - This is used to store logs and other miscellaneous files that keep CWA running
- **New Users** - Use any empty folder (if you run into any issues, make sure the ownership of said folder isn't `root:root` in your main os)
Expand Down
52 changes: 44 additions & 8 deletions root/app/calibre-web/cps/static/css/caliBlur.css

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

12 changes: 8 additions & 4 deletions root/app/calibre-web/cps/templates/book_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,14 @@ <h2 class="{{page}}">{{_(title)}}</h2>
<div>
<br>
<div class="filterheader" style="display: inline-block;">
<input type="checkbox" id="autoupdate_titlesort" name="autoupdate_titlesort" checked>
<label for="autoupdate_titlesort" style="padding-left: 0.4em">{{_('Update Title Sort automatically ')}}</label>
<input type="checkbox" id="autoupdate_authorsort" name="autoupdate_authorsort" checked>
<label for="autoupdate_authorsort" style="padding-left: 0.4em">{{_('Update Author Sort automatically')}}</label>
<div style="display: inline-block; padding-inline-start: 10px;">
<input type="checkbox" id="autoupdate_titlesort" name="autoupdate_titlesort" checked>
<label for="autoupdate_titlesort" style="padding-left: 0.4em">{{_('Update Title Sort automatically ')}}</label>
</div>
<div style="display: inline-block; padding-inline-start: 10px;">
<input type="checkbox" id="autoupdate_authorsort" name="autoupdate_authorsort" checked>
<label for="autoupdate_authorsort" style="padding-left: 0.4em">{{_('Update Author Sort automatically')}}</label>
</div>
</div>
</div>

Expand Down

0 comments on commit 4ebf28d

Please sign in to comment.