Save for 3.7.2.

This commit is contained in:
Martin Rotter 2020-09-01 07:37:51 +02:00
parent 320442261e
commit 4effd1a119
3 changed files with 23 additions and 7 deletions

View File

@ -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
@ -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,

View File

@ -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 = "rotter.martinos@gmail.com"
APP_URL = "https://github.com/martinrotter/rssguard"

View File

@ -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
—————