Skip to content

Commit

Permalink
release v1.37.5 as v1.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vyznev committed Oct 3, 2015
1 parent f1aa65a commit b3aff95
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- thumbnail: http://i.stack.imgur.com/8EphO.png -->
<!-- version: 1.37.x -->
<!-- version: 1.38.0 -->

![](http://i.stack.imgur.com/IzzhJ.png "SOUP logo")

Expand Down Expand Up @@ -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 &mdash; the rest are just icing on the cake.

Expand Down
10 changes: 5 additions & 5 deletions SOUP.meta.js
Original file line number Diff line number Diff line change
@@ -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/*
Expand All @@ -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==
Expand Down
10 changes: 5 additions & 5 deletions SOUP.user.js
Original file line number Diff line number Diff line change
@@ -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/*
Expand All @@ -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==
Expand Down

0 comments on commit b3aff95

Please sign in to comment.