Skip to content

Commit

Permalink
Documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
bohdanbobrowski committed Sep 9, 2024
1 parent daf8086 commit 813742c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,15 @@ And then to create dmg image with app:
<img src="assets/v1.3.0/blog2epub_macos_screenshot.png" width="600px" />
</p>

### Android (Google Pixel 6a)

<p align="center">
<img src="assets/v1.4.0/blog2pub_android_pixel6a_screenshot1.png" width="200px" />
<img src="assets/v1.4.0/blog2pub_android_pixel6a_screenshot2.png" width="200px" />
<img src="assets/v1.4.0/blog2pub_android_pixel6a_screenshot3.png" width="200px" />
<img src="assets/v1.4.0/blog2pub_android_pixel6a_screenshot4.png" width="200px" />
</p>

## CLI

poetry run blog2epub [blog url] <parameters>
Expand All @@ -105,7 +114,7 @@ And then to create dmg image with app:
- [X] mypy and ruff pipeline job (via github Actions)
- [ ] unittesting
- [ ] huge crawlers refactor
- [ ] Android build
- [X] Android build

[&raquo; Complete Change Log here &laquo;](https://github.com/bohdanbobrowski/blog2epub/blob/master/CHANGELOG.md)

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion blog2epub/blog2epub_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,8 @@ def open_ebook_in_default_viewer(inst):
if platform == "win":
os.startfile(ebook.file_full_path)
elif platform == "android":
webbrowser.open(f"xdg-open://{ebook.file_full_path}")
# TODO: Fix this
webbrowser.open(f"file://{ebook.file_full_path}")
else:
opener = "open" if sys.platform == "osx" else "xdg-open"
subprocess.call([opener, ebook.file_full_path])
Expand Down

0 comments on commit 813742c

Please sign in to comment.