diff --git a/CHANGELOG.md b/CHANGELOG.md
index e9c73f81b..75a1b9ccb 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+### v1.8.4
+*2014-07-02*
+
**ccd0**
- Fix an archived-post bug introduced in v1.8.3.
diff --git a/LICENSE b/LICENSE
index 9c7864901..f0df98a9e 100755
--- a/LICENSE
+++ b/LICENSE
@@ -1,5 +1,5 @@
/*
-* 4chan X - Version 1.8.3 - 2014-07-01
+* 4chan X - Version 1.8.4 - 2014-07-02
*
* Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx
index fb7f449b6..e862cca6a 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 a1691631f..98acdb3e2 100644
--- a/builds/4chan-X-beta.meta.js
+++ b/builds/4chan-X-beta.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.8.3
+// @version 1.8.4
// @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 483ef1ac1..d638be252 100644
--- a/builds/4chan-X-beta.user.js
+++ b/builds/4chan-X-beta.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.8.3
+// @version 1.8.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -24,7 +24,7 @@
// ==/UserScript==
/*
-* 4chan X - Version 1.8.3 - 2014-07-01
+* 4chan X - Version 1.8.4 - 2014-07-02
*
* Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
@@ -375,7 +375,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.8.3',
+ VERSION: '1.8.4',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -3578,7 +3578,9 @@
post = new Post(Build.post(o), thread, board, {
isArchived: true
});
- post.file.thumbURL = o.file.turl;
+ if (post.file) {
+ post.file.thumbURL = o.file.turl;
+ }
post.isFetchedQuote = true;
Main.callbackNodes(Post, [post]);
return Get.insert(post, root, context);
@@ -12401,7 +12403,7 @@
Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings',
className: 'dialog',
- innerHTML: '
'
+ innerHTML: ''
});
$.on($('.export', Settings.dialog), 'click', Settings["export"]);
$.on($('.import', Settings.dialog), 'click', Settings["import"]);
@@ -13253,7 +13255,7 @@
}
if (previousversion) {
el = $.el('span', {
- innerHTML: '4chan X has been updated to version 1.8.3.'
+ innerHTML: '4chan X has been updated to version 1.8.4.'
});
new Notice('info', el, 15);
} else {
diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx
index 925848d3a..f21e2cdce 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 43c902060..bdd726c6b 100644
--- a/builds/4chan-X-noupdate.user.js
+++ b/builds/4chan-X-noupdate.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.8.3
+// @version 1.8.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -23,7 +23,7 @@
// ==/UserScript==
/*
-* 4chan X - Version 1.8.3 - 2014-07-01
+* 4chan X - Version 1.8.4 - 2014-07-02
*
* Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
@@ -374,7 +374,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.8.3',
+ VERSION: '1.8.4',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -3577,7 +3577,9 @@
post = new Post(Build.post(o), thread, board, {
isArchived: true
});
- post.file.thumbURL = o.file.turl;
+ if (post.file) {
+ post.file.thumbURL = o.file.turl;
+ }
post.isFetchedQuote = true;
Main.callbackNodes(Post, [post]);
return Get.insert(post, root, context);
@@ -12400,7 +12402,7 @@
Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings',
className: 'dialog',
- innerHTML: ''
+ innerHTML: ''
});
$.on($('.export', Settings.dialog), 'click', Settings["export"]);
$.on($('.import', Settings.dialog), 'click', Settings["import"]);
@@ -13252,7 +13254,7 @@
}
if (previousversion) {
el = $.el('span', {
- innerHTML: '4chan X has been updated to version 1.8.3.'
+ innerHTML: '4chan X has been updated to version 1.8.4.'
});
new Notice('info', el, 15);
} else {
diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx
index 250432a0b..45bc15a3b 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 e69ff2f65..9cc7cae74 100644
--- a/builds/4chan-X.meta.js
+++ b/builds/4chan-X.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.8.3
+// @version 1.8.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js
index 76593200f..9561c57f9 100644
--- a/builds/4chan-X.user.js
+++ b/builds/4chan-X.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.8.3
+// @version 1.8.4
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -24,7 +24,7 @@
// ==/UserScript==
/*
-* 4chan X - Version 1.8.3 - 2014-07-01
+* 4chan X - Version 1.8.4 - 2014-07-02
*
* Licensed under the MIT license.
* https://github.com/ccd0/4chan-x/blob/master/LICENSE
@@ -375,7 +375,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.8.3',
+ VERSION: '1.8.4',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -3578,7 +3578,9 @@
post = new Post(Build.post(o), thread, board, {
isArchived: true
});
- post.file.thumbURL = o.file.turl;
+ if (post.file) {
+ post.file.thumbURL = o.file.turl;
+ }
post.isFetchedQuote = true;
Main.callbackNodes(Post, [post]);
return Get.insert(post, root, context);
@@ -12401,7 +12403,7 @@
Settings.dialog = dialog = $.el('div', {
id: 'fourchanx-settings',
className: 'dialog',
- innerHTML: ''
+ innerHTML: ''
});
$.on($('.export', Settings.dialog), 'click', Settings["export"]);
$.on($('.import', Settings.dialog), 'click', Settings["import"]);
@@ -13253,7 +13255,7 @@
}
if (previousversion) {
el = $.el('span', {
- innerHTML: '4chan X has been updated to version 1.8.3.'
+ innerHTML: '4chan X has been updated to version 1.8.4.'
});
new Notice('info', el, 15);
} else {
diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip
index 5487f095b..681d42c3d 100644
Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ
diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml
index cf41680e7..6a8aa6006 100644
--- a/builds/updates-beta.xml
+++ b/builds/updates-beta.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/builds/updates.xml b/builds/updates.xml
index 780506e3b..eca1974b5 100644
--- a/builds/updates.xml
+++ b/builds/updates.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/package.json b/package.json
index 65135c8aa..d3ecfe569 100755
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "4chan-X",
- "version": "1.8.3",
+ "version": "1.8.4",
"description": "Cross-browser userscript for maximum lurking on 4chan.",
"meta": {
"name": "4chan X",