Plugin Directory

Changeset 514865


Ignore:
Timestamp:
03/05/2012 07:11:47 PM (14 years ago)
Author:
redcocker
Message:
 
Location:
plugin-directory-stats/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • plugin-directory-stats/trunk/japanese.txt

    r514627 r514865  
    1101108.履歴
    111111
     1122012/3/6 バージョン 0.1.1 リリース
     113※ 設定画面で「3.システム情報」の「Plugin Directory Statsのバージョン」が表示されない不具合を修正。
     114※ 設定画面で「3.システム情報」の「Plugin Directory StatsのDBバージョン」が表示されない不具合を修正。
     115※ 設定画面で「3.システム情報」の「Plugin Directory StatsのURL」が表示されない不具合を修正。
     116
    1121172012/3/5 バージョン 0.1 リリース
    113118
  • plugin-directory-stats/trunk/plugin-directory-stats-admin.php

    r514627 r514865  
    33For dashboard
    44by Redcocker
    5 Last modified: 2012/3/5
     5Last modified: 2012/3/6
    66License: GPL v2
    77http://www.near-mint.com/blog/
     
    9292    <?php _e("WordPress character set:", "plugin_dir_stats") ?> <?php bloginfo("charset"); ?><br />
    9393    <?php _e("WordPress theme:", "plugin_dir_stats") ?> <?php $plugin_dir_stats_theme = get_theme(get_current_theme()); echo $plugin_dir_stats_theme['Name'].' '.$plugin_dir_stats_theme['Version']; ?><br />
    94     <?php _e("Plugin Directory Stats version:", "plugin_dir_stats") ?> <?php echo $this->plugin_stat_ver; ?><br />
    95     <?php _e("Plugin Directory Stats DB version:", "plugin_dir_stats") ?> <?php echo get_option('plugin_stat_checkver_stamp'); ?><br />
    96     <?php _e("Plugin Directory Stats URL:", "plugin_dir_stats") ?> <?php echo $this->plugin_stat_plugin_url; ?><br />
     94    <?php _e("Plugin Directory Stats version:", "plugin_dir_stats") ?> <?php echo $this->plugin_dir_stats_ver; ?><br />
     95    <?php _e("Plugin Directory Stats DB version:", "plugin_dir_stats") ?> <?php echo get_option('plugin_dir_stats_checkver_stamp'); ?><br />
     96    <?php _e("Plugin Directory Stats URL:", "plugin_dir_stats") ?> <?php echo $this->plugin_dir_stats_plugin_url; ?><br />
    9797    <?php _e("Your browser:", "plugin_dir_stats") ?> <?php echo esc_html($_SERVER['HTTP_USER_AGENT']); ?>
    9898    </p>
  • plugin-directory-stats/trunk/plugin-directory-stats.php

    r514627 r514865  
    44Plugin URI: http://www.near-mint.com/blog/
    55Description: This plugin gets plugin's download count and other stats from WordPress.ORG and allows you to show them on your blog using shortcode.
    6 Version: 0.1
     6Version: 0.1.1
    77Author: redcocker
    88Author URI: http://www.near-mint.com/blog/
     
    1111*/
    1212/*
    13 Last modified: 2012/3/5
     13Last modified: 2012/3/6
    1414License: GPL v2
    1515*/
     
    3434class PLUGIN_DIRECTORY_STATS {
    3535    var $plugin_dir_stats_plugin_url;
    36     var $plugin_dir_stats_ver = "0.1";
     36    var $plugin_dir_stats_ver = "0.1.1";
    3737    var $plugin_dir_stats_db_ver = "0.1";
    3838    var $plugin_dir_stats_setting_opt;
  • plugin-directory-stats/trunk/readme.txt

    r514627 r514865  
    55Requires at least: 2.8
    66Tested up to: 3.3.1
    7 Stable tag: 0.1
     7Stable tag: 0.1.1
    88
    99This plugin gets plugin's download count and other stats from WordPress.ORG and allows you to show them on your blog using shortcode.
     
    9494== Changelog ==
    9595
     96= 0.1.1 =
     97* Fix a bug: "Plugin Directory Stats version" doesn't be shown in "3. Your System Info" setting section.
     98* Fix a bug: "Plugin Directory Stats DB version" doesn't be shown in "3. Your System Info" setting section.
     99* Fix a bug: "Plugin Directory Stats URL" doesn't be shown in "3. Your System Info" setting section.
     100
    96101= 0.1 =
    97102* This is the initial release.
     
    99104== Upgrade Notice ==
    100105
     106= 0.1.1 =
     107This version has bug fixes.
     108
    101109= 0.1 =
    102110This is the initial release.
Note: See TracChangeset for help on using the changeset viewer.