Plugin Directory

Changeset 1680720


Ignore:
Timestamp:
06/18/2017 06:37:33 PM (9 years ago)
Author:
thiagogsrwp
Message:

Bump version

Location:
wc-stock-amount-report/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wc-stock-amount-report/trunk/changelog.txt

    r1622378 r1680720  
    11*** WC Stock Amount Report Changelog ***
     2
     32017-06-18 - version 0.0.8
     4* Fix i18n
    25
    362017-03-26 - version 0.0.7
  • wc-stock-amount-report/trunk/languages/wc-stock-amount-report.pot

    r1622378 r1680720  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: wc-stock-amount-report 0.0.7\n"
     9"Project-Id-Version: wc-stock-amount-report 0.0.8\n"
    1010"Report-Msgid-Bugs-To: \n"
    11 "POT-Creation-Date: 2017-03-26 15:48-0300\n"
     11"POT-Creation-Date: 2017-06-18 15:35-0300\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818"Content-Transfer-Encoding: 8bit\n"
    1919
    20 #: classes/class-wc-report-stock-amount.php:46
     20#: classes/class-wc-stock-amount-report.php:46
    2121msgid "items"
    2222msgstr ""
    2323
    24 #: classes/class-wc-report-stock-amount.php:50
     24#: classes/class-wc-stock-amount-report.php:50
    2525msgid "Total"
    2626msgstr ""
    2727
    28 #: classes/class-wc-report-stock-amount.php:116
     28#: classes/class-wc-stock-amount-report.php:116
    2929msgid "Product"
    3030msgstr ""
    3131
    32 #: classes/class-wc-report-stock-amount.php:117
     32#: classes/class-wc-stock-amount-report.php:117
    3333msgid "Units in stock"
    3434msgstr ""
    3535
    36 #: classes/class-wc-report-stock-amount.php:118
     36#: classes/class-wc-stock-amount-report.php:118
    3737msgid "Price"
    3838msgstr ""
    3939
    40 #: classes/class-wc-report-stock-amount.php:119
     40#: classes/class-wc-stock-amount-report.php:119
    4141msgid "Total Price"
    4242msgstr ""
  • wc-stock-amount-report/trunk/package.json

    r1622378 r1680720  
    11{
    22  "name": "wc-stock-amount-report",
    3   "version": "0.0.7",
     3  "version": "0.0.8",
    44  "description": "Report to visualize how much you have in your available stock if you sell everything.",
    55  "main": "Gruntfile.js",
  • wc-stock-amount-report/trunk/readme.txt

    r1622378 r1680720  
    33Tags: woocommerce, extension, reporting, stock, analytics
    44Requires at least: 3.8
    5 Tested up to: 4.7.3
    6 Stable tag: 0.0.7
     5Tested up to: 4.8.0
     6Stable tag: 0.0.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3838== Changelog ==
    3939
     40= 0.0.8 - 2017-06-18 =
     41* Fix i18n
     42
    4043= 0.0.7 - 2017-03-26 =
    4144* Add pot
  • wc-stock-amount-report/trunk/wc-stock-amount-report.php

    r1622378 r1680720  
    66* Author: Thiago Guimarães
    77* Author URI: https://github.com/thiagogsr
    8 * Version: 0.0.7
     8* Version: 0.0.8
    99* Text Domain: wc_stock_amount_report
    1010* Domain Path: /languages/
     
    4040class WC_StockAmount_Report {
    4141  /** plugin version number */
    42   public static $version = '0.0.7';
     42  public static $version = '0.0.8';
    4343
    4444  /** @var string the plugin file */
     
    7575  public static function initialize_location_admin_report($report) {
    7676    $report['stock']['reports']['stock_amount'] = array(
    77       'title'       => __('Stock amount', 'wc-report-stock-amount'),
     77      'title'       => __('Stock amount', 'wc-stock-amount-report'),
    7878      'description' => '',
    7979      'hide_title'  => true,
     
    9292  */
    9393  public static function initialize_location_admin_reports_path($report_path, $name, $class) {
    94     if ('WC_Report_stock_amount' == $class) {
    95       $report_path = self::$plugin_dir . '/classes/class-wc-report-' . $name . '.php';
     94    if ('WC_Stock_Amount_Report' == $class) {
     95      $report_path = self::$plugin_dir . '/classes/class-wc-' . $name . '-report.php';
    9696    }
    9797
Note: See TracChangeset for help on using the changeset viewer.