diff --git a/lib/env.js b/lib/env.js index 4db282d77..5ad0bbdac 100644 --- a/lib/env.js +++ b/lib/env.js @@ -123,7 +123,7 @@ module.exports.create = function (config) { maxWorkers: config.maxWorkers, disableIntegratedTasks: config.disableIntegratedTasks || false, - disableIntegratedEviction: typeof(config.disableIntegratedEviction) === 'undefined'? true: config.disableIntegratedEviction, // XXX 4.10.0 false, + disableIntegratedEviction: typeof(config.disableIntegratedEviction) === 'undefined'? true: config.disableIntegratedEviction, // XXX 4.11.0 false, lastEviction: +new Date(), evictionReport: {}, commandTimers: {}, diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 81327844f..8315768f1 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -3041,12 +3041,12 @@ define([ // fc_open ("Open") // share_linkOpen ("Preview") // resources_openInNewTab ("Open it in a new tab") - Messages.link_open = Messages.fc_open; // XXX 4.10.0 + Messages.link_open = Messages.fc_open; // XXX 4.11.0 //Messages.link_store = "Store link in drive"; // toolbar_storeInDrive ? ("Store in CryptDrive") // autostore_store ? ("Store") - Messages.link_store = Messages.toolbar_storeInDrive; // XXX 4.10.0 + Messages.link_store = Messages.toolbar_storeInDrive; // XXX 4.11.0 var content = h('div', [ diff --git a/www/common/drive-ui.js b/www/common/drive-ui.js index cb70986a4..fe87e23da 100644 --- a/www/common/drive-ui.js +++ b/www/common/drive-ui.js @@ -2783,7 +2783,7 @@ define([ var u = $url.val().trim(); if (!n || !u) { return true; } if (!Util.isValidURL(u)) { - // XXX 4.10.0 add style for invalid input? input:invalid + // XXX 4.11.0 add style for invalid input? input:invalid UI.warn(Messages.fm_link_invalid); return true; } diff --git a/www/common/outer/cache-store.js b/www/common/outer/cache-store.js index 93bc0d0c6..d1c3795c0 100644 --- a/www/common/outer/cache-store.js +++ b/www/common/outer/cache-store.js @@ -97,7 +97,7 @@ define([ var checkCheckpoints = function (array) { if (!Array.isArray(array)) { return; } // Keep the last 100 messages - if (array.length > 100) { // XXX 4.10.0 + if (array.length > 100) { // XXX 4.11.0 array.splice(0, array.length - 100); } // Remove every message before the first checkpoint diff --git a/www/convert/inner.js b/www/convert/inner.js index ba9870ccf..3c885ce57 100644 --- a/www/convert/inner.js +++ b/www/convert/inner.js @@ -192,8 +192,8 @@ define([ }, }; - Messages.convertPage = "Convert"; // XXX 4.10.0 - Messages.convert_hint = "Pick the file you want to convert. The list of output format will be visible afterward."; // XXX 4.10.0 + Messages.convertPage = "Convert"; // XXX 4.11.0 + Messages.convert_hint = "Pick the file you want to convert. The list of output format will be visible afterward."; // XXX 4.11.0 var createToolbar = function () { var displayed = ['useradmin', 'newpad', 'limit', 'pageTitle', 'notifications']; diff --git a/www/form/inner.js b/www/form/inner.js index 33e2af754..089db8b57 100644 --- a/www/form/inner.js +++ b/www/form/inner.js @@ -2739,11 +2739,11 @@ define([ var responseMsg = h('div.cp-form-response-msg-container'); var $responseMsg = $(responseMsg); var refreshResponse = function () { - if (true) { return; } // XXX 4.10.0 + if (true) { return; } // XXX 4.11.0 $responseMsg.empty(); - Messages.form_updateMsg = "Update response message"; // XXX 4.10.0 - Messages.form_addMsg = "Add response message"; // XXX 4.10.0 - Messages.form_responseMsg = "Add a message that will be displayed in the response page."; // XXX 4.10.0 + Messages.form_updateMsg = "Update response message"; // XXX 4.11.0 + Messages.form_addMsg = "Add response message"; // XXX 4.11.0 + Messages.form_responseMsg = "Add a message that will be displayed in the response page."; // XXX 4.11.0 var text = content.answers.msg ? Messages.form_updateMsg : Messages.form_addMsg; var btn = h('button.btn.btn-secondary', text); $(btn).click(function () { @@ -2772,7 +2772,7 @@ define([ name: Messages.settings_save, onClick: function () { var v = editor.getValue(); - content.answers.msg = v.trim(0, 2000); // XXX 4.10.0 max length? + content.answers.msg = v.trim(0, 2000); // XXX 4.11.0 max length? framework.localChange(); framework._.cpNfInner.chainpad.onSettle(function () { UI.log(Messages.saved); @@ -2798,7 +2798,7 @@ define([ } UI.openCustomModal(APP.responseModal); }); - // $responseMsg.append(btn); // XXX 4.10.0 + // $responseMsg.append(btn); // XXX 4.11.0 }; //refreshResponse(); diff --git a/www/form/main.js b/www/form/main.js index de2c311ef..b82397caf 100644 --- a/www/form/main.js +++ b/www/form/main.js @@ -176,7 +176,7 @@ define([ validateKey: keys.secondaryValidateKey, owners: [myKeys.edPublic], crypto: crypto, - //Cache: Utils.Cache // XXX 4.10.0 + //Cache: Utils.Cache // XXX 4.11.0 }; var results = {}; config.onError = function (info) {