Changeset 836593
- Timestamp:
- 01/11/2014 10:55:34 AM (12 years ago)
- Location:
- live-stream-badger/trunk
- Files:
-
- 5 edited
-
README.md (modified) (2 diffs)
-
admin/installer.php (modified) (1 diff)
-
live-stream-badger-plugin.php (modified) (2 diffs)
-
plugin-run.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
live-stream-badger/trunk/README.md
r836266 r836593 4 4 **Requires at least:** 3.7 5 5 **Tested up to:** 3.8 6 **Stable tag:** 1.4. 26 **Stable tag:** 1.4.3 7 7 **License:** GPLv3 8 8 **License URI:** http://www.gnu.org/licenses/gpl-3.0.html … … 93 93 ## Changelog ## 94 94 95 ### 1.4.2-1.4.3 ### 96 97 * Minor bugfixes 98 95 99 ### 1.4.1 ### 96 100 -
live-stream-badger/trunk/admin/installer.php
r836228 r836593 18 18 19 19 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' ) { 21 21 wp_clear_scheduled_hook( 'lsb_update_all_stream_status' ); 22 22 delete_option('lsb-stream-storage'); -
live-stream-badger/trunk/live-stream-badger-plugin.php
r836266 r836593 4 4 Plugin URI: http://wordpress.org/extend/plugins/live-stream-badger/ 5 5 Description: Display status of Twitch.tv live streams 6 Version: 1.4. 26 Version: 1.4.3 7 7 Author: Tadas Krivickas 8 8 Author URI: http://profiles.wordpress.org/tkrivickas … … 19 19 } 20 20 if ( !defined( 'LSB_PLUGIN_VERSION' ) ) { 21 define( 'LSB_PLUGIN_VERSION', '1.4. 1');21 define( 'LSB_PLUGIN_VERSION', '1.4.3'); 22 22 } 23 23 -
live-stream-badger/trunk/plugin-run.php
r836228 r836593 7 7 class LSB_Plugin_Run { 8 8 9 static function lsb_plugin_activation() {9 static function install() { 10 10 $installer = new livestreambadger\LSB_Installer(); 11 11 $installer->install(); 12 12 } 13 13 14 static function lsb_plugin_deactivation() {14 static function uninstall() { 15 15 $installer = new livestreambadger\LSB_Installer(); 16 16 $installer->uninstall(); -
live-stream-badger/trunk/readme.txt
r836266 r836593 4 4 Requires at least: 3.7 5 5 Tested up to: 3.8 6 Stable tag: 1.4. 26 Stable tag: 1.4.3 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 93 93 == Changelog == 94 94 95 = 1.4.2-1.4.3 = 96 * Minor bugfixes 95 97 = 1.4.1 = 96 98 * Bugfix: Embedded stream throwing fatal error
Note: See TracChangeset
for help on using the changeset viewer.