Probably fixed #127.

This commit is contained in:
Martin Rotter 2017-07-08 09:26:36 +02:00
parent fb2755b0b4
commit 6db681386d
3 changed files with 3 additions and 2 deletions

@ -1 +1 @@
Subproject commit 1bb36a305e8a23de1e4f3609d8fc4dfeb85ba6fe Subproject commit aea11879635d0d6b029a7f6d49d1f31dd95b3c05

View file

@ -21,6 +21,7 @@ Changed:
▪ Tweaked some conditions for determining newly "updated" messages in ATOM format. (issue #103) ▪ Tweaked some conditions for determining newly "updated" messages in ATOM format. (issue #103)
Fixed: Fixed:
▪ Settings and database are now stored in more standard directories on Mac OS X (#127)
▪ Fixed regression when restoring deleted messages. ▪ Fixed regression when restoring deleted messages.
▪ Crash in TT-RSS plugin on application exit, when TT-RSS user needed to be logged out. ▪ Crash in TT-RSS plugin on application exit, when TT-RSS user needed to be logged out.

View file

@ -346,7 +346,7 @@ SettingsProperties Settings::determineProperties() {
// We will use PORTABLE settings only and only if it is available and NON-PORTABLE // We will use PORTABLE settings only and only if it is available and NON-PORTABLE
// settings was not initialized before. // settings was not initialized before.
#if defined (Q_OS_LINUX) #if defined (Q_OS_LINUX) || defined (Q_OS_MACOS)
// DO NOT use portable settings for Linux, it is really not used on that platform. // DO NOT use portable settings for Linux, it is really not used on that platform.
const bool will_we_use_portable_settings = false; const bool will_we_use_portable_settings = false;
#else #else