Changeset 2244390
- Timestamp:
- 02/14/2020 11:23:43 AM (6 years ago)
- Location:
- predikan/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
predikan.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
-
upgrade_notices.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
predikan/trunk/changelog.txt
r2242182 r2244390 1 = 1.5.1 = 2 * Bugix: Mobile friendly table not working. 3 1 4 = 1.5.0 = 2 5 * Rewrite to follow WordPress's coding standard. -
predikan/trunk/predikan.php
r2242182 r2244390 6 6 * Plugin URI: https://github.com/AutomCoding/wp-predikan/ 7 7 * Description: Upload sermons to your church's website as a podcast and include them, in a table, on any of your pages. 8 * Version: 1.5. 08 * Version: 1.5.1 9 9 * Author: Filip Bengtsson 10 10 * Author URI: https://github.com/AutomCoding/ … … 31 31 add_action( 'save_post', array( $this, 'date_meta_boxes_save') ); 32 32 add_shortcode( 'predikan', array( $this, 'episode_table' ) ); 33 wp_register_script( 'predikan-table-mobile', plugins_url( '/js/mobile-table.js' , __FILE__ ), array( 'jquery ') );34 33 } 35 34 … … 270 269 public function episode_table() { 271 270 // Enque JavaScript 272 wp_enqueue_script( 'predikan-table-mobile' );271 wp_enqueue_script( 'predikan-table-mobile', plugins_url( '/js/mobile-table.js' , __FILE__ ), array( 'jquery' ) ); 273 272 274 273 // Echo a table of the latest episodes -
predikan/trunk/readme.txt
r2242182 r2244390 5 5 Tested up to: 5.3.2 6 6 Requires PHP: 7.0.0 7 Stable tag: 1.5. 07 Stable tag: 1.5.1 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 25 25 26 26 == Changelog == 27 = 1.5.1 = 28 * Bugix: Mobile friendly table not working. 29 27 30 = 1.5.0 = 28 31 * Rewrite to follow WordPress's coding standard. … … 32 35 33 36 == Upgrade Notice == 34 = 1.5. 0=35 This release will introduce an “preview” for the audio file.37 = 1.5.1 = 38 Bugfix for the mobile friendly table. -
predikan/trunk/upgrade_notices.txt
r2242182 r2244390 1 = 1.5.1 = 2 Bugfix for the mobile friendly table. 3 1 4 = 1.5.0 = 2 5 This release will introduce an “preview” for the audio file.
Note: See TracChangeset
for help on using the changeset viewer.