Fixed #164 partially.
This commit is contained in:
parent
ad59ac6648
commit
0a4d5fa6c6
10 changed files with 238 additions and 220 deletions
|
@ -16,4 +16,8 @@ UPDATE Feeds
|
||||||
SET custom_id = (SELECT id FROM Feeds t WHERE t.id = Feeds.id)
|
SET custom_id = (SELECT id FROM Feeds t WHERE t.id = Feeds.id)
|
||||||
WHERE Feeds.custom_id IS NULL;
|
WHERE Feeds.custom_id IS NULL;
|
||||||
-- !
|
-- !
|
||||||
|
UPDATE Messages
|
||||||
|
SET custom_id = (SELECT id FROM Messages t WHERE t.id = Messages.id)
|
||||||
|
WHERE Messages.custom_id IS NULL;
|
||||||
|
-- !
|
||||||
UPDATE Information SET inf_value = '5' WHERE inf_key = 'schema_version';
|
UPDATE Information SET inf_value = '5' WHERE inf_key = 'schema_version';
|
|
@ -16,4 +16,8 @@ UPDATE Feeds
|
||||||
SET custom_id = (SELECT id FROM Feeds t WHERE t.id = Feeds.id)
|
SET custom_id = (SELECT id FROM Feeds t WHERE t.id = Feeds.id)
|
||||||
WHERE Feeds.custom_id IS NULL;
|
WHERE Feeds.custom_id IS NULL;
|
||||||
-- !
|
-- !
|
||||||
|
UPDATE Messages
|
||||||
|
SET custom_id = (SELECT id FROM Messages t WHERE t.id = Messages.id)
|
||||||
|
WHERE Messages.custom_id IS NULL;
|
||||||
|
-- !
|
||||||
UPDATE Information SET inf_value = '5' WHERE inf_key = 'schema_version';
|
UPDATE Information SET inf_value = '5' WHERE inf_key = 'schema_version';
|
|
@ -15,6 +15,7 @@ Added:
|
||||||
|
|
||||||
Fixed:
|
Fixed:
|
||||||
|
|
||||||
|
▪ Some other minor fixes.
|
||||||
▪ Feed list hidden when respective menu item is unchecked. (bug #163)
|
▪ Feed list hidden when respective menu item is unchecked. (bug #163)
|
||||||
▪ Standard RSS/RDF/ATOM relative URLs in entries should now be correctly loaded. (bug #160)
|
▪ Standard RSS/RDF/ATOM relative URLs in entries should now be correctly loaded. (bug #160)
|
||||||
▪ Fixed some problems when adding feeds from external web browser like Firefox. (bug #135)
|
▪ Fixed some problems when adding feeds from external web browser like Firefox. (bug #135)
|
||||||
|
|
|
@ -1342,7 +1342,7 @@ Authors of this application are NOT responsible for lost data.</string>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QTabWidget" name="m_tabFeedsMessages">
|
<widget class="QTabWidget" name="m_tabFeedsMessages">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>0</number>
|
<number>1</number>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QWidget" name="m_tabFeeds">
|
<widget class="QWidget" name="m_tabFeeds">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
|
@ -1511,9 +1511,18 @@ Authors of this application are NOT responsible for lost data.</string>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<widget class="QFontComboBox" name="m_cmbMessageFontStandard">
|
<widget class="QFontComboBox" name="m_cmbMessageFontStandard">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
<property name="editable">
|
<property name="editable">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="sizeAdjustPolicy">
|
||||||
|
<enum>QComboBox::AdjustToContents</enum>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
|
Loading…
Add table
Reference in a new issue