Plugin Directory

Changeset 2109906


Ignore:
Timestamp:
06/21/2019 05:33:59 AM (7 years ago)
Author:
jamiechong
Message:

Version 2.3.1

Location:
revisionize/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • revisionize/trunk/readme.txt

    r1956151 r2109906  
    33Tags: revision, schedule, cron, staging, variation, publishing, content, stage
    44Requires at least: 4.4
    5 Tested up to: 4.9
     5Tested up to: 5.2.2
    66Stable tag: trunk
    77License: GPLv3 or later
     
    1919Visit [revisionize.pro](https://revisionize.pro) to add functionality that makes Revisionize even more powerful.
    2020
    21 
    22 
    2321= Compatible with =
    2422
     
    2624* [Public Post Preview](https://wordpress.org/plugins/public-post-preview/)
    2725* *Let us know other plugins that you have successfully used Revisionize with*
     26
     27= Known Issues =
     28
     29* Gutenberge. Revisionize is not compatible with the default Gutenberg editor. You must install the [Classic Editor](https://wordpress.org/plugins/classic-editor/) plugin.
     30* WP Recipe Maker. There have been reported issues that indicate Revisionize does not work with this plugin. However, we could not verify these reports. Use at your own risk.
     31* Some plugins store content in their own database tables, which Revisionize knows nothing about. It's possible that publishing a revision will not save changes for these types of plugins. Revisionize will only work with content stored in the `wp_posts` and `wp_postmeta` tables.
    2832
    2933Please post in the support section for help before leaving a negative review!
     
    3943
    4044== Changelog ==
     45
     46= 2.3.1 =
     47* Fix. Add missing i18n domain.
     48* Improvement. Add Known Issues to readme.
    4149
    4250= 2.3.0 =
  • revisionize/trunk/revisionize.php

    r1956151 r2109906  
    44 Plugin URI: https://revisionize.pro
    55 Description: Draft up revisions of live, published content. The live content doesn't change until you publish the revision manually or with the scheduling system.
    6  Version: 2.3.0
     6 Version: 2.3.1
    77 Author: Jamie Chong
    88 Author URI: https://revisionize.pro
     
    331331    </div>
    332332  <?php else: ?>
    333     <div><em><?php echo sprintf(__('WARNING: Publishing this revision will overwrite %s.'), get_parent_editlink($parent, __('its original')))?></em></div>
     333    <div><em><?php echo sprintf(__('WARNING: Publishing this revision will overwrite %s.', REVISIONIZE_I18N_DOMAIN), get_parent_editlink($parent, __('its original', REVISIONIZE_I18N_DOMAIN)))?></em></div>
    334334  <?php endif;
    335335}
     
    373373  wp_add_dashboard_widget(
    374374    'revisionize-posts-needing-review',    // ID of the widget.
    375     __('Revisionized Posts Needing Review'),                // Title of the widget.
     375    __('Revisionized Posts Needing Review', REVISIONIZE_I18N_DOMAIN),                // Title of the widget.
    376376    __NAMESPACE__.'\\do_dashboard_widget'  // Callback.
    377377  );
Note: See TracChangeset for help on using the changeset viewer.