From 710d03a79148572effb8bb70fea045a078be7fd6 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 15 Jun 2015 22:45:45 +0200 Subject: [PATCH] Fix patches. --- newznab/build/newznab.xml | 4 ++-- resources/db/patches/0126~settings.sql | 18 +++++++++--------- resources/db/patches/0127~settings.sql | 9 +++++++++ 3 files changed, 20 insertions(+), 11 deletions(-) create mode 100644 resources/db/patches/0127~settings.sql diff --git a/newznab/build/newznab.xml b/newznab/build/newznab.xml index df6514680..6c75438f9 100644 --- a/newznab/build/newznab.xml +++ b/newznab/build/newznab.xml @@ -2,8 +2,8 @@ - 126 - 126 + 127 + 127 0.4.1 diff --git a/resources/db/patches/0126~settings.sql b/resources/db/patches/0126~settings.sql index cfaf66dda..9176db073 100644 --- a/resources/db/patches/0126~settings.sql +++ b/resources/db/patches/0126~settings.sql @@ -1,9 +1,9 @@ -INSERT IGNORE INTO settings (section, subsection, name, value, hint, setting) -VALUES ( -'max', -'headers', -'iteration', -1000000, -'The maximum number of headers that update binaries sees as the total range. This ensure that a total of no more than this is attempted to be downloaded at one time per group.', -'max.headers.iteration' -); \ No newline at end of file +INSERT INTO settings (section, subsection, name, value, hint, setting) + VALUES ( + 'tmux', + 'running', + 'exit', + 0, + 'Determines if the running tmux monitor script should exit. If 0 nothing changes; if positive the script should exit gracefully (allowing all panes to finish); if negative the script should die as soon as possible.', + 'tmux.running.exit' + ); \ No newline at end of file diff --git a/resources/db/patches/0127~settings.sql b/resources/db/patches/0127~settings.sql new file mode 100644 index 000000000..cfaf66dda --- /dev/null +++ b/resources/db/patches/0127~settings.sql @@ -0,0 +1,9 @@ +INSERT IGNORE INTO settings (section, subsection, name, value, hint, setting) +VALUES ( +'max', +'headers', +'iteration', +1000000, +'The maximum number of headers that update binaries sees as the total range. This ensure that a total of no more than this is attempted to be downloaded at one time per group.', +'max.headers.iteration' +); \ No newline at end of file