Plugin Directory

Changeset 836593


Ignore:
Timestamp:
01/11/2014 10:55:34 AM (12 years ago)
Author:
tkrivickas
Message:

Merge to release for 1.4.3

Location:
live-stream-badger/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • live-stream-badger/trunk/README.md

    r836266 r836593  
    44**Requires at least:** 3.7 
    55**Tested up to:** 3.8 
    6 **Stable tag:** 1.4.2 
     6**Stable tag:** 1.4.3 
    77**License:** GPLv3 
    88**License URI:** http://www.gnu.org/licenses/gpl-3.0.html 
     
    9393## Changelog ##
    9494
     95### 1.4.2-1.4.3 ###
     96
     97* Minor bugfixes 
     98
    9599### 1.4.1 ###
    96100
  • live-stream-badger/trunk/admin/installer.php

    r836228 r836593  
    1818   
    1919    function upgrade( $from, $to ) {
    20         if ( $from === '1.3' ) {
     20        if ( $from === '1.3' || $from === '1.4' || $from === '1.4.1' || $from === '1.4.2' ) {
    2121            wp_clear_scheduled_hook( 'lsb_update_all_stream_status' );
    2222            delete_option('lsb-stream-storage');
  • live-stream-badger/trunk/live-stream-badger-plugin.php

    r836266 r836593  
    44 Plugin URI: http://wordpress.org/extend/plugins/live-stream-badger/
    55 Description: Display status of Twitch.tv live streams
    6  Version: 1.4.2
     6 Version: 1.4.3
    77 Author: Tadas Krivickas
    88 Author URI: http://profiles.wordpress.org/tkrivickas
     
    1919}
    2020if ( !defined( 'LSB_PLUGIN_VERSION' ) ) {
    21     define( 'LSB_PLUGIN_VERSION', '1.4.1');
     21    define( 'LSB_PLUGIN_VERSION', '1.4.3');
    2222}
    2323
  • live-stream-badger/trunk/plugin-run.php

    r836228 r836593  
    77class LSB_Plugin_Run {
    88
    9     static function lsb_plugin_activation() {
     9    static function install() {
    1010        $installer = new livestreambadger\LSB_Installer();
    1111        $installer->install();
    1212    }
    1313
    14     static function lsb_plugin_deactivation() {
     14    static function uninstall() {
    1515        $installer = new livestreambadger\LSB_Installer();
    1616        $installer->uninstall();
  • live-stream-badger/trunk/readme.txt

    r836266 r836593  
    44Requires at least: 3.7
    55Tested up to: 3.8
    6 Stable tag: 1.4.2
     6Stable tag: 1.4.3
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    9393== Changelog ==
    9494
     95= 1.4.2-1.4.3 =
     96* Minor bugfixes
    9597= 1.4.1 =
    9698* Bugfix: Embedded stream throwing fatal error
Note: See TracChangeset for help on using the changeset viewer.