Skip to content

Commit

Permalink
Save for 3.7.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Rotter committed Sep 1, 2020
1 parent 3204422 commit 4effd1a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 7 deletions.
15 changes: 9 additions & 6 deletions build.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
#
# This is RSS Guard compilation script for qmake.
#
# Usage:
# a) DEBUG build for testing. (out of source build type)
# cd ../build-dir
# Usage (out of source build type, we have two side by side folders:
# empty "build-dir" and RSS Guard repository "rssguard-dir"):
# a) DEBUG build for testing.
# cd build-dir
# qmake ../rssguard-dir/build.pro -r CONFIG+=debug PREFIX=./usr
# make
# make install
#
# b) RELEASE build for production use. (out of source build type)
# cd ../build-dir
# b) RELEASE build for production use.
# cd build-dir
# qmake ../rssguard-dir/build.pro -r CONFIG+=release PREFIX=./usr
# make
# make install
Expand All @@ -24,7 +25,9 @@
# value of this variable is tweaked automatically.
# PREFIX - specifies base folder to which files are copied during "make install"
# step, defaults to "$$OUT_PWD/usr" on Linux and to "$$OUT_PWD/app" on Windows. Behavior
# of this variable can be mimicked with $INSTALL_ROOT variable on Linux.
# of this variable can be mimicked with $INSTALL_ROOT variable on Linux. Note that
# RSS Guard's installation is automatically relocatable, in other words, no
# absolute OS-dependent paths are used.
#
# Other information:
# - supports Windows, Linux, Mac OS X, Android,
Expand Down
2 changes: 1 addition & 1 deletion pri/vars.pri
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ APP_REVERSE_NAME = "com.github.rssguard"
APP_LOW_H_NAME = ".rssguard"
APP_AUTHOR = "Martin Rotter"
APP_COPYRIGHT = "(C) 2011-2020 $$APP_AUTHOR"
APP_VERSION = "3.7.1"
APP_VERSION = "3.7.2"
APP_LONG_NAME = "$$APP_NAME $$APP_VERSION"
APP_EMAIL = "[email protected]"
APP_URL = "https://github.com/martinrotter/rssguard"
Expand Down
13 changes: 13 additions & 0 deletions resources/text/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
3.7.2
—————

Added:
▪ Parent item/folder in add category/feed dialog is now correctly preselected according
to current feed's list selection. (#84)
▪ Icons of parent item/folder are now correctly displayed in add feed/category dialogs.
▪ Ability to update only feeds with custom auto-update policy set. (#88)
▪ Enhanced feed's list context menus, now displays "Add feed/category here".

Fixed/changed:
▪ Fixed build on ARM machines.

3.7.1
—————

Expand Down

0 comments on commit 4effd1a

Please sign in to comment.