Release 4chan X v1.14.21.5.
This commit is contained in:
parent
a6f78ad1ec
commit
cb68f4332e
@ -4,6 +4,9 @@
|
|||||||
|
|
||||||
### v1.14.21
|
### v1.14.21
|
||||||
|
|
||||||
|
**v1.14.21.5** *(2021-07-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.5/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.5/builds/4chan-X-noupdate.crx)]
|
||||||
|
- Fix bug causing captcha to sometimes not work when replying from index.
|
||||||
|
|
||||||
**v1.14.21.4** *(2021-07-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.4/builds/4chan-X-noupdate.crx)]
|
**v1.14.21.4** *(2021-07-05)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.4/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.21.4/builds/4chan-X-noupdate.crx)]
|
||||||
- Preliminary support for new first-party captcha on 4chan.
|
- Preliminary support for new first-party captcha on 4chan.
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.21.4
|
// @version 1.14.21.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X beta
|
// @name 4chan X beta
|
||||||
// @version 1.14.21.4
|
// @version 1.14.21.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -218,7 +218,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.21.4',
|
VERSION: '1.14.21.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -23752,8 +23752,20 @@ Captcha = {};
|
|||||||
return $.after(QR.nodes.com.parentNode, root);
|
return $.after(QR.nodes.com.parentNode, root);
|
||||||
},
|
},
|
||||||
moreNeeded: function() {},
|
moreNeeded: function() {},
|
||||||
setup: function(focus) {
|
getThread: function() {
|
||||||
var boardID, threadID;
|
var boardID, threadID;
|
||||||
|
boardID = g.BOARD.ID;
|
||||||
|
if (QR.posts[0].thread === 'new') {
|
||||||
|
threadID = '0';
|
||||||
|
} else {
|
||||||
|
threadID = '' + QR.posts[0].thread;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
boardID: boardID,
|
||||||
|
threadID: threadID
|
||||||
|
};
|
||||||
|
},
|
||||||
|
setup: function(focus) {
|
||||||
if (!this.isEnabled) {
|
if (!this.isEnabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -23762,8 +23774,7 @@ Captcha = {};
|
|||||||
className: 'captcha-container'
|
className: 'captcha-container'
|
||||||
});
|
});
|
||||||
$.prepend(this.nodes.root, this.nodes.container);
|
$.prepend(this.nodes.root, this.nodes.container);
|
||||||
boardID = g.BOARD.ID;
|
Captcha.t.currentThread = Captcha.t.getThread();
|
||||||
threadID = '' + QR.posts[0].thread;
|
|
||||||
$.global(function() {
|
$.global(function() {
|
||||||
var el;
|
var el;
|
||||||
el = document.querySelector('#qr .captcha-container');
|
el = document.querySelector('#qr .captcha-container');
|
||||||
@ -23776,10 +23787,7 @@ Captcha = {};
|
|||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
}, {
|
}, Captcha.t.currentThread);
|
||||||
boardID: boardID,
|
|
||||||
threadID: threadID
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
if (focus) {
|
if (focus) {
|
||||||
return $('#t-resp').focus();
|
return $('#t-resp').focus();
|
||||||
@ -23795,6 +23803,15 @@ Captcha = {};
|
|||||||
$.rm(this.nodes.container);
|
$.rm(this.nodes.container);
|
||||||
return delete this.nodes.container;
|
return delete this.nodes.container;
|
||||||
},
|
},
|
||||||
|
updateThread: function() {
|
||||||
|
var boardID, newThread, ref, threadID;
|
||||||
|
ref = Captcha.t.currentThread, boardID = ref.boardID, threadID = ref.threadID;
|
||||||
|
newThread = Captcha.t.getThread();
|
||||||
|
if (!(newThread.boardID === boardID && newThread.threadID === threadID)) {
|
||||||
|
Captcha.t.destroy();
|
||||||
|
return Captcha.t.setup();
|
||||||
|
}
|
||||||
|
},
|
||||||
getOne: function() {
|
getOne: function() {
|
||||||
var i, key, len, ref, response;
|
var i, key, len, ref, response;
|
||||||
response = {};
|
response = {};
|
||||||
@ -25964,7 +25981,7 @@ QR = (function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_Class.prototype.rm = function() {
|
_Class.prototype.rm = function() {
|
||||||
var index;
|
var base, index;
|
||||||
this["delete"]();
|
this["delete"]();
|
||||||
index = QR.posts.indexOf(this);
|
index = QR.posts.indexOf(this);
|
||||||
if (QR.posts.length === 1) {
|
if (QR.posts.length === 1) {
|
||||||
@ -25974,7 +25991,8 @@ QR = (function() {
|
|||||||
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
||||||
}
|
}
|
||||||
QR.posts.splice(index, 1);
|
QR.posts.splice(index, 1);
|
||||||
return QR.status();
|
QR.status();
|
||||||
|
return typeof (base = QR.captcha).updateThread === "function" ? base.updateThread() : void 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype["delete"] = function() {
|
_Class.prototype["delete"] = function() {
|
||||||
@ -26039,7 +26057,7 @@ QR = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.save = function(input, forced) {
|
_Class.prototype.save = function(input, forced) {
|
||||||
var name, prev;
|
var base, name, prev;
|
||||||
if (input.type === 'checkbox') {
|
if (input.type === 'checkbox') {
|
||||||
this.spoiler = input.checked;
|
this.spoiler = input.checked;
|
||||||
return;
|
return;
|
||||||
@ -26054,6 +26072,9 @@ QR = (function() {
|
|||||||
case 'thread':
|
case 'thread':
|
||||||
(this.thread !== 'new' ? $.addClass : $.rmClass)(QR.nodes.el, 'reply-to-thread');
|
(this.thread !== 'new' ? $.addClass : $.rmClass)(QR.nodes.el, 'reply-to-thread');
|
||||||
QR.status();
|
QR.status();
|
||||||
|
if (typeof (base = QR.captcha).updateThread === "function") {
|
||||||
|
base.updateThread();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'com':
|
case 'com':
|
||||||
this.updateComment();
|
this.updateComment();
|
||||||
@ -26448,7 +26469,7 @@ QR = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.drop = function() {
|
_Class.prototype.drop = function() {
|
||||||
var el, index, newIndex, oldIndex, post;
|
var base, el, index, newIndex, oldIndex, post;
|
||||||
$.rmClass(this, 'over');
|
$.rmClass(this, 'over');
|
||||||
if (!this.draggable) {
|
if (!this.draggable) {
|
||||||
return;
|
return;
|
||||||
@ -26465,7 +26486,8 @@ QR = (function() {
|
|||||||
(oldIndex < newIndex ? $.after : $.before)(this, el);
|
(oldIndex < newIndex ? $.after : $.before)(this, el);
|
||||||
post = QR.posts.splice(oldIndex, 1)[0];
|
post = QR.posts.splice(oldIndex, 1)[0];
|
||||||
QR.posts.splice(newIndex, 0, post);
|
QR.posts.splice(newIndex, 0, post);
|
||||||
return QR.status();
|
QR.status();
|
||||||
|
return typeof (base = QR.captcha).updateThread === "function" ? base.updateThread() : void 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
return _Class;
|
return _Class;
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.21.4
|
// @version 1.14.21.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -218,7 +218,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.21.4',
|
VERSION: '1.14.21.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -23752,8 +23752,20 @@ Captcha = {};
|
|||||||
return $.after(QR.nodes.com.parentNode, root);
|
return $.after(QR.nodes.com.parentNode, root);
|
||||||
},
|
},
|
||||||
moreNeeded: function() {},
|
moreNeeded: function() {},
|
||||||
setup: function(focus) {
|
getThread: function() {
|
||||||
var boardID, threadID;
|
var boardID, threadID;
|
||||||
|
boardID = g.BOARD.ID;
|
||||||
|
if (QR.posts[0].thread === 'new') {
|
||||||
|
threadID = '0';
|
||||||
|
} else {
|
||||||
|
threadID = '' + QR.posts[0].thread;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
boardID: boardID,
|
||||||
|
threadID: threadID
|
||||||
|
};
|
||||||
|
},
|
||||||
|
setup: function(focus) {
|
||||||
if (!this.isEnabled) {
|
if (!this.isEnabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -23762,8 +23774,7 @@ Captcha = {};
|
|||||||
className: 'captcha-container'
|
className: 'captcha-container'
|
||||||
});
|
});
|
||||||
$.prepend(this.nodes.root, this.nodes.container);
|
$.prepend(this.nodes.root, this.nodes.container);
|
||||||
boardID = g.BOARD.ID;
|
Captcha.t.currentThread = Captcha.t.getThread();
|
||||||
threadID = '' + QR.posts[0].thread;
|
|
||||||
$.global(function() {
|
$.global(function() {
|
||||||
var el;
|
var el;
|
||||||
el = document.querySelector('#qr .captcha-container');
|
el = document.querySelector('#qr .captcha-container');
|
||||||
@ -23776,10 +23787,7 @@ Captcha = {};
|
|||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
}, {
|
}, Captcha.t.currentThread);
|
||||||
boardID: boardID,
|
|
||||||
threadID: threadID
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
if (focus) {
|
if (focus) {
|
||||||
return $('#t-resp').focus();
|
return $('#t-resp').focus();
|
||||||
@ -23795,6 +23803,15 @@ Captcha = {};
|
|||||||
$.rm(this.nodes.container);
|
$.rm(this.nodes.container);
|
||||||
return delete this.nodes.container;
|
return delete this.nodes.container;
|
||||||
},
|
},
|
||||||
|
updateThread: function() {
|
||||||
|
var boardID, newThread, ref, threadID;
|
||||||
|
ref = Captcha.t.currentThread, boardID = ref.boardID, threadID = ref.threadID;
|
||||||
|
newThread = Captcha.t.getThread();
|
||||||
|
if (!(newThread.boardID === boardID && newThread.threadID === threadID)) {
|
||||||
|
Captcha.t.destroy();
|
||||||
|
return Captcha.t.setup();
|
||||||
|
}
|
||||||
|
},
|
||||||
getOne: function() {
|
getOne: function() {
|
||||||
var i, key, len, ref, response;
|
var i, key, len, ref, response;
|
||||||
response = {};
|
response = {};
|
||||||
@ -25964,7 +25981,7 @@ QR = (function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_Class.prototype.rm = function() {
|
_Class.prototype.rm = function() {
|
||||||
var index;
|
var base, index;
|
||||||
this["delete"]();
|
this["delete"]();
|
||||||
index = QR.posts.indexOf(this);
|
index = QR.posts.indexOf(this);
|
||||||
if (QR.posts.length === 1) {
|
if (QR.posts.length === 1) {
|
||||||
@ -25974,7 +25991,8 @@ QR = (function() {
|
|||||||
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
||||||
}
|
}
|
||||||
QR.posts.splice(index, 1);
|
QR.posts.splice(index, 1);
|
||||||
return QR.status();
|
QR.status();
|
||||||
|
return typeof (base = QR.captcha).updateThread === "function" ? base.updateThread() : void 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype["delete"] = function() {
|
_Class.prototype["delete"] = function() {
|
||||||
@ -26039,7 +26057,7 @@ QR = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.save = function(input, forced) {
|
_Class.prototype.save = function(input, forced) {
|
||||||
var name, prev;
|
var base, name, prev;
|
||||||
if (input.type === 'checkbox') {
|
if (input.type === 'checkbox') {
|
||||||
this.spoiler = input.checked;
|
this.spoiler = input.checked;
|
||||||
return;
|
return;
|
||||||
@ -26054,6 +26072,9 @@ QR = (function() {
|
|||||||
case 'thread':
|
case 'thread':
|
||||||
(this.thread !== 'new' ? $.addClass : $.rmClass)(QR.nodes.el, 'reply-to-thread');
|
(this.thread !== 'new' ? $.addClass : $.rmClass)(QR.nodes.el, 'reply-to-thread');
|
||||||
QR.status();
|
QR.status();
|
||||||
|
if (typeof (base = QR.captcha).updateThread === "function") {
|
||||||
|
base.updateThread();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'com':
|
case 'com':
|
||||||
this.updateComment();
|
this.updateComment();
|
||||||
@ -26448,7 +26469,7 @@ QR = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.drop = function() {
|
_Class.prototype.drop = function() {
|
||||||
var el, index, newIndex, oldIndex, post;
|
var base, el, index, newIndex, oldIndex, post;
|
||||||
$.rmClass(this, 'over');
|
$.rmClass(this, 'over');
|
||||||
if (!this.draggable) {
|
if (!this.draggable) {
|
||||||
return;
|
return;
|
||||||
@ -26465,7 +26486,8 @@ QR = (function() {
|
|||||||
(oldIndex < newIndex ? $.after : $.before)(this, el);
|
(oldIndex < newIndex ? $.after : $.before)(this, el);
|
||||||
post = QR.posts.splice(oldIndex, 1)[0];
|
post = QR.posts.splice(oldIndex, 1)[0];
|
||||||
QR.posts.splice(newIndex, 0, post);
|
QR.posts.splice(newIndex, 0, post);
|
||||||
return QR.status();
|
QR.status();
|
||||||
|
return typeof (base = QR.captcha).updateThread === "function" ? base.updateThread() : void 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
return _Class;
|
return _Class;
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.21.4
|
// @version 1.14.21.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name 4chan X
|
// @name 4chan X
|
||||||
// @version 1.14.21.4
|
// @version 1.14.21.5
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace 4chan-X
|
// @namespace 4chan-X
|
||||||
@ -218,7 +218,7 @@ docSet = function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '1.14.21.4',
|
VERSION: '1.14.21.5',
|
||||||
NAMESPACE: '4chan X.',
|
NAMESPACE: '4chan X.',
|
||||||
sites: Object.create(null),
|
sites: Object.create(null),
|
||||||
boards: Object.create(null)
|
boards: Object.create(null)
|
||||||
@ -23752,8 +23752,20 @@ Captcha = {};
|
|||||||
return $.after(QR.nodes.com.parentNode, root);
|
return $.after(QR.nodes.com.parentNode, root);
|
||||||
},
|
},
|
||||||
moreNeeded: function() {},
|
moreNeeded: function() {},
|
||||||
setup: function(focus) {
|
getThread: function() {
|
||||||
var boardID, threadID;
|
var boardID, threadID;
|
||||||
|
boardID = g.BOARD.ID;
|
||||||
|
if (QR.posts[0].thread === 'new') {
|
||||||
|
threadID = '0';
|
||||||
|
} else {
|
||||||
|
threadID = '' + QR.posts[0].thread;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
boardID: boardID,
|
||||||
|
threadID: threadID
|
||||||
|
};
|
||||||
|
},
|
||||||
|
setup: function(focus) {
|
||||||
if (!this.isEnabled) {
|
if (!this.isEnabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -23762,8 +23774,7 @@ Captcha = {};
|
|||||||
className: 'captcha-container'
|
className: 'captcha-container'
|
||||||
});
|
});
|
||||||
$.prepend(this.nodes.root, this.nodes.container);
|
$.prepend(this.nodes.root, this.nodes.container);
|
||||||
boardID = g.BOARD.ID;
|
Captcha.t.currentThread = Captcha.t.getThread();
|
||||||
threadID = '' + QR.posts[0].thread;
|
|
||||||
$.global(function() {
|
$.global(function() {
|
||||||
var el;
|
var el;
|
||||||
el = document.querySelector('#qr .captcha-container');
|
el = document.querySelector('#qr .captcha-container');
|
||||||
@ -23776,10 +23787,7 @@ Captcha = {};
|
|||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
}, {
|
}, Captcha.t.currentThread);
|
||||||
boardID: boardID,
|
|
||||||
threadID: threadID
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
if (focus) {
|
if (focus) {
|
||||||
return $('#t-resp').focus();
|
return $('#t-resp').focus();
|
||||||
@ -23795,6 +23803,15 @@ Captcha = {};
|
|||||||
$.rm(this.nodes.container);
|
$.rm(this.nodes.container);
|
||||||
return delete this.nodes.container;
|
return delete this.nodes.container;
|
||||||
},
|
},
|
||||||
|
updateThread: function() {
|
||||||
|
var boardID, newThread, ref, threadID;
|
||||||
|
ref = Captcha.t.currentThread, boardID = ref.boardID, threadID = ref.threadID;
|
||||||
|
newThread = Captcha.t.getThread();
|
||||||
|
if (!(newThread.boardID === boardID && newThread.threadID === threadID)) {
|
||||||
|
Captcha.t.destroy();
|
||||||
|
return Captcha.t.setup();
|
||||||
|
}
|
||||||
|
},
|
||||||
getOne: function() {
|
getOne: function() {
|
||||||
var i, key, len, ref, response;
|
var i, key, len, ref, response;
|
||||||
response = {};
|
response = {};
|
||||||
@ -25964,7 +25981,7 @@ QR = (function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_Class.prototype.rm = function() {
|
_Class.prototype.rm = function() {
|
||||||
var index;
|
var base, index;
|
||||||
this["delete"]();
|
this["delete"]();
|
||||||
index = QR.posts.indexOf(this);
|
index = QR.posts.indexOf(this);
|
||||||
if (QR.posts.length === 1) {
|
if (QR.posts.length === 1) {
|
||||||
@ -25974,7 +25991,8 @@ QR = (function() {
|
|||||||
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
(QR.posts[index - 1] || QR.posts[index + 1]).select();
|
||||||
}
|
}
|
||||||
QR.posts.splice(index, 1);
|
QR.posts.splice(index, 1);
|
||||||
return QR.status();
|
QR.status();
|
||||||
|
return typeof (base = QR.captcha).updateThread === "function" ? base.updateThread() : void 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype["delete"] = function() {
|
_Class.prototype["delete"] = function() {
|
||||||
@ -26039,7 +26057,7 @@ QR = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.save = function(input, forced) {
|
_Class.prototype.save = function(input, forced) {
|
||||||
var name, prev;
|
var base, name, prev;
|
||||||
if (input.type === 'checkbox') {
|
if (input.type === 'checkbox') {
|
||||||
this.spoiler = input.checked;
|
this.spoiler = input.checked;
|
||||||
return;
|
return;
|
||||||
@ -26054,6 +26072,9 @@ QR = (function() {
|
|||||||
case 'thread':
|
case 'thread':
|
||||||
(this.thread !== 'new' ? $.addClass : $.rmClass)(QR.nodes.el, 'reply-to-thread');
|
(this.thread !== 'new' ? $.addClass : $.rmClass)(QR.nodes.el, 'reply-to-thread');
|
||||||
QR.status();
|
QR.status();
|
||||||
|
if (typeof (base = QR.captcha).updateThread === "function") {
|
||||||
|
base.updateThread();
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'com':
|
case 'com':
|
||||||
this.updateComment();
|
this.updateComment();
|
||||||
@ -26448,7 +26469,7 @@ QR = (function() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
_Class.prototype.drop = function() {
|
_Class.prototype.drop = function() {
|
||||||
var el, index, newIndex, oldIndex, post;
|
var base, el, index, newIndex, oldIndex, post;
|
||||||
$.rmClass(this, 'over');
|
$.rmClass(this, 'over');
|
||||||
if (!this.draggable) {
|
if (!this.draggable) {
|
||||||
return;
|
return;
|
||||||
@ -26465,7 +26486,8 @@ QR = (function() {
|
|||||||
(oldIndex < newIndex ? $.after : $.before)(this, el);
|
(oldIndex < newIndex ? $.after : $.before)(this, el);
|
||||||
post = QR.posts.splice(oldIndex, 1)[0];
|
post = QR.posts.splice(oldIndex, 1)[0];
|
||||||
QR.posts.splice(newIndex, 0, post);
|
QR.posts.splice(newIndex, 0, post);
|
||||||
return QR.status();
|
QR.status();
|
||||||
|
return typeof (base = QR.captcha).updateThread === "function" ? base.updateThread() : void 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
return _Class;
|
return _Class;
|
||||||
|
|||||||
Binary file not shown.
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.21.4",
|
"version": "1.14.21.5",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.21.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X-beta.crx' version='1.14.21.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"4chan-x@4chan-x.net": {
|
"4chan-x@4chan-x.net": {
|
||||||
"updates": [
|
"updates": [
|
||||||
{
|
{
|
||||||
"version": "1.14.21.4",
|
"version": "1.14.21.5",
|
||||||
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
<gupdate xmlns='http://www.google.com/update2/response' protocol='2.0'>
|
||||||
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
<app appid='lacclbnghgdicfifcamcmcnilckjamag'>
|
||||||
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.21.4' />
|
<updatecheck codebase='https://www.4chan-x.net/builds/4chan-X.crx' version='1.14.21.5' />
|
||||||
</app>
|
</app>
|
||||||
</gupdate>
|
</gupdate>
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"version": "1.14.21.4",
|
"version": "1.14.21.5",
|
||||||
"date": "2021-07-05T20:23:27.050Z"
|
"date": "2021-07-07T06:16:45.892Z"
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user