Release 4chan X v1.2.26.

This commit is contained in:
seaweedchan 2013-08-12 01:29:44 -07:00
parent 58d06b4db6
commit caf7c67c62
9 changed files with 24 additions and 14 deletions

View File

@ -1,3 +1,6 @@
### v1.2.26
*2013-08-12*
**MayhemYDG**: **MayhemYDG**:
- Show dice rolls that were entered into the email field on /tg/. - Show dice rolls that were entered into the email field on /tg/.
- Fix flag filtering on /sp/ and /int/. - Fix flag filtering on /sp/ and /int/.

View File

@ -1,5 +1,6 @@
module.exports = (grunt) -> module.exports = (grunt) ->
pkg = grunt.file.readJSON 'package.json'
concatOptions = concatOptions =
process: Object.create(null, data: process: Object.create(null, data:
get: -> grunt.config 'pkg' get: -> grunt.config 'pkg'
@ -12,7 +13,7 @@ module.exports = (grunt) ->
# Project configuration. # Project configuration.
grunt.initConfig grunt.initConfig
pkg: grunt.file.readJSON 'package.json' pkg: pkg
concat: concat:
coffee: coffee:
options: concatOptions options: concatOptions
@ -174,22 +175,28 @@ module.exports = (grunt) ->
] ]
grunt.registerTask 'patch', [ grunt.registerTask 'patch', [
'bump' 'bump'
'reloadPkg'
'updcl:3' 'updcl:3'
'release'
] ]
grunt.registerTask 'minor', [ grunt.registerTask 'minor', [
'bump:minor' 'bump:minor'
'reloadPkg'
'updcl:2' 'updcl:2'
'release'
] ]
grunt.registerTask 'major', [ grunt.registerTask 'major', [
'bump:major' 'bump:major'
'reloadPkg'
'updcl:1' 'updcl:1'
'release'
] ]
grunt.registerTask 'reloadPkg', 'Reload the package', ->
# Update the `pkg` object with the new version.
pkg = grunt.file.readJSON('package.json')
grunt.config.data.pkg = concatOptions.process.data = pkg
grunt.log.ok('pkg reloaded.')
grunt.registerTask 'updcl', 'Update the changelog', (i) -> grunt.registerTask 'updcl', 'Update the changelog', (i) ->
# i is the number of #s for markdown. # i is the number of #s for markdown.
version = [] version = []

View File

@ -1,5 +1,5 @@
/* /*
* 4chan X - Version 1.2.25 - 2013-08-12 * 4chan X - Version 1.2.26 - 2013-08-12
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE

View File

@ -1,6 +1,6 @@
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.2.25 // @version 1.2.26
// @namespace 4chan-X // @namespace 4chan-X
// @description Cross-browser userscript for maximum lurking on 4chan. // @description Cross-browser userscript for maximum lurking on 4chan.
// @license MIT; https://github.com/seaweedchan/4chan-x/blob/master/LICENSE // @license MIT; https://github.com/seaweedchan/4chan-x/blob/master/LICENSE

View File

@ -1,7 +1,7 @@
// Generated by CoffeeScript // Generated by CoffeeScript
// ==UserScript== // ==UserScript==
// @name 4chan X // @name 4chan X
// @version 1.2.25 // @version 1.2.26
// @namespace 4chan-X // @namespace 4chan-X
// @description Cross-browser userscript for maximum lurking on 4chan. // @description Cross-browser userscript for maximum lurking on 4chan.
// @license MIT; https://github.com/seaweedchan/4chan-x/blob/master/LICENSE // @license MIT; https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
@ -19,7 +19,7 @@
// @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAgMAAAAqbBEUAAAACVBMVEUAAGcAAABmzDNZt9VtAAAAAXRSTlMAQObYZgAAAHFJREFUKFOt0LENACEIBdBv4Qju4wgWanEj3D6OcIVMKaitYHEU/jwTCQj8W75kiVCSBvdQ5/AvfVHBin11BgdRq3ysBgfwBDRrj3MCIA+oAQaku/Q1cNctrAmyDl577tOThYt/Y1RBM4DgOHzM0HFTAyLukH/cmRnqAAAAAElFTkSuQmCC // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwAgMAAAAqbBEUAAAACVBMVEUAAGcAAABmzDNZt9VtAAAAAXRSTlMAQObYZgAAAHFJREFUKFOt0LENACEIBdBv4Qju4wgWanEj3D6OcIVMKaitYHEU/jwTCQj8W75kiVCSBvdQ5/AvfVHBin11BgdRq3ysBgfwBDRrj3MCIA+oAQaku/Q1cNctrAmyDl577tOThYt/Y1RBM4DgOHzM0HFTAyLukH/cmRnqAAAAAElFTkSuQmCC
// ==/UserScript== // ==/UserScript==
/* /*
* 4chan X - Version 1.2.25 - 2013-08-12 * 4chan X - Version 1.2.26 - 2013-08-12
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
@ -324,7 +324,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.2.25', VERSION: '1.2.26',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {}, boards: {},
threads: {}, threads: {},

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan X", "name": "4chan X",
"version": "1.2.25", "version": "1.2.26",
"manifest_version": 2, "manifest_version": 2,
"description": "Cross-browser userscript for maximum lurking on 4chan.", "description": "Cross-browser userscript for maximum lurking on 4chan.",
"icons": { "icons": {

View File

@ -1,6 +1,6 @@
// Generated by CoffeeScript // Generated by CoffeeScript
/* /*
* 4chan X - Version 1.2.25 - 2013-08-12 * 4chan X - Version 1.2.26 - 2013-08-12
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/seaweedchan/4chan-x/blob/master/LICENSE * https://github.com/seaweedchan/4chan-x/blob/master/LICENSE
@ -305,7 +305,7 @@
doc = d.documentElement; doc = d.documentElement;
g = { g = {
VERSION: '1.2.25', VERSION: '1.2.26',
NAMESPACE: '4chan X.', NAMESPACE: '4chan X.',
boards: {}, boards: {},
threads: {}, threads: {},

View File

@ -1 +1 @@
postMessage({version:'1.2.25'},'*') postMessage({version:'1.2.26'},'*')

View File

@ -1,6 +1,6 @@
{ {
"name": "4chan-X", "name": "4chan-X",
"version": "1.2.25", "version": "1.2.26",
"description": "Cross-browser userscript for maximum lurking on 4chan.", "description": "Cross-browser userscript for maximum lurking on 4chan.",
"meta": { "meta": {
"name": "4chan X", "name": "4chan X",