Skip to content

Commit b329c09

Browse files
committed
composer update
1 parent 9efa05f commit b329c09

File tree

4 files changed

+33
-30
lines changed

4 files changed

+33
-30
lines changed

composer.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languages/github-updater.pot

+21-21
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# This file is distributed under the same license as the GitHub Updater plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: GitHub Updater 8.7.3\n"
5+
"Project-Id-Version: GitHub Updater 8.8.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/github-updater\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <[email protected]>\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2019-04-09T04:15:06+00:00\n"
12+
"POT-Creation-Date: 2019-06-12T00:38:56+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14-
"X-Generator: WP-CLI 2.1.0\n"
14+
"X-Generator: WP-CLI 2.2.0\n"
1515
"X-Domain: github-updater\n"
1616

1717
#. Plugin Name of the plugin
@@ -157,65 +157,65 @@ msgstr ""
157157
msgid "Installed Plugins and Themes"
158158
msgstr ""
159159

160-
#: src/GitHub_Updater/Plugin.php:326
160+
#: src/GitHub_Updater/Plugin.php:324
161161
msgid "View details"
162162
msgstr ""
163163

164164
#. translators: %s: theme name
165-
#: src/GitHub_Updater/Theme.php:340
166-
#: src/GitHub_Updater/Theme.php:536
165+
#: src/GitHub_Updater/Theme.php:333
166+
#: src/GitHub_Updater/Theme.php:529
167167
msgid "There is a new version of %s available."
168168
msgstr ""
169169

170170
#. translators: %s: theme version
171-
#: src/GitHub_Updater/Theme.php:352
171+
#: src/GitHub_Updater/Theme.php:345
172172
msgid "View version %s details."
173173
msgstr ""
174174

175-
#: src/GitHub_Updater/Theme.php:356
175+
#: src/GitHub_Updater/Theme.php:349
176176
msgid "Automatic update is unavailable for this theme."
177177
msgstr ""
178178

179179
#. translators: 1: version number, 2: closing anchor tag, 3: update URL
180-
#: src/GitHub_Updater/Theme.php:361
181-
#: src/GitHub_Updater/Theme.php:546
180+
#: src/GitHub_Updater/Theme.php:354
181+
#: src/GitHub_Updater/Theme.php:539
182182
msgid "View version %1$s details%2$s or %3$supdate now%2$s."
183183
msgstr ""
184184

185185
#. translators: %s: theme name
186-
#: src/GitHub_Updater/Theme.php:366
187-
#: src/GitHub_Updater/Theme.php:551
186+
#: src/GitHub_Updater/Theme.php:359
187+
#: src/GitHub_Updater/Theme.php:544
188188
msgid "Update %s now"
189189
msgstr ""
190190

191191
#. translators: 1: branch name, 2: jQuery dropdown, 3: closing tag
192-
#: src/GitHub_Updater/Theme.php:588
193-
#: src/GitHub_Updater/Base.php:912
192+
#: src/GitHub_Updater/Theme.php:581
193+
#: src/GitHub_Updater/Base.php:828
194194
msgid "Current branch is `%1$s`, try %2$sanother version%3$s"
195195
msgstr ""
196196

197-
#: src/GitHub_Updater/Theme.php:596
197+
#: src/GitHub_Updater/Theme.php:589
198198
msgid "Choose a Version"
199199
msgstr ""
200200

201-
#: src/GitHub_Updater/Theme.php:614
202-
#: src/GitHub_Updater/Base.php:947
201+
#: src/GitHub_Updater/Theme.php:607
202+
#: src/GitHub_Updater/Base.php:863
203203
msgid "No previous tags to rollback to."
204204
msgstr ""
205205

206-
#: src/GitHub_Updater/Theme.php:618
206+
#: src/GitHub_Updater/Theme.php:611
207207
msgid "Install"
208208
msgstr ""
209209

210-
#: src/GitHub_Updater/Base.php:447
210+
#: src/GitHub_Updater/Base.php:446
211211
msgid "There may be a problem with WP-Cron. A GitHub Updater WP-Cron event is overdue."
212212
msgstr ""
213213

214-
#: src/GitHub_Updater/Base.php:923
214+
#: src/GitHub_Updater/Base.php:839
215215
msgid "Switch to branch "
216216
msgstr ""
217217

218-
#: src/GitHub_Updater/Base.php:939
218+
#: src/GitHub_Updater/Base.php:855
219219
msgid "Switch to release "
220220
msgstr ""
221221

vendor/afragen/wordpress-plugin-readme-parser/class-parser.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,10 @@ protected function sanitize_tested_version( $version ) {
613613
// x.y or x.y.z
614614
! preg_match( '!^\d+\.\d(\.\d+)?$!', $version ) ||
615615
// Allow plugins to mark themselves as compatible with Stable+0.1 (trunk/master) but not higher
616-
defined( 'WP_CORE_STABLE_BRANCH' ) && ( (float)$version > (float)WP_CORE_STABLE_BRANCH+0.1 )
616+
(
617+
defined( 'WP_CORE_STABLE_BRANCH' ) &&
618+
version_compare( (float)$version, (float)WP_CORE_STABLE_BRANCH+0.1, '>' )
619+
)
617620
) {
618621
$this->warnings['tested_header_ignored'] = true;
619622
// Ignore the readme value.

vendor/composer/installed.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@
5050
"source": {
5151
"type": "git",
5252
"url": "https://github.com/afragen/wordpress-plugin-readme-parser.git",
53-
"reference": "df96450ef96aafee3db3c86c67cf7f3119519a07"
53+
"reference": "2ae820e44b0d53766557bb3b38f8908539799c83"
5454
},
5555
"dist": {
5656
"type": "zip",
57-
"url": "https://api.github.com/repos/afragen/wordpress-plugin-readme-parser/zipball/df96450ef96aafee3db3c86c67cf7f3119519a07",
58-
"reference": "df96450ef96aafee3db3c86c67cf7f3119519a07",
57+
"url": "https://api.github.com/repos/afragen/wordpress-plugin-readme-parser/zipball/2ae820e44b0d53766557bb3b38f8908539799c83",
58+
"reference": "2ae820e44b0d53766557bb3b38f8908539799c83",
5959
"shasum": ""
6060
},
6161
"require": {
6262
"erusev/parsedown": "^1.7",
6363
"php": ">=5.4"
6464
},
65-
"time": "2019-01-05T16:19:09+00:00",
65+
"time": "2019-04-11T04:09:48+00:00",
6666
"type": "library",
6767
"installation-source": "dist",
6868
"autoload": {

0 commit comments

Comments
 (0)