Fix of main menu switch + different style for changelogs.

This commit is contained in:
Martin Rotter 2014-03-08 14:10:15 +01:00
parent 4e61fe1694
commit abb3a9c08b
3 changed files with 94 additions and 53 deletions

View File

@ -1,49 +1,84 @@
<body> <body>
[1.9.9.7] <center><h2>1.9.9.7</h2></center>
Fixed:
<ul> <ul>
<li>[#] Custom counts of messages in feed list (issue #14).</li> <li>All datetimes fetched from feeds are now considered to be UTC.</li>
<li>[~] Message list optimizations.</li>
<li>[+] Feed list categories expand status is now persistent.</li>
<li>[+] System-wide external web browser can now be used.</li>
<li>[#] All datetimes fetched from feeds are now considered to be UTC.</li>
<li>[~] Tweaked "check for updates" dialog.</li>
</ul> </ul>
[1.9.9.6] Added:
<ul> <ul>
<li>[~] Localization handling.</li> <li>Custom counts of messages in feed list (issue #14) are now changeable.</li>
<li>[+] "Copy selection" context menu item for internal web browser.</li> <li>Feed list categories expand status is now persistent.</li>
<li>[#] Feed type saved to database when feed is added.</li> <li>System-wide external web browser can now be used.</li>
<li>[~] Default feeds.</li> <li>Switchable (with user-defined keyboard shortcut) main menu.</li>
<li>[#] Restarting of application on all platforms.</li> <li>Added better changelog.</li>
<li>[+] Initial French, Portuguese, German localizations. THANKS to theirs authors!!!</li> </ul>
<li>[#] Bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.</li>
</ul> Changed:
[1.9.9.5] <ul>
<ul> <li>Message list optimizations done.</li>
<li>[#] Mac OS X support missing.</li> <li>"Check for updates" dialog tweaked.</li>
<li>[#] Virtual desktop change hides main window.</li> </ul>
<li>[#] Misleding external browser settings.</li>
<li>[#] Non-functional external browser shortcuts.</li> <hr/>
<li>[#] Saving of webbrowser progressbar color.</li> <center><h2>1.9.9.6</h2></center>
<li>[~] Usability of some GUI elements.</li>
<li>[@] Completely switched to new website.</li> Fixed:
<li>[+] Some missing shortcuts.</li> <ul>
</ul> <li>Restarting of application on all platforms fixed.</li>
[1.9.9.4] <li>Feed type saved correctly to database when feed is added.</li>
<ul> <li>Fixed bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.</li>
<li>[+] Experimental MySQL backend support.</li> </ul>
<li>[+] Feed metadata fetching.</li>
<li>[+] Changeable toolbar button style.</li> Added:
<li>[~] Other major features tweaked, many bugs fixed.</li> <ul>
</ul> <li>Added initial French, Portuguese, German localizations. THANKS to theirs authors!!!</li>
[1.9.9.3] <li>"Copy selection" context menu item for internal web browser added. </li>
<ul> </ul>
<li>[@] Alpha pre-release for testing purposes.</li>
Changed:
<ul>
<li>Localization handling improved.</li>
<li>Default feed list improved.</li>
</ul>
<hr/>
<center><h2>1.9.9.5</h2></center>
Fixed:
<ul>
<li>Mac OS X support missing.</li>
<li>Virtual desktop change hides main window.</li>
<li>Misleding external browser settings.</li>
<li>Non-functional external browser shortcuts.</li>
<li>Saving of webbrowser progressbar color.</li>
</ul>
Added:
<ul>
<li>Some missing keyboard shortcuts.</li>
</ul>
Changed:
<ul>
<li>Completely switched to new website.</li>
<li>Usability of some GUI elements improved.</li>
</ul>
<hr/>
<center><h2>1.9.9.4</h2></center>
Added:
<ul>
<li>Experimental MySQL backend support.</li>
<li>Feed metadata fetching is available.</li>
<li>Changeable toolbar button style via application settings.</li>
</ul>
Changed:
<ul>
<li>Other major features tweaked, many bugs fixed.</li>
</ul> </ul>
[+] added <br/>
[#] fixed <br/>
[~] changed <br/>
[@] other action <br/>
</body> </body>

View File

@ -4,18 +4,24 @@
<url platform="x86" os="OS2">https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-os2.7z</url> <url platform="x86" os="OS2">https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-os2.7z</url>
<url platform="x86" os="Windows">https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-win32.7z</url> <url platform="x86" os="Windows">https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-win32.7z</url>
<changes> <changes>
<![CDATA[[~] Localization handling. <![CDATA[Fixed:
[+] "Copy selection" context menu item for internal web browser. <ul>
[#] Feed type saved to database when feed is added. <li>Restarting of application on all platforms fixed.</li>
[~] Default feeds. <li>Feed type saved correctly to database when feed is added.</li>
[#] Restarting of application on all platforms. <li>Fixed bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.</li>
[+] Initial French, Portuguese, German localizations. THANKS to theirs authors!!! </ul>
[#] Bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.
[+] added Added:
[#] fixed <ul>
[~] changed <li>Added initial French, Portuguese, German localizations. THANKS to theirs authors!!!</li>
[@] other action]]> <li>"Copy selection" context menu item for internal web browser added. </li>
</ul>
Changed:
<ul>
<li>Localization handling improved.</li>
<li>Default feed list improved.</li>
</ul>]]>
</changes> </changes>
</release> </release>
</releases> </releases>

View File

@ -324,7 +324,7 @@ void FormMain::loadSize() {
} }
// Hide the main menu if user wants it. // Hide the main menu if user wants it.
if (!settings->value(APP_CFG_GUI, "main_menu_visible", true).toBool()) { if (!(m_mainMenuActivated = settings->value(APP_CFG_GUI, "main_menu_visible", true).toBool())) {
m_ui->m_menuBar->setVisible(false); m_ui->m_menuBar->setVisible(false);
} }