Plugin Directory

Changeset 599972


Ignore:
Timestamp:
09/17/2012 09:10:53 AM (14 years ago)
Author:
fabifott
Message:
 
Location:
wp-filebase
Files:
621 added
7 edited

Legend:

Unmodified
Added
Removed
  • wp-filebase/trunk/classes/AdminGuiManage.php

    r599590 r599972  
    2222        update_user_option($user_ID, WPFB_OPT_NAME . '_hide_how_start', 1);     
    2323    $show_how_start = !(bool)get_user_option(WPFB_OPT_NAME . '_hide_how_start');   
    24    
     24
    2525    WPFB_Admin::PrintFlattrHead();
    2626    ?>
     
    4747
    4848       
    49        
    5049    if($show_how_start)
    5150        wpfb_call('AdminHowToStart', 'Display');
     
    103102</div>
    104103<?php }
     104
    105105?>
    106106
    107107<div id="col-container">
    108 
    109108    <div id="col-right">
    110109        <div class="col-wrap">
  • wp-filebase/trunk/classes/AdminLite.php

    r599590 r599972  
    2323   
    2424    self::CheckChangedVer();
     25   
    2526}
    2627
  • wp-filebase/trunk/classes/Setup.php

    r599590 r599972  
    1515        $new_opts[$opt_name] = $opt_data['default'];
    1616    }
     17   
     18    $new_opts['widget'] = array(); // placeholder to keep old widget settings!
    1719   
    1820    $new_opts['version'] = WPFB_VERSION;
  • wp-filebase/trunk/classes/Widget.php

    r599590 r599972  
    1717   
    1818    $options = &WPFB_Core::GetOpt('widget');
     19    if(!isset($options['filelist_order_by'])){
     20        if(current_user_can('edit_posts'))
     21            echo $before_widget.$before_title . "WP-Filebase Widget" . $after_title."This File List widget is deprecated! Please remove this widget and add the new one.".$after_widget;
     22        return;
     23    }
    1924   
    2025    if(empty($options['filelist_title'])) $options['filelist_title'] = __('Files', WPFB);
  • wp-filebase/trunk/readme.txt

    r599590 r599972  
    55Requires at least: 3.1
    66Tested up to: 3.4.2
    7 Stable tag: 0.2.9.22
     7Stable tag: 0.2.9.23
    88
    99Adds a powerful download manager supporting file categories, downloads counter, widgets, sorted file lists and more to your WordPress blog.
     
    104104
    105105== Changelog ==
     106
     107= 0.2.9.23 =
     108* Configuration of old File Widget will be retained on update. Please change to the new multi-instance widget after updating!
    106109
    107110= 0.2.9.22 =
  • wp-filebase/trunk/todo.txt

    r599590 r599972  
     1rescan files to build thumbnails in batch action
     2-secondary category: tpl var?
     3- pdf searching: which option need to be enabled?
     4ghostscript test file
     5- auto redirect file page!
     6- hotlinking: redirect to files page!
     7-batch action on categories!
     8- sync: rsyncs!
    19rsync: make sure cat is empty!
    210dropbox: checkbox for toggle preview
     
    112120 
    113121 wpfilebase:
    114  - download page +2
     122- sortable id3 tags
    115123-multi uploadh
    116124-wigets
  • wp-filebase/trunk/wp-filebase.php

    r599590 r599972  
    55Description: Adds a powerful downloads manager supporting file categories, download counter, widgets, sorted file lists and more to your WordPress blog.
    66Author: Fabian Schlieper
    7 Version: 0.2.9.22
     7Version: 0.2.9.23
    88Author URI: http://fabi.me/
    99*/
     
    1212{
    1313    define('WPFB', 'wpfb');
    14     define('WPFB_VERSION', '0.2.9.22');
     14    define('WPFB_VERSION', '0.2.9.23');
    1515    define('WPFB_PLUGIN_ROOT', str_replace('\\','/',dirname(__FILE__)).'/');
    1616    if(!defined('ABSPATH')) {
Note: See TracChangeset for help on using the changeset viewer.