Plugin Directory

Changeset 1260949


Ignore:
Timestamp:
10/07/2015 11:41:29 AM (10 years ago)
Author:
exxica
Message:

v1.2.0

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

Legend:

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

    r1227010 r1260949  
    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
     6Tested up to: 4.3.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90= 1.2.0 =
     91- 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.
     92- Updated for WP 4.3.1.
     93
    9094= 1.1.9 =
    9195- Updated for WP 4.3.
     
    161165
    162166== Upgrade Notice ==
     167= 1.2.0 =
     168Minor patch. Update recommended.
     169
    163170= 1.1.9 =
    164171Minor patch. Update recommended.
  • exxica-social-marketing/tags/1.2.0/admin/class-exxica-social-marketing-admin.php

    r1122203 r1260949  
    170170    public function create_nav_menu()
    171171    {
    172         $capability = 'read';
     172        $capability = 'edit_posts';
    173173        $page_title = __('My social marketing', $this->name);
    174174        $menu_title = __('My social marketing', $this->name);
     
    186186        add_options_page( $page_title, $menu_title, $capability, $menu_slug, $function );
    187187
    188         $capability = 'read';
     188        $capability = 'edit_posts';
    189189        $page_title = __('Exxica Social Marketing Overview', $this->name);
    190190        $menu_title = __('Marketing Overview', $this->name);
     
    193193
    194194        add_posts_page( $page_title, $menu_title, $capability, $menu_slug, $function );
    195     }   
     195    }
    196196
    197197    private function daysDiff($d1,$d2) {
     
    569569        ob_end_clean();
    570570        return $context.$out;
    571     }   
     571    }
    572572}
  • exxica-social-marketing/tags/1.2.0/exxica-social-marketing.php

    r1225976 r1260949  
    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.1.9
     18 * Version:           1.2.0
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/tags/1.2.0/includes/class-exxica-social-marketing-activator.php

    r1225976 r1260949  
    3030        $sql = '';
    3131       
    32         $latest_version = '1.1.9';
     32        $latest_version = '1.2.0';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/tags/1.2.0/includes/class-exxica-social-marketing.php

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

    r1227010 r1260949  
    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
     6Tested up to: 4.3.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    8888
    8989== Changelog ==
     90= 1.2.0 =
     91- 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.
     92- Updated for WP 4.3.1.
     93
    9094= 1.1.9 =
    9195- Updated for WP 4.3.
     
    161165
    162166== Upgrade Notice ==
     167= 1.2.0 =
     168Minor patch. Update recommended.
     169
    163170= 1.1.9 =
    164171Minor patch. Update recommended.
  • exxica-social-marketing/trunk/admin/class-exxica-social-marketing-admin.php

    r1122203 r1260949  
    170170    public function create_nav_menu()
    171171    {
    172         $capability = 'read';
     172        $capability = 'edit_posts';
    173173        $page_title = __('My social marketing', $this->name);
    174174        $menu_title = __('My social marketing', $this->name);
     
    186186        add_options_page( $page_title, $menu_title, $capability, $menu_slug, $function );
    187187
    188         $capability = 'read';
     188        $capability = 'edit_posts';
    189189        $page_title = __('Exxica Social Marketing Overview', $this->name);
    190190        $menu_title = __('Marketing Overview', $this->name);
     
    193193
    194194        add_posts_page( $page_title, $menu_title, $capability, $menu_slug, $function );
    195     }   
     195    }
    196196
    197197    private function daysDiff($d1,$d2) {
     
    569569        ob_end_clean();
    570570        return $context.$out;
    571     }   
     571    }
    572572}
  • exxica-social-marketing/trunk/exxica-social-marketing.php

    r1225976 r1260949  
    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.1.9
     18 * Version:           1.2.0
    1919 * Author:            Gaute Rønningen
    2020 * Author URI:        http://exxica.com/
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing-activator.php

    r1225976 r1260949  
    3030        $sql = '';
    3131       
    32         $latest_version = '1.1.9';
     32        $latest_version = '1.2.0';
    3333        $installed_version = get_option('exxica_social_marketing_version', false);
    3434
  • exxica-social-marketing/trunk/includes/class-exxica-social-marketing.php

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