Skip to content

Commit 6b2e533

Browse files
v1.3.0
1 parent 7fa4a02 commit 6b2e533

File tree

3 files changed

+24
-20
lines changed

3 files changed

+24
-20
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
# ChangeLog
22

3-
### [v1.3.0](#1_3_0) - 2024-04-xx?
4-
...
3+
### [v1.3.0](https://github.com/bohdanbobrowski/blog2epub/releases/tag/v1.2.6) - 2024-07-20
4+
- [X] introduce KivyMD
5+
- [X] python poetry instead of venv
6+
- [X] code refactor and cleanup
7+
- [X] add tabbed layout with list of articles
8+
- [X] 2 stages: crawl/download & ebook generation
9+
- [X] selectable list of articles
10+
- [X] feature: prevent epub file overwriting
11+
- [X] feature: cancel download
12+
- [X] fixed bug: chapters were not added to ebook spine, which caused problems with navigation
13+
- [X] Windows and macOS builds
14+
515

616
### [v1.2.6](https://github.com/bohdanbobrowski/blog2epub/releases/tag/v1.2.6) - 2024-03-30
717
- [x] resistance to broken links

README.md

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ Checkout for latest available [builds](https://github.com/bohdanbobrowski/blog2e
5151

5252
poetry run build_gui_windows
5353

54+
#### macOS
55+
56+
Due to a bug - I haven't found out exactly what it is yet - probably in the pyinstaller, all the indicated files are
57+
not copied to the app - so you also need to execute a bash script. This script also creates a dmg image.
58+
59+
poetry run build_gui_macos
60+
./build_macos.sh
61+
5462
## Screenshots of GUI
5563

5664
### Windows (11)
@@ -89,19 +97,9 @@ Checkout for latest available [builds](https://github.com/bohdanbobrowski/blog2e
8997
poetry run blog2epub poznanskiehistorie.blogspot.com -q=100
9098
poetry run blog2epub classicameras.blogspot.com --limit=10 --no-images
9199

92-
## Planned features and known bugs
93-
94-
- [ ] Linux app/package(s)
95-
- [ ] Android app
96-
- [ ] code needs still refactor
97-
- [ ] more crawlers
98-
- [ ] improve GUI - configuration, allow to save in selected place etc.
99-
- [ ] save downloaded page structure to yaml file
100-
101-
## Change Log
102-
103-
### [v1.3.0](#v1.3.0) - release will be published soon
100+
## Current version
104101

102+
### [v1.3.0](https://github.com/bohdanbobrowski/blog2epub/releases/tag/v1.2.6) - 2024-07-20
105103
- [X] introduce KivyMD
106104
- [X] python poetry instead of venv
107105
- [X] code refactor and cleanup
@@ -111,10 +109,6 @@ Checkout for latest available [builds](https://github.com/bohdanbobrowski/blog2e
111109
- [X] feature: prevent epub file overwriting
112110
- [X] feature: cancel download
113111
- [X] fixed bug: chapters were not added to ebook spine, which caused problems with navigation
114-
- [X] windows build
115-
116-
Still TODO in this version:
117-
- [ ] osx screenshots and build
118-
- [ ] linux build
112+
- [X] Windows and macOS builds
119113

120114
[» Complete Change Log here «](https://github.com/bohdanbobrowski/blog2epub/blob/master/CHANGELOG.md)

build_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ if [ -d "./dist/blog2epub.app" ]; then
1515
cp -r ./dist/blog2epub.app ./dist/macos_dng_image/
1616
ln -s /Applications ./dist/macos_dng_image/Applications
1717
hdiutil create /tmp/tmp.dmg -ov -volname "blog2epub" -fs HFS+ -srcfolder "./dist/macos_dng_image/"
18-
hdiutil convert /tmp/tmp.dmg -format UDZO -o ./dist/blog2epub.dmg
18+
hdiutil convert /tmp/tmp.dmg -format UDZO -o ./dist/blog2epub_v1.3.0_macos.dmg
1919
fi

0 commit comments

Comments
 (0)