diff --git a/CHANGELOG.md b/CHANGELOG.md
index a1e6dfb07..373ce66e7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,9 @@
### v1.14.20
+**v1.14.20.1** *(2020-08-24)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.20.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.20.1/builds/4chan-X-noupdate.crx)]
+- Update for 4chan /vg/ change.
+
**v1.14.20.0** *(2020-06-16)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.20.0/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.20.0/builds/4chan-X-noupdate.crx)]
- Based on v1.14.19.4.
- Make image features work with .webp images.
diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx
index dc844d2f1..168b50327 100644
Binary files a/builds/4chan-X-beta.crx and b/builds/4chan-X-beta.crx differ
diff --git a/builds/4chan-X-beta.meta.js b/builds/4chan-X-beta.meta.js
index 710232a6d..c8c58d653 100644
--- a/builds/4chan-X-beta.meta.js
+++ b/builds/4chan-X-beta.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
-// @version 1.14.20.0
+// @version 1.14.20.1
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js
index 6850076d9..ed5517b3c 100644
--- a/builds/4chan-X-beta.user.js
+++ b/builds/4chan-X-beta.user.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
-// @version 1.14.20.0
+// @version 1.14.20.1
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -218,7 +218,7 @@ docSet = function() {
};
g = {
- VERSION: '1.14.20.0',
+ VERSION: '1.14.20.1',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@@ -12244,7 +12244,7 @@ Index = (function() {
thread = new Thread(ID, g.BOARD);
newThreads.push(thread);
}
- lastPost = threadData.last_replies ? threadData.last_replies[threadData.last_replies.length - 1].no : ID;
+ lastPost = threadData.last_replies && threadData.last_replies.length ? threadData.last_replies[threadData.last_replies.length - 1].no : ID;
if (lastPost > thread.lastPost) {
thread.lastPost = lastPost;
}
diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx
index 248587c5e..acbc3c1b7 100644
Binary files a/builds/4chan-X-noupdate.crx and b/builds/4chan-X-noupdate.crx differ
diff --git a/builds/4chan-X-noupdate.user.js b/builds/4chan-X-noupdate.user.js
index e94c4bf95..96d549ef7 100644
--- a/builds/4chan-X-noupdate.user.js
+++ b/builds/4chan-X-noupdate.user.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.14.20.0
+// @version 1.14.20.1
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -218,7 +218,7 @@ docSet = function() {
};
g = {
- VERSION: '1.14.20.0',
+ VERSION: '1.14.20.1',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@@ -12244,7 +12244,7 @@ Index = (function() {
thread = new Thread(ID, g.BOARD);
newThreads.push(thread);
}
- lastPost = threadData.last_replies ? threadData.last_replies[threadData.last_replies.length - 1].no : ID;
+ lastPost = threadData.last_replies && threadData.last_replies.length ? threadData.last_replies[threadData.last_replies.length - 1].no : ID;
if (lastPost > thread.lastPost) {
thread.lastPost = lastPost;
}
diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx
index 58dd9b425..bac8730f1 100644
Binary files a/builds/4chan-X.crx and b/builds/4chan-X.crx differ
diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js
index 48836c164..e2d894e7f 100644
--- a/builds/4chan-X.meta.js
+++ b/builds/4chan-X.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.14.20.0
+// @version 1.14.20.1
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js
index 31b85f717..e895c5204 100644
--- a/builds/4chan-X.user.js
+++ b/builds/4chan-X.user.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.14.20.0
+// @version 1.14.20.1
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -218,7 +218,7 @@ docSet = function() {
};
g = {
- VERSION: '1.14.20.0',
+ VERSION: '1.14.20.1',
NAMESPACE: '4chan X.',
sites: Object.create(null),
boards: Object.create(null)
@@ -12244,7 +12244,7 @@ Index = (function() {
thread = new Thread(ID, g.BOARD);
newThreads.push(thread);
}
- lastPost = threadData.last_replies ? threadData.last_replies[threadData.last_replies.length - 1].no : ID;
+ lastPost = threadData.last_replies && threadData.last_replies.length ? threadData.last_replies[threadData.last_replies.length - 1].no : ID;
if (lastPost > thread.lastPost) {
thread.lastPost = lastPost;
}
diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip
index e27829434..3ac031347 100644
Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ
diff --git a/builds/updates-beta.json b/builds/updates-beta.json
index c95d45e2c..87cb909a8 100644
--- a/builds/updates-beta.json
+++ b/builds/updates-beta.json
@@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
- "version": "1.14.20.0",
+ "version": "1.14.20.1",
"update_link": "https://www.4chan-x.net/builds/4chan-X-beta.crx"
}
]
diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml
index 31354104e..c3bac2875 100644
--- a/builds/updates-beta.xml
+++ b/builds/updates-beta.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/builds/updates.json b/builds/updates.json
index 86e5c0dec..7d2d8b019 100644
--- a/builds/updates.json
+++ b/builds/updates.json
@@ -3,7 +3,7 @@
"4chan-x@4chan-x.net": {
"updates": [
{
- "version": "1.14.20.0",
+ "version": "1.14.20.1",
"update_link": "https://www.4chan-x.net/builds/4chan-X.crx"
}
]
diff --git a/builds/updates.xml b/builds/updates.xml
index cc2c12005..12cb65fef 100644
--- a/builds/updates.xml
+++ b/builds/updates.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/version.json b/version.json
index 1b571cf04..a6ef085c9 100644
--- a/version.json
+++ b/version.json
@@ -1,4 +1,4 @@
{
- "version": "1.14.20.0",
- "date": "2020-06-16T08:56:06.279Z"
+ "version": "1.14.20.1",
+ "date": "2020-08-24T15:40:29.833Z"
}
\ No newline at end of file