Changeset 3445119
- Timestamp:
- 01/22/2026 07:21:56 PM (7 weeks ago)
- Location:
- peak-publisher
- Files:
-
- 3 edited
- 19 copied
-
tags/1.1.1 (copied) (copied from peak-publisher/trunk)
-
tags/1.1.1/assets/css/admin.css (copied) (copied from peak-publisher/trunk/assets/css/admin.css)
-
tags/1.1.1/assets/js/admin.js (copied) (copied from peak-publisher/trunk/assets/js/admin.js)
-
tags/1.1.1/assets/js/api.js (copied) (copied from peak-publisher/trunk/assets/js/api.js)
-
tags/1.1.1/assets/js/components/GlobalDropOverlay.js (copied) (copied from peak-publisher/trunk/assets/js/components/GlobalDropOverlay.js) (1 diff)
-
tags/1.1.1/assets/js/components/PluginEditor.js (copied) (copied from peak-publisher/trunk/assets/js/components/PluginEditor.js)
-
tags/1.1.1/assets/js/components/PluginList.js (copied) (copied from peak-publisher/trunk/assets/js/components/PluginList.js)
-
tags/1.1.1/assets/js/components/Settings.js (copied) (copied from peak-publisher/trunk/assets/js/components/Settings.js)
-
tags/1.1.1/assets/js/stores (copied) (copied from peak-publisher/trunk/assets/js/stores)
-
tags/1.1.1/assets/js/utils-upload.js (copied) (copied from peak-publisher/trunk/assets/js/utils-upload.js)
-
tags/1.1.1/assets/js/utils.js (copied) (copied from peak-publisher/trunk/assets/js/utils.js)
-
tags/1.1.1/classes/AdminAPI.php (copied) (copied from peak-publisher/trunk/classes/AdminAPI.php)
-
tags/1.1.1/classes/AdminUI.php (copied) (copied from peak-publisher/trunk/classes/AdminUI.php)
-
tags/1.1.1/classes/PublicAPI.php (copied) (copied from peak-publisher/trunk/classes/PublicAPI.php)
-
tags/1.1.1/classes/UploadWorkflow.php (copied) (copied from peak-publisher/trunk/classes/UploadWorkflow.php)
-
tags/1.1.1/includes/functions.php (copied) (copied from peak-publisher/trunk/includes/functions.php)
-
tags/1.1.1/libs (copied) (copied from peak-publisher/trunk/libs)
-
tags/1.1.1/peak-publisher.php (copied) (copied from peak-publisher/trunk/peak-publisher.php) (1 diff)
-
tags/1.1.1/readme.txt (copied) (copied from peak-publisher/trunk/readme.txt) (2 diffs)
-
trunk/assets/js/components/GlobalDropOverlay.js (modified) (1 diff)
-
trunk/peak-publisher.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
peak-publisher/tags/1.1.1/assets/js/components/GlobalDropOverlay.js
r3444907 r3445119 407 407 (!is_natural_successor || next_release) && { 408 408 title: __('Unexpected version number', 'peak-publisher'), 409 type: ( previous_release.normalized_version === latest_release.normalized_version || useOlderPluginVersion) && (is_natural_successor || useUnexpectedPluginVersion) ? 'ok' : 'error',409 type: (!next_release || useOlderPluginVersion) && (!previous_release || is_natural_successor || (previous_release && !is_natural_successor && useUnexpectedPluginVersion)) ? 'ok' : 'error', 410 410 desc: [ 411 411 next_release && [ -
peak-publisher/tags/1.1.1/peak-publisher.php
r3444907 r3445119 4 4 * Plugin Name: Peak Publisher 5 5 * Description: The easiest way to self-host, manage and publish your own custom plugins. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 8.1 -
peak-publisher/tags/1.1.1/readme.txt
r3444907 r3445119 9 9 Requires PHP: 8.1 10 10 Tested up to: 6.9 11 Stable tag: 1.1. 011 Stable tag: 1.1.1 12 12 License: GPLv2 or later 13 13 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 109 109 == Changelog == 110 110 111 = 1.1.1 - 2026-01-22 = 112 * Fixed small issue in version number validation logic 113 111 114 = 1.1.0 - 2026-01-22 = 112 115 * Added Features: -
peak-publisher/trunk/assets/js/components/GlobalDropOverlay.js
r3444907 r3445119 407 407 (!is_natural_successor || next_release) && { 408 408 title: __('Unexpected version number', 'peak-publisher'), 409 type: ( previous_release.normalized_version === latest_release.normalized_version || useOlderPluginVersion) && (is_natural_successor || useUnexpectedPluginVersion) ? 'ok' : 'error',409 type: (!next_release || useOlderPluginVersion) && (!previous_release || is_natural_successor || (previous_release && !is_natural_successor && useUnexpectedPluginVersion)) ? 'ok' : 'error', 410 410 desc: [ 411 411 next_release && [ -
peak-publisher/trunk/peak-publisher.php
r3444907 r3445119 4 4 * Plugin Name: Peak Publisher 5 5 * Description: The easiest way to self-host, manage and publish your own custom plugins. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requires at least: 5.8 8 8 * Requires PHP: 8.1 -
peak-publisher/trunk/readme.txt
r3444907 r3445119 9 9 Requires PHP: 8.1 10 10 Tested up to: 6.9 11 Stable tag: 1.1. 011 Stable tag: 1.1.1 12 12 License: GPLv2 or later 13 13 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 109 109 == Changelog == 110 110 111 = 1.1.1 - 2026-01-22 = 112 * Fixed small issue in version number validation logic 113 111 114 = 1.1.0 - 2026-01-22 = 112 115 * Added Features:
Note: See TracChangeset
for help on using the changeset viewer.