Plugin Directory

Changeset 2955128


Ignore:
Timestamp:
08/17/2023 10:16:28 PM (3 years ago)
Author:
setaryapp
Message:

Update to version 1.9.1 from GitHub

Location:
setary
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • setary/tags/1.9.1/README.md

    r2952748 r2955128  
    55Tested up to: 6.2.2
    66Requires PHP: 7.1
    7 Stable tag: 1.9.0
     7Stable tag: 1.9.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    9191== Changelog ==
    9292
    93 = v1.8.0 (2023-08-09) =
     93= v1.9.1 (2023-08-17) =
     94* [update] Minor update which allows us to add new core fields via the app without plugin updates
     95
     96= v1.9.0 (2023-08-09) =
    9497* [new] [LifterLMS Compatibility](https://setary.com/docs/how-to-bulk-edit-lifterlms-membership-settings/?utm_source=setary&utm_medium=changelog)
    9598* [fix] Update excluded plugin paths to prevent conflicts
  • setary/tags/1.9.1/inc/class-products-with-variations.php

    r2951032 r2955128  
    225225            2  => 'slug',
    226226            3  => 'permalink',
    227             // 4 => 'date_created',
    228             // 5 => 'date_created_gmt',
    229             // 6 => 'date_modified',
    230             // 7 => 'date_modified_gmt',
     227            4 => 'date_created',
     228            5 => 'date_created_gmt',
     229            6 => 'date_modified',
     230            7 => 'date_modified_gmt',
    231231            8  => 'type',
    232232            9  => 'status',
     
    243243            20 => 'date_on_sale_to',
    244244            21 => 'date_on_sale_to_gmt',
    245             // 22 => 'price_html',
     245            22 => 'price_html',
    246246            23 => 'on_sale',
    247             // 24 => 'purchasable',
    248             // 25 => 'total_sales',
    249             // 26 => 'virtual',
    250             // 27 => 'downloadable',
    251             // 28 => 'downloads',
    252             // 29 => 'download_limit',
    253             // 30 => 'download_expiry',
    254             // 31 => 'external_url',
    255             // 32 => 'button_text',
     247            24 => 'purchasable',
     248            25 => 'total_sales',
     249            26 => 'virtual',
     250            27 => 'downloadable',
     251            28 => 'downloads',
     252            29 => 'download_limit',
     253            30 => 'download_expiry',
     254            31 => 'external_url',
     255            32 => 'button_text',
    256256            33 => 'tax_status',
    257257            34 => 'tax_class',
     
    262262            39 => 'backorders_allowed',
    263263            40 => 'backordered',
    264             // 41 => 'low_stock_amount',
     264            41 => 'low_stock_amount',
    265265            42 => 'sold_individually',
    266266            43 => 'weight',
    267267            44 => 'dimensions',
    268             // 45 => 'shipping_required',
    269             // 46 => 'shipping_taxable',
     268            45 => 'shipping_required',
     269            46 => 'shipping_taxable',
    270270            47 => 'shipping_class',
    271             // 48 => 'shipping_class_id',
    272             // 49 => 'reviews_allowed',
    273             // 50 => 'average_rating',
    274             // 51 => 'rating_count',
    275             // 52 => 'related_ids',
     271            48 => 'shipping_class_id',
     272            49 => 'reviews_allowed',
     273            50 => 'average_rating',
     274            51 => 'rating_count',
     275            52 => 'related_ids',
    276276            53 => 'upsell_ids',
    277277            54 => 'cross_sell_ids',
    278278            55 => 'parent_id',
    279             // 56 => 'purchase_note',
     279            56 => 'purchase_note',
    280280            57 => 'categories',
    281281            58 => 'tags',
    282282            59 => 'images',
    283283            60 => 'attributes',
    284             // 61 => 'default_attributes',
    285             // 62 => 'variations',
    286             // 63 => 'grouped_products',
     284            61 => 'default_attributes',
     285            62 => 'variations',
     286            63 => 'grouped_products',
    287287            64 => 'menu_order',
    288288            65 => 'meta_data',
  • setary/tags/1.9.1/setary.php

    r2952748 r2955128  
    1111 * Author URI:           https://setary.com/
    1212 *
    13  * Version:              1.9.0
     13 * Version:              1.9.1
    1414 * WC requires at least: 6.0.0
    1515 * WC tested up to:      8.0.1
     
    2323define( 'SETARY_PATH', \plugin_dir_path( __FILE__ ) );
    2424define( 'SETARY_URL', \plugins_url( '/', __FILE__ ) );
    25 define( 'SETARY_VERSION', '1.9.0' );
     25define( 'SETARY_VERSION', '1.9.1' );
    2626define( 'SETARY_SITE_URL', 'https://setary.com/' );
    2727define( 'SETARY_APP_URL', 'https://setary.com/app/' );
  • setary/trunk/README.md

    r2952748 r2955128  
    55Tested up to: 6.2.2
    66Requires PHP: 7.1
    7 Stable tag: 1.9.0
     7Stable tag: 1.9.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    9191== Changelog ==
    9292
    93 = v1.8.0 (2023-08-09) =
     93= v1.9.1 (2023-08-17) =
     94* [update] Minor update which allows us to add new core fields via the app without plugin updates
     95
     96= v1.9.0 (2023-08-09) =
    9497* [new] [LifterLMS Compatibility](https://setary.com/docs/how-to-bulk-edit-lifterlms-membership-settings/?utm_source=setary&utm_medium=changelog)
    9598* [fix] Update excluded plugin paths to prevent conflicts
  • setary/trunk/inc/class-products-with-variations.php

    r2951032 r2955128  
    225225            2  => 'slug',
    226226            3  => 'permalink',
    227             // 4 => 'date_created',
    228             // 5 => 'date_created_gmt',
    229             // 6 => 'date_modified',
    230             // 7 => 'date_modified_gmt',
     227            4 => 'date_created',
     228            5 => 'date_created_gmt',
     229            6 => 'date_modified',
     230            7 => 'date_modified_gmt',
    231231            8  => 'type',
    232232            9  => 'status',
     
    243243            20 => 'date_on_sale_to',
    244244            21 => 'date_on_sale_to_gmt',
    245             // 22 => 'price_html',
     245            22 => 'price_html',
    246246            23 => 'on_sale',
    247             // 24 => 'purchasable',
    248             // 25 => 'total_sales',
    249             // 26 => 'virtual',
    250             // 27 => 'downloadable',
    251             // 28 => 'downloads',
    252             // 29 => 'download_limit',
    253             // 30 => 'download_expiry',
    254             // 31 => 'external_url',
    255             // 32 => 'button_text',
     247            24 => 'purchasable',
     248            25 => 'total_sales',
     249            26 => 'virtual',
     250            27 => 'downloadable',
     251            28 => 'downloads',
     252            29 => 'download_limit',
     253            30 => 'download_expiry',
     254            31 => 'external_url',
     255            32 => 'button_text',
    256256            33 => 'tax_status',
    257257            34 => 'tax_class',
     
    262262            39 => 'backorders_allowed',
    263263            40 => 'backordered',
    264             // 41 => 'low_stock_amount',
     264            41 => 'low_stock_amount',
    265265            42 => 'sold_individually',
    266266            43 => 'weight',
    267267            44 => 'dimensions',
    268             // 45 => 'shipping_required',
    269             // 46 => 'shipping_taxable',
     268            45 => 'shipping_required',
     269            46 => 'shipping_taxable',
    270270            47 => 'shipping_class',
    271             // 48 => 'shipping_class_id',
    272             // 49 => 'reviews_allowed',
    273             // 50 => 'average_rating',
    274             // 51 => 'rating_count',
    275             // 52 => 'related_ids',
     271            48 => 'shipping_class_id',
     272            49 => 'reviews_allowed',
     273            50 => 'average_rating',
     274            51 => 'rating_count',
     275            52 => 'related_ids',
    276276            53 => 'upsell_ids',
    277277            54 => 'cross_sell_ids',
    278278            55 => 'parent_id',
    279             // 56 => 'purchase_note',
     279            56 => 'purchase_note',
    280280            57 => 'categories',
    281281            58 => 'tags',
    282282            59 => 'images',
    283283            60 => 'attributes',
    284             // 61 => 'default_attributes',
    285             // 62 => 'variations',
    286             // 63 => 'grouped_products',
     284            61 => 'default_attributes',
     285            62 => 'variations',
     286            63 => 'grouped_products',
    287287            64 => 'menu_order',
    288288            65 => 'meta_data',
  • setary/trunk/setary.php

    r2952748 r2955128  
    1111 * Author URI:           https://setary.com/
    1212 *
    13  * Version:              1.9.0
     13 * Version:              1.9.1
    1414 * WC requires at least: 6.0.0
    1515 * WC tested up to:      8.0.1
     
    2323define( 'SETARY_PATH', \plugin_dir_path( __FILE__ ) );
    2424define( 'SETARY_URL', \plugins_url( '/', __FILE__ ) );
    25 define( 'SETARY_VERSION', '1.9.0' );
     25define( 'SETARY_VERSION', '1.9.1' );
    2626define( 'SETARY_SITE_URL', 'https://setary.com/' );
    2727define( 'SETARY_APP_URL', 'https://setary.com/app/' );
Note: See TracChangeset for help on using the changeset viewer.