Plugin Directory

Changeset 3404779


Ignore:
Timestamp:
11/28/2025 07:25:23 AM (4 months ago)
Author:
alexus450
Message:

Update to version 1.0.4 from GitHub

Location:
quickpick
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • quickpick/tags/1.0.4/quickpick.php

    r3375497 r3404779  
    44 * Plugin URI:        https://wordpress.org/plugins/quickpick
    55 * Description:       QuickPick is a tiny WordPress plugin that will help you to save time on finding just recently editing posts.
    6  * Version:           1.0.3
     6 * Version:           1.0.4
    77 * Author:            Alexei Samarschi
    88 * Author URI:        https://profiles.wordpress.org/alexus450/
     
    1313 * Requires at least: 5.0
    1414 * Requires PHP:      5.6
    15  * Tested up to:      6.8
     15 * Tested up to:      6.9
    1616 * Update URI:        https://wordpress.org/plugins/quickpick/
    1717 */
     
    196196                $out .= '<li>
    197197                            <a href="' . get_edit_post_link( $query->post->ID ) . '">
    198                                 ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date() . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
     198                                ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
    199199                            </a>
    200200                        </li>';
     
    232232                $out .= '<li>
    233233                            <a href="' . get_edit_post_link( $query->post->ID ) . '">
    234                                 ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date() . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
     234                                ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
    235235                            </a>
    236236                        </li>';
  • quickpick/tags/1.0.4/readme.txt

    r3375497 r3404779  
    55Requires at least: 5.0
    66Requires PHP: 5.6
    7 Tested up to: 6.8
    8 Stable tag: 1.0.3
     7Tested up to: 6.9
     8Stable tag: 1.0.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    6565== Changelog ==
    6666
     67= 1.0.4 =
     68* Minor fix
     69* Compatibility WordPress Version 6.9
     70
    6771= 1.0.3 =
    6872* Added action link in pages list to set page as homepage with one click
  • quickpick/trunk/quickpick.php

    r3375497 r3404779  
    44 * Plugin URI:        https://wordpress.org/plugins/quickpick
    55 * Description:       QuickPick is a tiny WordPress plugin that will help you to save time on finding just recently editing posts.
    6  * Version:           1.0.3
     6 * Version:           1.0.4
    77 * Author:            Alexei Samarschi
    88 * Author URI:        https://profiles.wordpress.org/alexus450/
     
    1313 * Requires at least: 5.0
    1414 * Requires PHP:      5.6
    15  * Tested up to:      6.8
     15 * Tested up to:      6.9
    1616 * Update URI:        https://wordpress.org/plugins/quickpick/
    1717 */
     
    196196                $out .= '<li>
    197197                            <a href="' . get_edit_post_link( $query->post->ID ) . '">
    198                                 ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date() . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
     198                                ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
    199199                            </a>
    200200                        </li>';
     
    232232                $out .= '<li>
    233233                            <a href="' . get_edit_post_link( $query->post->ID ) . '">
    234                                 ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date() . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
     234                                ' . get_the_title( $query->post->ID ) . '  <span>' . esc_html__( 'edited:', 'quickpick' ) . ' ' . get_the_modified_date( 'Y/m/d' ) . ' ' . esc_html__( 'at', 'quickpick' ) . ' ' . get_the_modified_time() . '</span>
    235235                            </a>
    236236                        </li>';
  • quickpick/trunk/readme.txt

    r3375497 r3404779  
    55Requires at least: 5.0
    66Requires PHP: 5.6
    7 Tested up to: 6.8
    8 Stable tag: 1.0.3
     7Tested up to: 6.9
     8Stable tag: 1.0.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
     
    6565== Changelog ==
    6666
     67= 1.0.4 =
     68* Minor fix
     69* Compatibility WordPress Version 6.9
     70
    6771= 1.0.3 =
    6872* Added action link in pages list to set page as homepage with one click
Note: See TracChangeset for help on using the changeset viewer.