delay working on some flagged issues till next release
parent
3976bfae84
commit
c1f9d11333
|
@ -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: {},
|
||||
|
|
|
@ -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', [
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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'];
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue