Plugin Directory

Changeset 1408734


Ignore:
Timestamp:
05/02/2016 09:15:08 AM (10 years ago)
Author:
exxica
Message:

v1.2.1

Location:
exxica-social-marketing
Files:
5 edited
12 copied

Legend:

Unmodified
Added
Removed
  • exxica-social-marketing/tags/1.2.1/README.txt

    r1260949 r1408734  
    44Tags: social marketing, marketing, teasing, increase traffic, generate traffic, facebook, twitter, social marketing scheduler, scheduler, social marketing planning, planning, sharing, publicating, sharings, publications, social marketing plan, marketing plan, marketing schedule, timing
    55Requires at least: 3.5.1
    6 Tested up to: 4.3.1
     6Tested up to: 4.5.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90
     91= 1.2.1 =
     92- Updated for WP 4.5.1.
     93
    9094= 1.2.0 =
    9195- Capability type needed to publish and see publications is now set to "edit_posts", which means only users with the role "Contributor" or higher can access it.
  • exxica-social-marketing/tags/1.2.1/admin/class-exxica-social-marketing-admin.php

    r1260949 r1408734  
    2121 * @author     Gaute Rønningen <gaute@exxica.com>
    2222 */
    23 class Exxica_Social_Marketing_Admin 
     23class Exxica_Social_Marketing_Admin
    2424{
    2525
     
    4949     * @var      string    $version    The version of this plugin.
    5050     */
    51     public function __construct( $name, $version ) 
     51    public function __construct( $name, $version )
    5252    {
    5353        $this->name = $name;
     
    6060     * @since    1.0.0
    6161     */
    62     public function enqueue_styles() 
     62    public function enqueue_styles()
    6363    {
    6464        wp_enqueue_style( $this->name.'-jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.min.css', array(), $this->version );
     
    7171     * @since    1.0.0
    7272     */
    73     public function enqueue_scripts($hook) 
     73    public function enqueue_scripts($hook)
    7474    {
    7575
     
    8080        wp_enqueue_script( 'jquery-ui-datepicker' );
    8181        wp_enqueue_script( 'jquery-ui-spinner' );
    82         if(__('en_US', $this->name) == 'no_NB') 
     82        if(__('en_US', $this->name) == 'no_NB')
    8383            wp_enqueue_script( $this->name . '-jquery-ui-datepicker-localization-no', plugins_url( 'js/datepicker-no.js', __FILE__ ), array( 'jquery-ui-datepicker' ), $this->version );
    8484
    85         if( $hook === 'users_page_exxica-sm-settings' ) 
     85        if( $hook === 'users_page_exxica-sm-settings' )
    8686            wp_enqueue_script( $this->name . '-settings-script', plugins_url( 'js/settings-page-social-marketing.js', __FILE__ ), array( 'jquery' ), $this->version );
    87        
    88         if( $hook === 'settings_page_exxica-sm-system-settings' ) 
     87
     88        if( $hook === 'settings_page_exxica-sm-system-settings' )
    8989            wp_enqueue_script( $this->name . '-system-settings-script', plugins_url( 'js/system-settings-page-social-marketing.js', __FILE__ ), array( 'jquery' ), $this->version );
    90        
     90
    9191        wp_enqueue_script( $this->name . '-jquery-validate', plugins_url( 'js/jquery.validate.min.js', __FILE__ ), array( 'jquery' ), $this->version );
    9292
  • exxica-social-marketing/tags/1.2.1/exxica-social-marketing.php

    r1260949 r1408734  
    1616 * Plugin Name:       Exxica Social Marketing
    1717 * Description:       A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website.
    18  * Version:           1.2.0
     18 * Version:           1.2.1
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/tags/1.2.1/includes/class-exxica-social-marketing-activator.php

    r1260949 r1408734  
    2929        global $wp, $wpdb;
    3030        $sql = '';
    31        
    32         $latest_version = '1.2.0';
     31
     32        $latest_version = '1.2.1';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/tags/1.2.1/includes/class-exxica-social-marketing.php

    r1260949 r1408734  
    6161
    6262        $this->plugin_name = 'exxica-social-marketing';
    63         $this->version = '1.2.0';
     63        $this->version = '1.2.1';
    6464
    6565        $this->load_dependencies();
  • exxica-social-marketing/tags/1.2.1/trunk/README.txt

    r1260949 r1408734  
    44Tags: social marketing, marketing, teasing, increase traffic, generate traffic, facebook, twitter, social marketing scheduler, scheduler, social marketing planning, planning, sharing, publicating, sharings, publications, social marketing plan, marketing plan, marketing schedule, timing
    55Requires at least: 3.5.1
    6 Tested up to: 4.3.1
     6Tested up to: 4.5.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90
     91= 1.2.1 =
     92- Updated for WP 4.5.1.
     93
    9094= 1.2.0 =
    9195- Capability type needed to publish and see publications is now set to "edit_posts", which means only users with the role "Contributor" or higher can access it.
     
    165169
    166170== Upgrade Notice ==
     171= 1.2.1 =
     172Updated for WP 4.5.1.
     173
    167174= 1.2.0 =
    168175Minor patch. Update recommended.
  • exxica-social-marketing/tags/1.2.1/trunk/admin/class-exxica-social-marketing-admin.php

    r1260949 r1408734  
    2121 * @author     Gaute Rønningen <gaute@exxica.com>
    2222 */
    23 class Exxica_Social_Marketing_Admin 
     23class Exxica_Social_Marketing_Admin
    2424{
    2525
     
    4949     * @var      string    $version    The version of this plugin.
    5050     */
    51     public function __construct( $name, $version ) 
     51    public function __construct( $name, $version )
    5252    {
    5353        $this->name = $name;
     
    6060     * @since    1.0.0
    6161     */
    62     public function enqueue_styles() 
     62    public function enqueue_styles()
    6363    {
    6464        wp_enqueue_style( $this->name.'-jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.min.css', array(), $this->version );
     
    7171     * @since    1.0.0
    7272     */
    73     public function enqueue_scripts($hook) 
     73    public function enqueue_scripts($hook)
    7474    {
    7575
     
    8080        wp_enqueue_script( 'jquery-ui-datepicker' );
    8181        wp_enqueue_script( 'jquery-ui-spinner' );
    82         if(__('en_US', $this->name) == 'no_NB') 
     82        if(__('en_US', $this->name) == 'no_NB')
    8383            wp_enqueue_script( $this->name . '-jquery-ui-datepicker-localization-no', plugins_url( 'js/datepicker-no.js', __FILE__ ), array( 'jquery-ui-datepicker' ), $this->version );
    8484
    85         if( $hook === 'users_page_exxica-sm-settings' ) 
     85        if( $hook === 'users_page_exxica-sm-settings' )
    8686            wp_enqueue_script( $this->name . '-settings-script', plugins_url( 'js/settings-page-social-marketing.js', __FILE__ ), array( 'jquery' ), $this->version );
    87        
    88         if( $hook === 'settings_page_exxica-sm-system-settings' ) 
     87
     88        if( $hook === 'settings_page_exxica-sm-system-settings' )
    8989            wp_enqueue_script( $this->name . '-system-settings-script', plugins_url( 'js/system-settings-page-social-marketing.js', __FILE__ ), array( 'jquery' ), $this->version );
    90        
     90
    9191        wp_enqueue_script( $this->name . '-jquery-validate', plugins_url( 'js/jquery.validate.min.js', __FILE__ ), array( 'jquery' ), $this->version );
    9292
  • exxica-social-marketing/tags/1.2.1/trunk/exxica-social-marketing.php

    r1260949 r1408734  
    1616 * Plugin Name:       Exxica Social Marketing
    1717 * Description:       A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website.
    18  * Version:           1.2.0
     18 * Version:           1.2.1
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/tags/1.2.1/trunk/includes/class-exxica-social-marketing-activator.php

    r1260949 r1408734  
    2929        global $wp, $wpdb;
    3030        $sql = '';
    31        
    32         $latest_version = '1.2.0';
     31
     32        $latest_version = '1.2.1';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/tags/1.2.1/trunk/includes/class-exxica-social-marketing.php

    r1260949 r1408734  
    6161
    6262        $this->plugin_name = 'exxica-social-marketing';
    63         $this->version = '1.2.0';
     63        $this->version = '1.2.1';
    6464
    6565        $this->load_dependencies();
  • exxica-social-marketing/trunk/README.txt

    r1260949 r1408734  
    44Tags: social marketing, marketing, teasing, increase traffic, generate traffic, facebook, twitter, social marketing scheduler, scheduler, social marketing planning, planning, sharing, publicating, sharings, publications, social marketing plan, marketing plan, marketing schedule, timing
    55Requires at least: 3.5.1
    6 Tested up to: 4.3.1
     6Tested up to: 4.5.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90
     91= 1.2.1 =
     92- Updated for WP 4.5.1.
     93
    9094= 1.2.0 =
    9195- Capability type needed to publish and see publications is now set to "edit_posts", which means only users with the role "Contributor" or higher can access it.
     
    165169
    166170== Upgrade Notice ==
     171= 1.2.1 =
     172Updated for WP 4.5.1.
     173
    167174= 1.2.0 =
    168175Minor patch. Update recommended.
  • exxica-social-marketing/trunk/admin/class-exxica-social-marketing-admin.php

    r1260949 r1408734  
    2121 * @author     Gaute Rønningen <gaute@exxica.com>
    2222 */
    23 class Exxica_Social_Marketing_Admin 
     23class Exxica_Social_Marketing_Admin
    2424{
    2525
     
    4949     * @var      string    $version    The version of this plugin.
    5050     */
    51     public function __construct( $name, $version ) 
     51    public function __construct( $name, $version )
    5252    {
    5353        $this->name = $name;
     
    6060     * @since    1.0.0
    6161     */
    62     public function enqueue_styles() 
     62    public function enqueue_styles()
    6363    {
    6464        wp_enqueue_style( $this->name.'-jquery-ui', plugin_dir_url( __FILE__ ) . 'css/jquery-ui.min.css', array(), $this->version );
     
    7171     * @since    1.0.0
    7272     */
    73     public function enqueue_scripts($hook) 
     73    public function enqueue_scripts($hook)
    7474    {
    7575
     
    8080        wp_enqueue_script( 'jquery-ui-datepicker' );
    8181        wp_enqueue_script( 'jquery-ui-spinner' );
    82         if(__('en_US', $this->name) == 'no_NB') 
     82        if(__('en_US', $this->name) == 'no_NB')
    8383            wp_enqueue_script( $this->name . '-jquery-ui-datepicker-localization-no', plugins_url( 'js/datepicker-no.js', __FILE__ ), array( 'jquery-ui-datepicker' ), $this->version );
    8484
    85         if( $hook === 'users_page_exxica-sm-settings' ) 
     85        if( $hook === 'users_page_exxica-sm-settings' )
    8686            wp_enqueue_script( $this->name . '-settings-script', plugins_url( 'js/settings-page-social-marketing.js', __FILE__ ), array( 'jquery' ), $this->version );
    87        
    88         if( $hook === 'settings_page_exxica-sm-system-settings' ) 
     87
     88        if( $hook === 'settings_page_exxica-sm-system-settings' )
    8989            wp_enqueue_script( $this->name . '-system-settings-script', plugins_url( 'js/system-settings-page-social-marketing.js', __FILE__ ), array( 'jquery' ), $this->version );
    90        
     90
    9191        wp_enqueue_script( $this->name . '-jquery-validate', plugins_url( 'js/jquery.validate.min.js', __FILE__ ), array( 'jquery' ), $this->version );
    9292
  • exxica-social-marketing/trunk/exxica-social-marketing.php

    r1260949 r1408734  
    1616 * Plugin Name:       Exxica Social Marketing
    1717 * Description:       A tool that helps you publish your WordPress posts and pages to your selected social platforms. It has been made to help planning and scheduling publications on different social platforms which again increases traffic on your website.
    18  * Version:           1.2.0
     18 * Version:           1.2.1
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing-activator.php

    r1260949 r1408734  
    2929        global $wp, $wpdb;
    3030        $sql = '';
    31        
    32         $latest_version = '1.2.0';
     31
     32        $latest_version = '1.2.1';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing.php

    r1260949 r1408734  
    6161
    6262        $this->plugin_name = 'exxica-social-marketing';
    63         $this->version = '1.2.0';
     63        $this->version = '1.2.1';
    6464
    6565        $this->load_dependencies();
Note: See TracChangeset for help on using the changeset viewer.