Plugin Directory

Changeset 2244390


Ignore:
Timestamp:
02/14/2020 11:23:43 AM (6 years ago)
Author:
automcoding
Message:

Bugfix (release as 1.5.1)

Location:
predikan/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • predikan/trunk/changelog.txt

    r2242182 r2244390  
     1= 1.5.1 =
     2* Bugix: Mobile friendly table not working.
     3
    14= 1.5.0 =
    25* Rewrite to follow WordPress's coding standard.
  • predikan/trunk/predikan.php

    r2242182 r2244390  
    66 * Plugin URI:  https://github.com/AutomCoding/wp-predikan/
    77 * 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.0
     8 * Version:     1.5.1
    99 * Author:      Filip Bengtsson
    1010 * Author URI:  https://github.com/AutomCoding/
     
    3131        add_action( 'save_post', array( $this, 'date_meta_boxes_save') );
    3232        add_shortcode( 'predikan', array( $this, 'episode_table' ) );
    33         wp_register_script( 'predikan-table-mobile', plugins_url( '/js/mobile-table.js' , __FILE__ ), array( 'jquery ') );
    3433    }
    3534
     
    270269    public function episode_table() {
    271270        // 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' ) );
    273272
    274273        // Echo a table of the latest episodes
  • predikan/trunk/readme.txt

    r2242182 r2244390  
    55Tested up to: 5.3.2
    66Requires PHP: 7.0.0
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.1
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2525
    2626== Changelog ==
     27= 1.5.1 =
     28* Bugix: Mobile friendly table not working.
     29
    2730= 1.5.0 =
    2831* Rewrite to follow WordPress's coding standard.
     
    3235
    3336== Upgrade Notice ==
    34 = 1.5.0 =
    35 This release will introduce an “preview” for the audio file.
     37= 1.5.1 =
     38Bugfix for the mobile friendly table.
  • predikan/trunk/upgrade_notices.txt

    r2242182 r2244390  
     1= 1.5.1 =
     2Bugfix for the mobile friendly table.
     3
    14= 1.5.0 =
    25This release will introduce an “preview” for the audio file.
Note: See TracChangeset for help on using the changeset viewer.