new option: ON_CATCHUP_SHOW_NEXT_FEED, fix several schema issues
parent
1da76274eb
commit
e52d6bc4be
@ -1,4 +1,7 @@
|
|||||||
insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
|
insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
|
||||||
|
|
||||||
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ON_CATCHUP_SHOW_NEXT_FEED', 1, 'false', 'On catchup show next feed',2,
|
||||||
|
'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');
|
||||||
|
|
||||||
update ttrss_version set schema_version = 8;
|
update ttrss_version set schema_version = 8;
|
||||||
|
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
|
begin;
|
||||||
|
|
||||||
insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
|
insert into ttrss_themes (theme_name, theme_path) values ('Old-skool', 'compat');
|
||||||
|
|
||||||
|
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ON_CATCHUP_SHOW_NEXT_FEED', 1, 'false', 'On catchup show next feed',2,
|
||||||
|
'When "Mark as read" button is clicked in toolbar, automatically open next feed with unread articles.');
|
||||||
|
|
||||||
update ttrss_version set schema_version = 8;
|
update ttrss_version set schema_version = 8;
|
||||||
|
|
||||||
|
commit;
|
||||||
|
Loading…
Reference in New Issue