Plugin Directory

Changeset 3491890


Ignore:
Timestamp:
03/26/2026 02:55:53 PM (33 hours ago)
Author:
jeromesteunenberg
Message:

Release version 0.0.7

Location:
pushpull
Files:
154 added
6 edited

Legend:

Unmodified
Added
Removed
  • pushpull/trunk/README.md

    r3491811 r3491890  
    66Tested up to: 6.9
    77Requires PHP: 8.1
    8 Stable tag: 0.0.6
     8Stable tag: 0.0.7
    99License: GPLv2
    1010License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
     
    150150## Changelog
    151151
     152### 0.0.7
     153
     1541. Fixed WordPress block pattern apply/export escaping so `\\u002d` sequences survive correctly in both `post_content` and pattern meta.
     1552. Removed creation and modification timestamps from generic post-type canonical items to avoid false diffs across environments.
     1563. Changed the `All Managed Sets` overview so each managed set starts collapsed by default.
     157
    152158### 0.0.6
    153159
  • pushpull/trunk/pushpull.php

    r3491811 r3491890  
    55 * Plugin URI: https://github.com/creativemoods/pushpull
    66 * Description: Git-backed content workflows for selected WordPress content domains.
    7  * Version: 0.0.6
     7 * Version: 0.0.7
    88 * Requires at least: 6.0
    99 * Requires PHP: 8.1
     
    2323define('PUSHPULL_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2424define('PUSHPULL_PLUGIN_URL', plugin_dir_url(__FILE__));
    25 define('PUSHPULL_VERSION', '0.0.6');
     25define('PUSHPULL_VERSION', '0.0.7');
    2626
    2727if (is_readable(PUSHPULL_PLUGIN_DIR . 'vendor/autoload.php')) {
  • pushpull/trunk/readme.txt

    r3491811 r3491890  
    55Tested up to: 6.9
    66Requires PHP: 8.1
    7 Stable tag: 0.0.6
     7Stable tag: 0.0.7
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    156156== Changelog ==
    157157
     158= 0.0.7 =
     159
     1601. Fixed WordPress block pattern apply/export escaping so `\\u002d` sequences survive correctly in both `post_content` and pattern meta.
     1612. Removed creation and modification timestamps from generic post-type canonical items to avoid false diffs across environments.
     1623. Changed the `All Managed Sets` overview so each managed set starts collapsed by default.
     163
    158164= 0.0.6 =
    159165
  • pushpull/trunk/src/Admin/ManagedContentPage.php

    r3491811 r3491890  
    216216            $workingState = $row['workingState'];
    217217
    218             echo '<details class="pushpull-tree-browser" open="open">';
     218            echo '<details class="pushpull-tree-browser">';
    219219            printf(
    220220                '<summary>%s <span class="pushpull-diff-badge pushpull-diff-badge-%s">%s</span></summary>',
  • pushpull/trunk/src/Content/AbstractWordPressPostTypeAdapter.php

    r3491690 r3491890  
    6363    protected function buildDerived(array $record): array
    6464    {
    65         return [
    66             'postDate' => (string) ($record['post_date'] ?? ''),
    67             'postModified' => (string) ($record['post_modified'] ?? ''),
    68         ];
     65        return [];
    6966    }
    7067
     
    410407        ];
    411408
     409        $postData = wp_slash($postData);
     410
    412411        if ($existingId !== null) {
    413412            $postData['ID'] = $existingId;
     
    426425
    427426        foreach ($this->normalizeMetaEntries($item->metadata['postMeta'] ?? []) as $entry) {
    428             add_post_meta($postId, $entry['key'], $entry['value']);
     427            add_post_meta($postId, $entry['key'], wp_slash($entry['value']));
    429428        }
    430429
  • pushpull/trunk/vendor/composer/installed.php

    r3491811 r3491890  
    22    'root' => array(
    33        'name' => 'creativemoods/pushpull',
    4         'pretty_version' => 'v0.0.6',
    5         'version' => '0.0.6.0',
    6         'reference' => '85e48be568a8ff67b6f70e9eb00bc5f7bfb164f9',
     4        'pretty_version' => 'v0.0.7',
     5        'version' => '0.0.7.0',
     6        'reference' => '2b65ebaa93d2735c374b70a3c7f452f1f6f286b1',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'creativemoods/pushpull' => array(
    14             'pretty_version' => 'v0.0.6',
    15             'version' => '0.0.6.0',
    16             'reference' => '85e48be568a8ff67b6f70e9eb00bc5f7bfb164f9',
     14            'pretty_version' => 'v0.0.7',
     15            'version' => '0.0.7.0',
     16            'reference' => '2b65ebaa93d2735c374b70a3c7f452f1f6f286b1',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.