Plugin Directory

Changeset 3010559


Ignore:
Timestamp:
12/15/2023 01:06:30 PM (2 years ago)
Author:
ifatwp
Message:

Updated Plugin

Location:
blog-reading-progress-bar/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • blog-reading-progress-bar/trunk/README.md

    r3009602 r3010559  
    44Tags: progress bar, reading progress, blog, posts
    55Requires PHP :7.3
     6Requires at least :5.6
    67Tested up to: WordPress 6.3.3
    7 Stable tag: 1.0.0
     8Stable tag: 1.0.1
    89License: GPLv2 or later
    910License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    10 
    1111
    1212Adds a reading progress bar to blog posts.
     
    2525== Installation ==
    2626
    27 1. Upload the `reading-progress-bar` folder to the `/wp-content/plugins/` directory.
     271. Upload the `blog-reading-progress-bar` folder to the `/wp-content/plugins/` directory.
    28282. Activate the plugin through the 'Plugins' menu in WordPress.
    29 3. Go to 'Reading Progress Bar' in the WordPress dashboard to configure the plugin settings.
     293. Go to 'Blog Reading Progress Bar' in the WordPress dashboard to configure the plugin settings.
    3030
    3131== Configuration ==
    3232
    33 1. Navigate to 'Settings' > 'Reading Progress Bar' in the WordPress dashboard.
     331. Navigate to 'Settings' > 'Blog Reading Progress Bar' in the WordPress dashboard.
    34342. Customize the options according to your preference, such as the color and height of the progress bar.
    35353. Choose whether to display the progress bar on all posts or specific posts.
     
    4040= How can I customize the appearance of the progress bar? =
    4141
    42 You can modify the color and height of the progress bar by navigating to 'Settings' > 'Reading Progress Bar' in the WordPress dashboard. Use the provided options to adjust the settings to your liking.
     42You can modify the color and height of the progress bar by navigating to 'Settings' > 'Blog Reading Progress Bar' in the WordPress dashboard. Use the provided options to adjust the settings to your liking.
    4343
    4444= Can I enable the progress bar on specific posts only?
     
    4848== Changelog ==
    4949
    50 = 1.0.0 =
    51 * Initial release.
     50== 1.0.1 ==
    5251
    53 == Upgrade Notice ==
     52Text domain updated to plugin slug
     53Pot File Added
    5454
    5555= 1.0.0 =
    5656Initial release of the Reading Progress Bar plugin.
    5757
     58== Upgrade Notice ==
     59
    5860== Screenshots ==
    5961
    60621. Progress bar displayed on a blog post.
     63   ![Progress Bar on Blog Post](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-4.png)
     64
    61652. Plugin settings page in the WordPress dashboard.
     66   ![Plugin Settings](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-2.png)
     67
     683. Plugin settings option in the post editor.
     69   ![Plugin Settings](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-3.png)
     70
     714. Plugin settings in menu.
     72   ![Plugin Settings](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-1.png)
    6273
    6374== Upgrade Notice ==
    6475
    65 = 1.0.0 =
    66 Initial release of the Reading Progress Bar plugin.
    6776
    6877== License ==
  • blog-reading-progress-bar/trunk/blog-reading-progress-bar.php

    r3009602 r3010559  
    44 * Plugin URI:        https://ifatwp.wordpress.com/2023/10/17/blog-reading-progress/
    55 * Description:       Adds a reading progress bar to blog posts.
    6  * Version:           1.0.0
     6 * Version:           1.0.1
    77 * Requires at least: 5.6
    88 * Requires PHP:      7.3
     
    1212 * License URI:       https://www.gnu.org/licenses/gpl-2.0.html
    1313 * Update URI:        https://ifatwp.wordpress.com/2023/10/17/blog-reading-progress/
    14  * Text Domain:       blog-reading-progress
     14 * Text Domain:       blog-reading-progress-bar
    1515 * Domain Path:       /languages
    1616 */
     17
    1718if (!defined('ABSPATH')) {
    1819    exit; // Exit if accessed directly.
     
    3637         * @var version.
    3738         */
    38         protected static $version = '1.0.0';
     39        protected static $version = '1.0.1';
    3940
    4041        /**
     
    152153        public function reading_progress_bar_options_page()
    153154        {
    154             add_options_page(__('Reading Progress Bar Settings', 'blog-reading-progres'), __('Reading Progress Bar', 'blog-reading-progress'), 'manage_options', 'brp-reading-progress-bar-settings', array($this, 'reading_progress_bar_render_options_page'));
     155            add_options_page(__('Reading Progress Bar Settings', 'blog-reading-progress-bar'), __('Reading Progress Bar', 'blog-reading-progress-bar'), 'manage_options', 'brp-reading-progress-bar-settings', array($this, 'reading_progress_bar_render_options_page'));
    155156        }
    156157
     
    170171            add_meta_box(
    171172                'brp_reading_progress_bar_meta_box',
    172                 __('Reading Progress Bar', 'blog-reading-progres'),
     173                __('Reading Progress Bar', 'blog-reading-progress-bar'),
    173174                array($this, 'reading_progress_bar_meta_box_callback'),
    174175                'post',
     
    190191                <label for="brp_reading-progress-bar-checkbox">
    191192                    <input type="checkbox" name="brp_reading_progress_bar_display" id="brp_reading-progress-bar-checkbox" value="1" <?php checked($checked);?> />
    192                     <span> <?php esc_html_e('Display reading progress bar on this post', 'blog-reading-progres');?> </span>
     193                    <span> <?php esc_html_e('Display reading progress bar on this post', 'blog-reading-progress-bar');?> </span>
    193194                </label>
    194195            <?php
  • blog-reading-progress-bar/trunk/inc/reader-options.php

    r3009602 r3010559  
    11<div class="wrap">
    2     <h2><?php esc_html_e('Reading Progress Bar Settings', 'blog-reading-progress');?></h2>
     2    <h2><?php esc_html_e('Reading Progress Bar Settings', 'blog-reading-progress-bar');?></h2>
    33    <form method="post" action="options.php">
    44        <?php settings_fields('brp_reading_progress_bar_options_group');?>
    55        <?php $options = get_option('brp_reading_progress_bar_options');?>
    66
    7         <h3><?php esc_html_e('Appearance', 'blog-reading-progress');?> </h3>
     7        <h3><?php esc_html_e('Appearance', 'blog-reading-progress-bar');?> </h3>
    88        <table class="form-table">
    99            <tr valign="top">
    10                 <th scope="row"><?php esc_html_e('Color', 'blog-reading-progress');?> :</th>
     10                <th scope="row"><?php esc_html_e('Color', 'blog-reading-progress-bar');?> :</th>
    1111                <td><input type="color" name="brp_reading_progress_bar_options[color]" value="<?php echo esc_attr($options['color']); ?>" /></td>
    1212            </tr>
    1313            <tr valign="top">
    14                 <th scope="row"><?php esc_html_e('Height', 'blog-reading-progress');?>:</th>
    15                 <td><input type="number" name="brp_reading_progress_bar_options[height]" min="1" step="1" value="<?php echo esc_attr($options['height'] ?? ''); ?>" /> <?php esc_html_e('pixels', 'blog-reading-progress');?></td>
     14                <th scope="row"><?php esc_html_e('Height', 'blog-reading-progress-bar');?>:</th>
     15                <td><input type="number" name="brp_reading_progress_bar_options[height]" min="1" step="1" value="<?php echo esc_attr($options['height'] ?? ''); ?>" /> <?php esc_html_e('pixels', 'blog-reading-progress-bar');?></td>
    1616            </tr>
    1717        </table>
     
    2020        <table class="form-table">
    2121            <tr valign="top">
    22                 <th scope="row"> <?php esc_html_e('Show on Posts', 'blog-reading-progress');?> :</th>
     22                <th scope="row"> <?php esc_html_e('Show on Posts', 'blog-reading-progress-bar');?> :</th>
    2323                <td><input type="checkbox" name="brp_reading_progress_bar_options[show_on_posts]" value="1" <?php checked($options['show_on_posts'] ?? '', true);?> /></td>
    2424            </tr>
  • blog-reading-progress-bar/trunk/languages/blog-reading-progres.pot

    r3010556 r3010559  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Blog Reading Progress Bar 1.0.0\n"
     5"Project-Id-Version: Blog Reading Progress Bar 1.0.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/blog-reading-progress\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-12-15T12:50:47+00:00\n"
     12"POT-Creation-Date: 2023-12-15T13:14:42+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
    15 "X-Domain: blog-reading-progress\n"
     15"X-Domain: blog-reading-progress-bar\n"
    1616
    1717#. Plugin Name of the plugin
     
    3535msgstr ""
    3636
    37 #: blog-reading-progress-bar.php:154
     37#: blog-reading-progress-bar.php:155
     38#: inc/reader-options.php:2
     39msgid "Reading Progress Bar Settings"
     40msgstr ""
     41
     42#: blog-reading-progress-bar.php:155
     43#: blog-reading-progress-bar.php:173
    3844msgid "Reading Progress Bar"
    3945msgstr ""
    4046
    41 #: inc/reader-options.php:2
    42 msgid "Reading Progress Bar Settings"
     47#: blog-reading-progress-bar.php:193
     48msgid "Display reading progress bar on this post"
    4349msgstr ""
    4450
  • blog-reading-progress-bar/trunk/readme.txt

    r3010204 r3010559  
    66Requires at least :5.6
    77Tested up to: WordPress 6.3.3
    8 Stable tag: 1.0.0
     8Stable tag: 1.0.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.txt
    11 
    1211
    1312Adds a reading progress bar to blog posts.
     
    2625== Installation ==
    2726
    28 1. Upload the `reading-progress-bar` folder to the `/wp-content/plugins/` directory.
     271. Upload the `blog-reading-progress-bar` folder to the `/wp-content/plugins/` directory.
    29282. Activate the plugin through the 'Plugins' menu in WordPress.
    30 3. Go to 'Reading Progress Bar' in the WordPress dashboard to configure the plugin settings.
     293. Go to 'Blog Reading Progress Bar' in the WordPress dashboard to configure the plugin settings.
    3130
    3231== Configuration ==
    3332
    34 1. Navigate to 'Settings' > 'Reading Progress Bar' in the WordPress dashboard.
     331. Navigate to 'Settings' > 'Blog Reading Progress Bar' in the WordPress dashboard.
    35342. Customize the options according to your preference, such as the color and height of the progress bar.
    36353. Choose whether to display the progress bar on all posts or specific posts.
     
    4140= How can I customize the appearance of the progress bar? =
    4241
    43 You can modify the color and height of the progress bar by navigating to 'Settings' > 'Reading Progress Bar' in the WordPress dashboard. Use the provided options to adjust the settings to your liking.
     42You can modify the color and height of the progress bar by navigating to 'Settings' > 'Blog Reading Progress Bar' in the WordPress dashboard. Use the provided options to adjust the settings to your liking.
    4443
    4544= Can I enable the progress bar on specific posts only?
     
    4948== Changelog ==
    5049
    51 = 1.0.0 =
    52 * Initial release.
     50== 1.0.1 ==
    5351
    54 == Upgrade Notice ==
     52Text domain updated to plugin slug
     53Pot File Added
    5554
    5655= 1.0.0 =
    5756Initial release of the Reading Progress Bar plugin.
    5857
     58== Upgrade Notice ==
     59
    5960== Screenshots ==
    6061
    61621. Progress bar displayed on a blog post.
     63   ![Progress Bar on Blog Post](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-4.png)
     64
    62652. Plugin settings page in the WordPress dashboard.
     66   ![Plugin Settings](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-2.png)
     67
     683. Plugin settings option in the post editor.
     69   ![Plugin Settings](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-3.png)
     70
     714. Plugin settings in menu.
     72   ![Plugin Settings](https://plugins.trac.wordpress.org/browser/blog-reading-progress-bar/assets/Screenshot-1.png)
    6373
    6474== Upgrade Notice ==
    6575
    66 = 1.0.0 =
    67 Initial release of the Reading Progress Bar plugin.
    6876
    6977== License ==
Note: See TracChangeset for help on using the changeset viewer.