Plugin Directory

Changeset 3372750


Ignore:
Timestamp:
10/04/2025 08:26:45 AM (6 months ago)
Author:
alexus450
Message:

Update to version 1.0.2 from GitHub

Location:
quickpick
Files:
6 deleted
4 edited
1 copied

Legend:

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

    r2816813 r3372750  
    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.1
    7  * Author:            Alex Samarschi
     6 * Version:           1.0.2
     7 * Author:            Alexei Samarschi
    88 * Author URI:        https://profiles.wordpress.org/alexus450/
    99 * License:           GPL v2 or later
     
    1111 * Text Domain:       quickpick
    1212 * Domain Path:       /languages
     13 * Requires at least: 5.0
     14 * Requires PHP:      5.6
     15 * Tested up to:      6.8
     16 * Update URI:        https://wordpress.org/plugins/quickpick/
    1317 */
    1418
     
    141145            }
    142146
     147            $desc = '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small>';
     148            $frontpage_id = get_option( 'page_on_front' );
     149            if( empty( $frontpage_id ) ) {
     150                $desc = '';
     151            }
     152
    143153            $out = '<label class="qp-dropdown">
    144154                        <div class="qp-button">QuikPick</div>
    145155                        <input type="checkbox" class="qp-input" id="quickpick-input">
    146156                        <ul class="qp-menu">
    147                             <li class="homepage-link">' . $this->get_frontpage_edit_link() . '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small></li>
     157                            <li class="homepage-link">' . $this->get_frontpage_edit_link() . $desc . '</li>
    148158                            <li>' . $this->last_updated_pages() . '</li>
    149159                            <li class="divider"></li>
     
    284294                            position: absolute;
    285295                            top: 100%;
    286                             border-radius: 4px;
     296                            border-radius: 5px;
    287297                            padding: 0;
    288298                            margin: 2px 0 0 0;
    289                             box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
     299                            box-shadow: 1px 2px 5px 1px rgba(178.5, 178.5, 178.5, 0.5607843137254902);
    290300                            background-color: #ffffff;
    291301                            list-style-type: none;
  • quickpick/tags/1.0.2/readme.txt

    r2816815 r3372750  
    33Donate link: http://paypal.me/gt330/5usd
    44Tags: quick edit, edit post, edit page, recently, edited
    5 Requires at least: 5.5
    6 Tested up to: 6.1
    7 Requires PHP: 7.2
    8 Stable tag: 1.0.1
     5Requires at least: 5.0
     6Requires PHP: 5.6
     7Tested up to: 6.8
     8Stable tag: 1.0.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    1111
    12 QuickPick is a tiny WordPress plugin will help you to save time on finding recently editing posts or pages.
     12QuickPick is a tiny WordPress plugin that will help you save time on finding recently edited posts or pages.
    1313
    1414== Description ==
    1515
    16 QuickPick will display your last 5 edited posts or pages so you can access and edit them.
     16QuickPick displays your last 5 edited posts or pages in a convenient dropdown menu, allowing you to quickly jump to content you've been working on. Perfect for content creators, editors, and developers who frequently edit multiple posts or pages.
    1717
     18**Key Features:**
     19* Quick access to recently edited posts and pages
     20* Clean, intuitive dropdown interface
     21* Homepage link integration for pages
     22* Lightweight and fast
     23* No configuration required
    1824
    19 == Why was this plugin created? ==
    20 
    21 This plugin was created to save time to find the just recently edit page or post, in case you need to modify/edit it again.
     25**Perfect for:**
     26* Content creators who work on multiple posts
     27* Editors managing various pages
     28* Developers who frequently edit content
     29* Anyone who wants to save time navigating WordPress admin
    2230
    2331
     
    26341. Install QuickPick either via the Plugins > Add New page in your WordPress Dashboard, or by downloading the plugin and uploading the file in Plugins > Add New.
    2735
    28 2. After activating QuickPick, a button will appear in the Post/Page Quick Links menu.
     362. After activating QuickPick, a "QuickPick" button will appear in the Post/Page admin list views.
    2937
     383. Click the button to see your recently edited content and quickly jump to edit any item.
     39
     40== Frequently Asked Questions ==
     41
     42= Does this plugin work with custom post types? =
     43
     44Currently, QuickPick works with standard posts and pages. Custom post type support may be added in future versions.
     45
     46= How many items does QuickPick show? =
     47
     48QuickPick displays the last 5 edited posts or pages by default.
     49
     50= Does QuickPick affect site performance? =
     51
     52No, QuickPick is lightweight and only loads when you're in the WordPress admin area. It has minimal impact on your site's performance.
     53
     54= Is QuickPick compatible with WordPress multisite? =
     55
     56Yes, QuickPick works with both single-site and multisite WordPress installations.
    3057
    3158== Screenshots ==
    3259
    33 1. Posts list with the quickpick button
    34 2. Pages list with the quickpick button
     601. Posts list with the QuickPick button
     612. Pages list with the QuickPick button showing homepage link
    3562
    3663== Changelog ==
     64
     65= 1.0.2 =
     66* Minor fixes
     67* Compatibility WordPress Version 6.8
    3768
    3869= 1.0.1 =
  • quickpick/trunk/quickpick.php

    r2816813 r3372750  
    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.1
    7  * Author:            Alex Samarschi
     6 * Version:           1.0.2
     7 * Author:            Alexei Samarschi
    88 * Author URI:        https://profiles.wordpress.org/alexus450/
    99 * License:           GPL v2 or later
     
    1111 * Text Domain:       quickpick
    1212 * Domain Path:       /languages
     13 * Requires at least: 5.0
     14 * Requires PHP:      5.6
     15 * Tested up to:      6.8
     16 * Update URI:        https://wordpress.org/plugins/quickpick/
    1317 */
    1418
     
    141145            }
    142146
     147            $desc = '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small>';
     148            $frontpage_id = get_option( 'page_on_front' );
     149            if( empty( $frontpage_id ) ) {
     150                $desc = '';
     151            }
     152
    143153            $out = '<label class="qp-dropdown">
    144154                        <div class="qp-button">QuikPick</div>
    145155                        <input type="checkbox" class="qp-input" id="quickpick-input">
    146156                        <ul class="qp-menu">
    147                             <li class="homepage-link">' . $this->get_frontpage_edit_link() . '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small></li>
     157                            <li class="homepage-link">' . $this->get_frontpage_edit_link() . $desc . '</li>
    148158                            <li>' . $this->last_updated_pages() . '</li>
    149159                            <li class="divider"></li>
     
    284294                            position: absolute;
    285295                            top: 100%;
    286                             border-radius: 4px;
     296                            border-radius: 5px;
    287297                            padding: 0;
    288298                            margin: 2px 0 0 0;
    289                             box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
     299                            box-shadow: 1px 2px 5px 1px rgba(178.5, 178.5, 178.5, 0.5607843137254902);
    290300                            background-color: #ffffff;
    291301                            list-style-type: none;
  • quickpick/trunk/readme.txt

    r2816815 r3372750  
    33Donate link: http://paypal.me/gt330/5usd
    44Tags: quick edit, edit post, edit page, recently, edited
    5 Requires at least: 5.5
    6 Tested up to: 6.1
    7 Requires PHP: 7.2
    8 Stable tag: 1.0.1
     5Requires at least: 5.0
     6Requires PHP: 5.6
     7Tested up to: 6.8
     8Stable tag: 1.0.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    1111
    12 QuickPick is a tiny WordPress plugin will help you to save time on finding recently editing posts or pages.
     12QuickPick is a tiny WordPress plugin that will help you save time on finding recently edited posts or pages.
    1313
    1414== Description ==
    1515
    16 QuickPick will display your last 5 edited posts or pages so you can access and edit them.
     16QuickPick displays your last 5 edited posts or pages in a convenient dropdown menu, allowing you to quickly jump to content you've been working on. Perfect for content creators, editors, and developers who frequently edit multiple posts or pages.
    1717
     18**Key Features:**
     19* Quick access to recently edited posts and pages
     20* Clean, intuitive dropdown interface
     21* Homepage link integration for pages
     22* Lightweight and fast
     23* No configuration required
    1824
    19 == Why was this plugin created? ==
    20 
    21 This plugin was created to save time to find the just recently edit page or post, in case you need to modify/edit it again.
     25**Perfect for:**
     26* Content creators who work on multiple posts
     27* Editors managing various pages
     28* Developers who frequently edit content
     29* Anyone who wants to save time navigating WordPress admin
    2230
    2331
     
    26341. Install QuickPick either via the Plugins > Add New page in your WordPress Dashboard, or by downloading the plugin and uploading the file in Plugins > Add New.
    2735
    28 2. After activating QuickPick, a button will appear in the Post/Page Quick Links menu.
     362. After activating QuickPick, a "QuickPick" button will appear in the Post/Page admin list views.
    2937
     383. Click the button to see your recently edited content and quickly jump to edit any item.
     39
     40== Frequently Asked Questions ==
     41
     42= Does this plugin work with custom post types? =
     43
     44Currently, QuickPick works with standard posts and pages. Custom post type support may be added in future versions.
     45
     46= How many items does QuickPick show? =
     47
     48QuickPick displays the last 5 edited posts or pages by default.
     49
     50= Does QuickPick affect site performance? =
     51
     52No, QuickPick is lightweight and only loads when you're in the WordPress admin area. It has minimal impact on your site's performance.
     53
     54= Is QuickPick compatible with WordPress multisite? =
     55
     56Yes, QuickPick works with both single-site and multisite WordPress installations.
    3057
    3158== Screenshots ==
    3259
    33 1. Posts list with the quickpick button
    34 2. Pages list with the quickpick button
     601. Posts list with the QuickPick button
     612. Pages list with the QuickPick button showing homepage link
    3562
    3663== Changelog ==
     64
     65= 1.0.2 =
     66* Minor fixes
     67* Compatibility WordPress Version 6.8
    3768
    3869= 1.0.1 =
Note: See TracChangeset for help on using the changeset viewer.