diff --git a/LICENSE b/LICENSE index e4ab16804..944acacf1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ /* -* appchan x - Version 2.9.35 - 2014-08-24 +* appchan x - Version 2.9.35 - 2014-09-07 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index e8ba4032d..10b562229 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -28,7 +28,7 @@ // ==/UserScript== /* -* appchan x - Version 2.9.35 - 2014-08-24 +* appchan x - Version 2.9.35 - 2014-09-07 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -5786,7 +5786,7 @@ var n; n = 0; return function() { - return n = (n + 1) % 3; + return n = (n + 1) % 2; }; })(), path: function(boardID, threadID, postID, fragment) { diff --git a/builds/crx/script.js b/builds/crx/script.js index 6d6a49caa..dd8e043ee 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -1,6 +1,6 @@ // Generated by CoffeeScript /* -* appchan x - Version 2.9.35 - 2014-08-24 +* appchan x - Version 2.9.35 - 2014-09-07 * * Licensed under the MIT license. * https://github.com/zixaphir/appchan-x/blob/master/LICENSE @@ -5837,7 +5837,7 @@ var n; n = 0; return function() { - return n = (n + 1) % 3; + return n = (n + 1) % 2; }; })(), path: function(boardID, threadID, postID, fragment) { diff --git a/src/General/Build.coffee b/src/General/Build.coffee index b827f417d..714ecbc39 100755 --- a/src/General/Build.coffee +++ b/src/General/Build.coffee @@ -14,7 +14,7 @@ Build = filename thumbRotate: do -> n = 0 - -> n = (n + 1) % 3 + -> n = (n + 1) % 2 path: (boardID, threadID, postID, fragment) -> path = "/#{boardID}/thread/#{threadID}" path += "/#{g.SLUG}" if g.SLUG? and threadID is g.THREADID