-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78f960e
commit 984c342
Showing
6 changed files
with
35 additions
and
24 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 |
---|---|---|
@@ -1,20 +0,0 @@ | ||
# [Unreleased] bugfix release | ||
|
||
## Added | ||
|
||
- The frontpage is now visible. You can see it by going to `/` in the url bar. | ||
(#56) | ||
- The codebase is now tested! I'm pretty sure we are one of the only GTK apps | ||
which has proper UI tests - so this should stop more regressions into the | ||
future! | ||
|
||
## Changed | ||
|
||
- Replaced the markdown engine, should now support more features (#66) | ||
- The alignment in subreddit listings should now be more uniform. (#64) | ||
- The subreddit listings should now be more responsively sized. (#47) | ||
- The url bar is now less lenient on formatting. Previously, going to `/linux` | ||
would take you to `/r/linux`. Due to the frontpage changes, this no longer | ||
happens | ||
- [PACKAGING] Moved icons from pixmaps to the hicolor directory | ||
- [PACKAGING] Change SCSS compiler from ruby sass to sassc | ||
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,26 @@ | ||
# 0.2.1 - “The Bugfix Release” | ||
|
||
It has been great to come back and revitalize this app after 2 years of | ||
neglect. I'm excited about how far this app can be improved, and think this | ||
release makes a good stepping stone towards future features and improvements. | ||
|
||
## Added | ||
|
||
- The frontpage is now visible. You can see it by going to `/` in the url bar. | ||
(#56) | ||
- The app now supports Flatpak & NixOS installation | ||
- Performance improvements in the comments view | ||
- The codebase is now tested! I'm pretty sure this is one of the only GTK+ | ||
apps which has proper UI tests - so this should stop more regressions in the | ||
future! | ||
|
||
## Changed | ||
|
||
- Replaced the markdown engine, should now support more features (#66) | ||
- The alignment in subreddit listings should now be more uniform. (#64) | ||
- Many size related bugs have been fixed (#6, #47, #72) | ||
- The url bar is now less lenient on formatting. Previously, going to `/linux` | ||
would take you to `/r/linux`. Due to the frontpage changes, this no longer | ||
happens | ||
- [PACKAGING] Moved icons from pixmaps to the hicolor directory | ||
- [PACKAGING] Change SCSS compiler from ruby sass to sassc |
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
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
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
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 |
---|---|---|
|
@@ -354,7 +354,8 @@ def __about_cb(self, action, param): | |
authors=['Sam P. <[email protected]>'], | ||
website='https://github.com/samdroid-apps/something-for-reddit', | ||
website_label='Git Repo and Issue Tracker on GitHub', | ||
version='0.2', | ||
# VERSION: | ||
version='0.2.1 - “The Bugfix Release”', | ||
transient_for=self._w, | ||
modal=True) | ||
about_dialog.present() | ||
|