Changeset 2684543
- Timestamp:
- 02/24/2022 06:28:02 PM (4 years ago)
- Location:
- nepali-date-converter
- Files:
-
- 26 added
- 3 edited
-
tags/2.0.5 (added)
-
tags/2.0.5/inc (added)
-
tags/2.0.5/inc/class (added)
-
tags/2.0.5/inc/class/ndc-frontend.php (added)
-
tags/2.0.5/inc/class/ndc-post-date.php (added)
-
tags/2.0.5/inc/frameworks (added)
-
tags/2.0.5/inc/frameworks/nepali-calendar (added)
-
tags/2.0.5/inc/frameworks/nepali-calendar/nepali_calendar.php (added)
-
tags/2.0.5/inc/functions (added)
-
tags/2.0.5/inc/functions/functions.php (added)
-
tags/2.0.5/inc/hooks (added)
-
tags/2.0.5/inc/hooks/enqueue-scripts.php (added)
-
tags/2.0.5/inc/hooks/wp-ajax.php (added)
-
tags/2.0.5/inc/hooks/wp-footer.php (added)
-
tags/2.0.5/inc/init.php (added)
-
tags/2.0.5/inc/shortcode (added)
-
tags/2.0.5/inc/shortcode/shortcode-nepali-date-converter.php (added)
-
tags/2.0.5/inc/shortcode/shortcode-today-date.php (added)
-
tags/2.0.5/inc/widgets (added)
-
tags/2.0.5/inc/widgets/widget-nepali-date-converter.php (added)
-
tags/2.0.5/inc/widgets/widget-today-date.php (added)
-
tags/2.0.5/index.php (added)
-
tags/2.0.5/languages (added)
-
tags/2.0.5/languages/index.php (added)
-
tags/2.0.5/nepali-date-converter.php (added)
-
tags/2.0.5/readme.txt (added)
-
trunk/inc/class/ndc-post-date.php (modified) (1 diff)
-
trunk/nepali-date-converter.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nepali-date-converter/trunk/inc/class/ndc-post-date.php
r2653102 r2684543 536 536 function init_ndc_post_date(){ 537 537 /*Use both admin and frontend*/ 538 $this->options = apply_filters( 'ndc_post_date_options', get_option('ndc_post_date_options', $this->defaults)); 538 $db_options = get_option('ndc_post_date_options', $this->defaults); 539 $db_options = array_merge($this->defaults, $db_options); 540 $this->options = apply_filters( 'ndc_post_date_options', $db_options); 539 541 540 542 /*return if in admin*/ -
nepali-date-converter/trunk/nepali-date-converter.php
r2672955 r2684543 4 4 Plugin URI: https://www.addonspress.com/wordpress-plugins/nepali-date-converter/ 5 5 Description: Convert English to Nepali Date and Vice Versa and Post Date to Nepali Date. 6 Version: 2.0. 46 Version: 2.0.5 7 7 Author: addonspress 8 8 Author URI: https://www.addonspress.com/ … … 17 17 } 18 18 /*Define Constants for this plugin*/ 19 define( 'NEPALI_DATE_CONVERTER_VERSION', '2.0. 4' );19 define( 'NEPALI_DATE_CONVERTER_VERSION', '2.0.5' ); 20 20 define( 'NEPALI_DATE_CONVERTER_PATH', plugin_dir_path( __FILE__ ) ); 21 21 define( 'NEPALI_DATE_CONVERTER_URL', plugin_dir_url( __FILE__ ) ); -
nepali-date-converter/trunk/readme.txt
r2672955 r2684543 5 5 Requires at least: 4.9 6 6 Tested up to: 5.9 7 Stable tag: 2.0. 47 Stable tag: 2.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 137 137 == Changelog == 138 138 139 = 2.0.5 - 2022-02-25 = 140 * Fixed: Post Date Array notice in some cases 141 139 142 = 2.0.4 - 2022-02-04 = 140 143 * Updated: WordPress version
Note: See TracChangeset
for help on using the changeset viewer.