Changeset 3074354
- Timestamp:
- 04/21/2024 12:31:06 AM (2 years ago)
- Location:
- run-log/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
run-log.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
run-log/trunk/readme.txt
r3074341 r3074354 4 4 Requires at least: 4.0 5 5 Tested up to: 6.5 6 Stable tag: 1.7. 76 Stable tag: 1.7.8 7 7 License: GPLv2 (or later) 8 8 License URI: https://wordpress.org/about/gpl/ … … 149 149 == Changelog == 150 150 151 = 1.7. 7=151 = 1.7.8 = 152 152 * Updated CSS for mobile/narrow display. 153 153 -
run-log/trunk/run-log.php
r3074348 r3074354 11 11 * Plugin URI: https://run-log.gameiz.net/ 12 12 * Description: Adds running diary capabilities - log your sport activities with custom post type, custom fields and new taxonomies. 13 * Version: 1.7. 713 * Version: 1.7.8 14 14 * Author: Oren Izmirli 15 15 * Author URI: https://profiles.wordpress.org/izem … … 61 61 */ 62 62 function oirl_plugin_upgrate( $upgrader_object, $options ) { 63 if ( 'plugin' === $options['type'] && in_array( 'oi_run_log_post', $options['p ackages'], true ) ) {63 if ( 'plugin' === $options['type'] && in_array( 'oi_run_log_post', $options['plugins'], true ) ) { 64 64 return; 65 65 } … … 406 406 wp_enqueue_script( 'oirl-admin-script', plugin_dir_url( __FILE__ ) . '/js/admin-script.js', array( 'jquery', 'jquery-ui-tooltip' ), '1.0.1', true ); 407 407 $css_file_name = 'run-log' . (is_rtl() ? '-rtl' : '') . '.css'; 408 wp_enqueue_style( 'oirl-css', plugin_dir_url( __FILE__ ) . "/$css_file_name", null, '1.7. 7' );408 wp_enqueue_style( 'oirl-css', plugin_dir_url( __FILE__ ) . "/$css_file_name", null, '1.7.8' ); 409 409 } 410 410 add_action( 'admin_enqueue_scripts', 'oirl_admin_scripts' ); … … 678 678 function iorl_enqueue_css() { 679 679 $css_file_name = 'run-log' . (is_rtl() ? '-rtl' : '') . '.css'; 680 wp_enqueue_style( 'oirl_plugin_stylesheet', plugins_url( $css_file_name, __FILE__ ), null, '1.7. 7' );680 wp_enqueue_style( 'oirl_plugin_stylesheet', plugins_url( $css_file_name, __FILE__ ), null, '1.7.8' ); 681 681 } 682 682 add_action( 'wp_enqueue_scripts', 'iorl_enqueue_css' );
Note: See TracChangeset
for help on using the changeset viewer.