Skip to content

Commit 33e0402

Browse files
committed
version 0.2.0
1 parent b1d758b commit 33e0402

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Minimalistic podcast player usable on handheld devices.
2121
[grpc](https://grpc.io/),
2222
[pugixml](https://github.com/zeux/pugixml),
2323
[tidy-html5](https://github.com/htacg/tidy-html5),
24+
[utfcpp](https://github.com/nemtrif/utfcpp),
2425
[Noto fonts](https://fonts.google.com/noto)
2526

2627
## Install

changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# 0.2.0
2+
3+
- Fix html description parsing (&nbsp)
4+
- Fix downloading episode urls with extra query arguments
5+
- Filter out zero width spaces
6+
- Prefix download path with podcast feed hash
7+
- Add description parsing test
8+
- Add czech language font glyphs
9+
10+
# 0.1.1
11+
12+
Follow redirects when downloading feeds
13+
114
# 0.1.0
215

316
Initial version

podcaster/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct Version {
1414
int patch;
1515
};
1616

17-
constexpr Version Current() { return {0, 1, 0}; }
17+
constexpr Version Current() { return {0, 2, 0}; }
1818

1919
inline std::string ToString() {
2020
const Version version = Current();

0 commit comments

Comments
 (0)