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>
[1.9.9.7]
<center><h2>1.9.9.7</h2></center>
Fixed:
<ul>
<li>[#] Custom counts of messages in feed list (issue #14).</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>
<li>All datetimes fetched from feeds are now considered to be UTC.</li>
</ul>
[1.9.9.6]
Added:
<ul>
<li>[~] Localization handling.</li>
<li>[+] "Copy selection" context menu item for internal web browser.</li>
<li>[#] Feed type saved to database when feed is added.</li>
<li>[~] Default feeds.</li>
<li>[#] Restarting of application on all platforms.</li>
<li>[+] Initial French, Portuguese, German localizations. THANKS to theirs authors!!!</li>
<li>[#] Bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.</li>
</ul>
[1.9.9.5]
<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>
<li>[~] Usability of some GUI elements.</li>
<li>[@] Completely switched to new website.</li>
<li>[+] Some missing shortcuts.</li>
</ul>
[1.9.9.4]
<ul>
<li>[+] Experimental MySQL backend support.</li>
<li>[+] Feed metadata fetching.</li>
<li>[+] Changeable toolbar button style.</li>
<li>[~] Other major features tweaked, many bugs fixed.</li>
</ul>
[1.9.9.3]
<ul>
<li>[@] Alpha pre-release for testing purposes.</li>
<li>Custom counts of messages in feed list (issue #14) are now changeable.</li>
<li>Feed list categories expand status is now persistent.</li>
<li>System-wide external web browser can now be used.</li>
<li>Switchable (with user-defined keyboard shortcut) main menu.</li>
<li>Added better changelog.</li>
</ul>
Changed:
<ul>
<li>Message list optimizations done.</li>
<li>"Check for updates" dialog tweaked.</li>
</ul>
<hr/>
<center><h2>1.9.9.6</h2></center>
Fixed:
<ul>
<li>Restarting of application on all platforms fixed.</li>
<li>Feed type saved correctly to database when feed is added.</li>
<li>Fixed bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.</li>
</ul>
Added:
<ul>
<li>Added initial French, Portuguese, German localizations. THANKS to theirs authors!!!</li>
<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>
<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>
[+] added <br/>
[#] fixed <br/>
[~] changed <br/>
[@] other action <br/>
</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="Windows">https://bitbucket.org/skunkos/rssguard/downloads/rssguard-1.9.9.6-win32.7z</url>
<changes>
<![CDATA[[~] Localization handling.
[+] "Copy selection" context menu item for internal web browser.
[#] Feed type saved to database when feed is added.
[~] Default feeds.
[#] Restarting of application on all platforms.
[+] Initial French, Portuguese, German localizations. THANKS to theirs authors!!!
[#] Bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.
<![CDATA[Fixed:
<ul>
<li>Restarting of application on all platforms fixed.</li>
<li>Feed type saved correctly to database when feed is added.</li>
<li>Fixed bugs #15, #16, #13, #19, #20, #26, #25, #18, #21, #25.</li>
</ul>
[+] added
[#] fixed
[~] changed
[@] other action]]>
Added:
<ul>
<li>Added initial French, Portuguese, German localizations. THANKS to theirs authors!!!</li>
<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>
</release>
</releases>

View File

@ -324,7 +324,7 @@ void FormMain::loadSize() {
}
// 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);
}