Release appchan x v2.9.29.
This commit is contained in:
parent
e0f0eabee4
commit
b94ebd5d83
52
CHANGELOG.md
52
CHANGELOG.md
@ -1,16 +1,12 @@
|
|||||||
|
**Zixaphir**:
|
||||||
|
- Bugfix
|
||||||
|
|
||||||
### v2.9.28
|
### v2.9.28
|
||||||
*2014-05-27*
|
*2014-05-27*
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
### v2.9.26
|
|
||||||
*2014-05-07*
|
|
||||||
=======
|
|
||||||
**MayhemYDG**:
|
**MayhemYDG**:
|
||||||
- [Security fix](https://github.com/MayhemYDG/4chan-x/issues/1634).
|
- [Security fix](https://github.com/MayhemYDG/4chan-x/issues/1634).
|
||||||
|
|
||||||
### v1.7.33
|
|
||||||
*2014-05-10*
|
|
||||||
|
|
||||||
**DamonGant**
|
**DamonGant**
|
||||||
- Add Innovandalism Archive.
|
- Add Innovandalism Archive.
|
||||||
|
|
||||||
@ -18,59 +14,25 @@
|
|||||||
- Update archive list.
|
- Update archive list.
|
||||||
- Add "disabled" option when Foolz Beta is the only choice.
|
- Add "disabled" option when Foolz Beta is the only choice.
|
||||||
|
|
||||||
### v1.7.32
|
|
||||||
*2014-05-10*
|
|
||||||
|
|
||||||
**Zixaphir, ccd0**
|
**Zixaphir, ccd0**
|
||||||
- Bug fixes in linkification/embedding.
|
- Bug fixes in linkification/embedding.
|
||||||
|
|
||||||
**ccd0**
|
**ccd0**
|
||||||
- Begin refactoring code to reduce potential for introducing Javascript injection bugs.
|
- Begin refactoring code to reduce potential for introducing Javascript injection bugs.
|
||||||
|
- Fix some potential Javascript injection issues.
|
||||||
### v1.7.31
|
- Bug fixes.
|
||||||
*2014-05-08*
|
|
||||||
|
|
||||||
**Zixaphir**
|
**Zixaphir**
|
||||||
- Refactoring, bug fixes.
|
- Refactoring, bug fixes.
|
||||||
|
|
||||||
**ccd0**
|
|
||||||
- Fix some potential Javascript injection issues.
|
|
||||||
- Bug fixes.
|
|
||||||
|
|
||||||
### v1.7.30
|
|
||||||
*2014-05-05*
|
|
||||||
|
|
||||||
**thebladeee**
|
**thebladeee**
|
||||||
- Update archives.
|
- Update archives.
|
||||||
|
|
||||||
### v1.7.29
|
|
||||||
*2014-05-03*
|
|
||||||
|
|
||||||
**ccd0**:
|
|
||||||
- If the original post form not hidden, it is expanded (except on the catalog page).
|
|
||||||
- 4chan's horizontal rules are no longer hidden. If you want to hide them as before, add the old code to your custom CSS:
|
|
||||||
```
|
|
||||||
body > hr,
|
|
||||||
#blotter hr,
|
|
||||||
.desktop > hr,
|
|
||||||
#delform > hr,
|
|
||||||
#content > hr {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
:root.index .board > hr:last-of-type,
|
|
||||||
:root.thread .board > hr {
|
|
||||||
border: 0px;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### v1.7.28
|
|
||||||
*2014-05-03*
|
|
||||||
|
|
||||||
**ccd0**:
|
**ccd0**:
|
||||||
- Copy Mayhem's fix for 4chan post form changes.
|
- Copy Mayhem's fix for 4chan post form changes.
|
||||||
>>>>>>> v3
|
|
||||||
|
|
||||||
|
### v2.9.26
|
||||||
|
*2014-05-07*
|
||||||
**zixaphir**
|
**zixaphir**
|
||||||
- Fixed (maybe?) a vulnerability in the post parser that allowed playful users to inject scripts or elements into posts, which could be used maliciously.
|
- Fixed (maybe?) a vulnerability in the post parser that allowed playful users to inject scripts or elements into posts, which could be used maliciously.
|
||||||
|
|
||||||
|
|||||||
2
LICENSE
2
LICENSE
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* appchan x - Version 2.9.28 - 2014-05-29
|
* appchan x - Version 2.9.29 - 2014-05-29
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name appchan x
|
// @name appchan x
|
||||||
// @version 2.9.28
|
// @version 2.9.29
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace zixaphir
|
// @namespace zixaphir
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name appchan x
|
// @name appchan x
|
||||||
// @version 2.9.28
|
// @version 2.9.29
|
||||||
// @minGMVer 1.14
|
// @minGMVer 1.14
|
||||||
// @minFFVer 26
|
// @minFFVer 26
|
||||||
// @namespace zixaphir
|
// @namespace zixaphir
|
||||||
@ -25,7 +25,7 @@
|
|||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* appchan x - Version 2.9.28 - 2014-05-29
|
* appchan x - Version 2.9.29 - 2014-05-29
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
||||||
@ -483,7 +483,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '2.9.28',
|
VERSION: '2.9.29',
|
||||||
NAMESPACE: 'appchan_x.',
|
NAMESPACE: 'appchan_x.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
|
|||||||
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "appchan x",
|
"name": "appchan x",
|
||||||
"version": "2.9.28",
|
"version": "2.9.29",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "The most comprehensive 4chan userscript.",
|
"description": "The most comprehensive 4chan userscript.",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
// Generated by CoffeeScript
|
// Generated by CoffeeScript
|
||||||
/*
|
/*
|
||||||
* appchan x - Version 2.9.28 - 2014-05-29
|
* appchan x - Version 2.9.29 - 2014-05-29
|
||||||
*
|
*
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE
|
||||||
@ -458,7 +458,7 @@
|
|||||||
doc = d.documentElement;
|
doc = d.documentElement;
|
||||||
|
|
||||||
g = {
|
g = {
|
||||||
VERSION: '2.9.28',
|
VERSION: '2.9.29',
|
||||||
NAMESPACE: 'appchan_x.',
|
NAMESPACE: 'appchan_x.',
|
||||||
boards: {}
|
boards: {}
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "appchan-x",
|
"name": "appchan-x",
|
||||||
"version": "2.9.28",
|
"version": "2.9.29",
|
||||||
"description": "The most comprehensive 4chan userscript.",
|
"description": "The most comprehensive 4chan userscript.",
|
||||||
"meta": {
|
"meta": {
|
||||||
"name": "appchan x",
|
"name": "appchan x",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user