From b3aff95d5ebb7035d5ca4b0ef5332e3a58939bcf Mon Sep 17 00:00:00 2001 From: Ilmari Karonen Date: Sat, 3 Oct 2015 15:08:30 +0300 Subject: [PATCH] release v1.37.5 as v1.38.0 --- CHANGELOG.md | 8 +++++--- README.md | 4 ++-- SOUP.meta.js | 10 +++++----- SOUP.user.js | 10 +++++----- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2c3ae5..f90e678 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,12 @@ This is a list of new fixes and other changes made to SOUP during its continued SOUP version numbering generally follows the _major.minor.patch_ scheme. Odd minor versions (1.1.x, 1.3.x, 1.5.x, etc.) are reserved for unstable development versions ("devel" branch on [GitHub][github]), while even ones denote stable releases ("master" branch on [GitHub][github]). The change log below thus only includes even version numbers, as changes between development versions are too numerous to list. -1.37 (development) +1.38 (3 Oct 2015) ==== -**New fixes in 1.37.x:** +This release contains a couple of fixes to the image upload dialog (mse266523, mse264307 and mse266779), a few CSS fixes and one rather interesting accessibility fix ([mse265889](http://meta.stackexchange.com/q/265889)) which should actually be invisible to everyone, but audible to people using a screen reader. There's also a bunch of changes to the "SOUP framework" that should make certain kinds of fixes faster, more reliable and easier to implement. + +**New fixes in 1.38.0:** * [mse265889: Improve answer navigation for screen readers](http://meta.stackexchange.com/q/265889) * [mse266258: Left side markdown diff outside of its area](http://meta.stackexchange.com/q/266258) (CSS) @@ -20,7 +22,7 @@ SOUP version numbering generally follows the _major.minor.patch_ scheme. Odd mi * Content filters are now (hopefully) applied correctly to edited posts reloaded via Ajax. * Content filters applied to new / updated posts no longer need to reprocess all posts on the page. -* The content filter Ajax hook regexp is no longer exposed as `SOUP.contentFilterRegexp`. +* The content filter Ajax hook regexp is no longer exposed as `SOUP.contentFilterRegexp` (because we now use several hooks with different regexps). * Ajax hooks can now receive the result of their regexp match as a fourth parameter. * New `SOUP.subscribeToQuestion()` helper method for subscribing to realtime events (votes, accepts, etc.) on question pages. * The [mse115702](http://meta.stackexchange.com/q/115702) fix (enable delete link when downvoting an answer to -1) now uses the realtime event feed. diff --git a/README.md b/README.md index 8f5dd4e..95ca78e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ - + ![](http://i.stack.imgur.com/IzzhJ.png "SOUP logo") @@ -29,7 +29,7 @@ SOUP can also be used on other browsers with compatible user script support, suc Included fixes -------------- -SOUP v1.37 (devel) includes fixes or workarounds for the following issues. +SOUP v1.38 includes fixes or workarounds for the following issues. The fixes highlighted in **boldface** include particularly major interface improvements or fix particularly severe or widespread issues. The choice of which fixes to highlight is unavoidably somewhat subjective, but in my personal opinion, these are the fixes you should actually install SOUP for — the rest are just icing on the cake. diff --git a/SOUP.meta.js b/SOUP.meta.js index 7f156f1..8828539 100644 --- a/SOUP.meta.js +++ b/SOUP.meta.js @@ -1,9 +1,9 @@ // ==UserScript== // @name Stack Overflow Unofficial Patch // @namespace https://github.com/vyznev/ -// @description Miscellaneous client-side fixes for bugs on Stack Exchange sites (development) +// @description Miscellaneous client-side fixes for bugs on Stack Exchange sites // @author Ilmari Karonen -// @version 1.37.5 +// @version 1.38.0 // @copyright 2014-2015, Ilmari Karonen (http://stackapps.com/users/10283/ilmari-karonen) // @license ISC; http://opensource.org/licenses/ISC // @match *://*.stackexchange.com/* @@ -14,9 +14,9 @@ // @match *://*.mathoverflow.net/* // @match *://*.askubuntu.com/* // @homepageURL http://stackapps.com/questions/4486/stack-overflow-unofficial-patch -// @updateURL https://github.com/vyznev/soup/raw/devel/SOUP.meta.js -// @downloadURL https://github.com/vyznev/soup/raw/devel/SOUP.user.js -// @icon https://github.com/vyznev/soup/raw/devel/icon/SOUP_icon_128.png +// @updateURL https://github.com/vyznev/soup/raw/master/SOUP.meta.js +// @downloadURL https://github.com/vyznev/soup/raw/master/SOUP.user.js +// @icon https://github.com/vyznev/soup/raw/master/icon/SOUP_icon_128.png // @grant none // @run-at document-start // ==/UserScript== diff --git a/SOUP.user.js b/SOUP.user.js index 8dedbe8..d6efca5 100644 --- a/SOUP.user.js +++ b/SOUP.user.js @@ -1,9 +1,9 @@ // ==UserScript== // @name Stack Overflow Unofficial Patch // @namespace https://github.com/vyznev/ -// @description Miscellaneous client-side fixes for bugs on Stack Exchange sites (development) +// @description Miscellaneous client-side fixes for bugs on Stack Exchange sites // @author Ilmari Karonen -// @version 1.37.5 +// @version 1.38.0 // @copyright 2014-2015, Ilmari Karonen (http://stackapps.com/users/10283/ilmari-karonen) // @license ISC; http://opensource.org/licenses/ISC // @match *://*.stackexchange.com/* @@ -14,9 +14,9 @@ // @match *://*.mathoverflow.net/* // @match *://*.askubuntu.com/* // @homepageURL http://stackapps.com/questions/4486/stack-overflow-unofficial-patch -// @updateURL https://github.com/vyznev/soup/raw/devel/SOUP.meta.js -// @downloadURL https://github.com/vyznev/soup/raw/devel/SOUP.user.js -// @icon https://github.com/vyznev/soup/raw/devel/icon/SOUP_icon_128.png +// @updateURL https://github.com/vyznev/soup/raw/master/SOUP.meta.js +// @downloadURL https://github.com/vyznev/soup/raw/master/SOUP.user.js +// @icon https://github.com/vyznev/soup/raw/master/icon/SOUP_icon_128.png // @grant none // @run-at document-start // ==/UserScript==