Plugin Directory

Changeset 1962985


Ignore:
Timestamp:
10/25/2018 03:32:58 PM (7 years ago)
Author:
keeross
Message:

tagging version 2.0.4

Location:
do-spaces-sync
Files:
7 deleted
6 edited
358 copied

Legend:

Unmodified
Added
Removed
  • do-spaces-sync/tags/2.0.3/vendor/katzgrau/klogger/.git/FETCH_HEAD

    r1954080 r1962985  
     1de2d3ab6777a393a9879e0496ebb8e0644066e3f        branch 'master' of https://github.com/katzgrau/KLogger
    1235d9752e1a3c29010a3a29935ade447e979261d1    not-for-merge   branch 'develop' of https://github.com/katzgrau/KLogger
    2 de2d3ab6777a393a9879e0496ebb8e0644066e3f    not-for-merge   branch 'master' of https://github.com/katzgrau/KLogger
    33cbd026ded7ae21243badae7979bdfbfb6d2ce877    not-for-merge   branch 'padding' of https://github.com/katzgrau/KLogger
    4 8281586471d08960bf693b5715b5c3a30f446a07    not-for-merge   tag '0.2.0' of https://github.com/katzgrau/KLogger
    5 46cdd92a9b4a8443120cc955bf831450cb274813    not-for-merge   tag '1.0.0' of https://github.com/katzgrau/KLogger
    6 63458c0a547ed5ef80deaea4fe37ef342c583db8    not-for-merge   tag '1.1.0' of https://github.com/katzgrau/KLogger
    7 87735262be7c3bd210740b5cd4831dee3d827c46    not-for-merge   tag '1.2.0' of https://github.com/katzgrau/KLogger
    8 a4ed373fa8a214aa4ae7aa4f221fe2c6ce862ef1    not-for-merge   tag '1.2.1' of https://github.com/katzgrau/KLogger
    9 25555953987ac9e28ff20579c871c5fbabd83a3d    not-for-merge   tag 'v0.1' of https://github.com/katzgrau/KLogger
    10 e27b83ef3d913e205fdb6b887c79b8f0549e6ffb    not-for-merge   tag 'v0.2' of https://github.com/katzgrau/KLogger
  • do-spaces-sync/tags/2.0.4/dos_class.php

    r1958599 r1962985  
    307307  public function file_path ($file) {
    308308
    309     $upload_dir = wp_upload_dir();
    310     $basedir = $upload_dir['basedir'];
    311 
    312     $path = str_replace($basedir, '', $file);
     309    $path = str_replace($this->upload_path, '', $file);
    313310 
    314311    return $this->storage_path . $path;
     
    323320
    324321    // prepare regex
    325     if ( $regex_string == '*' ) {
     322    if ( $regex_string == '*' || !strlen($regex_string)) {
    326323      $regex = false;
    327324    } else {
  • do-spaces-sync/tags/2.0.4/dos_settings_page.php

    r1954123 r1962985  
    112112         
    113113          <div class="col-xs-12 col-sm-12 col-md-12 col-lg-2">
    114             <input type="button" name="test" id="submit" class="button button-primary dos__test__connection"
     114            <input type="button" name="test" class="button button-primary dos__test__connection"
    115115                   value="<?php _e('Check the connection', 'dos'); ?>" />
    116116          </div>
  • do-spaces-sync/tags/2.0.4/loader.php

    r1958599 r1962985  
    44 * Plugin URI: https://github.com/keeross/DO-Spaces-Wordpress-Sync
    55 * Description: This WordPress plugin syncs your media library with DigitalOcean Spaces Container.
    6  * Version: 2.0.3
     6 * Version: 2.0.4
    77 * Author: keeross
    88 * Author URI: https://github.com/keeross
  • do-spaces-sync/tags/2.0.4/readme.txt

    r1958599 r1962985  
    55Requires at least: 4.6
    66Tested up to: 4.9
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    4646
    4747== Changelog ==
     48
     49= 2.0.4 =
     50* Fixed file_path for multisite setup
     51* Fix preg_match() Warning if Filemask/Regex in DOS setting is empty
    4852
    4953= 2.0.3 =
  • do-spaces-sync/tags/2.0.4/vendor/katzgrau/klogger/.git/FETCH_HEAD

    r1954080 r1962985  
     1de2d3ab6777a393a9879e0496ebb8e0644066e3f        branch 'master' of https://github.com/katzgrau/KLogger
    1235d9752e1a3c29010a3a29935ade447e979261d1    not-for-merge   branch 'develop' of https://github.com/katzgrau/KLogger
    2 de2d3ab6777a393a9879e0496ebb8e0644066e3f    not-for-merge   branch 'master' of https://github.com/katzgrau/KLogger
    33cbd026ded7ae21243badae7979bdfbfb6d2ce877    not-for-merge   branch 'padding' of https://github.com/katzgrau/KLogger
    4 8281586471d08960bf693b5715b5c3a30f446a07    not-for-merge   tag '0.2.0' of https://github.com/katzgrau/KLogger
    5 46cdd92a9b4a8443120cc955bf831450cb274813    not-for-merge   tag '1.0.0' of https://github.com/katzgrau/KLogger
    6 63458c0a547ed5ef80deaea4fe37ef342c583db8    not-for-merge   tag '1.1.0' of https://github.com/katzgrau/KLogger
    7 87735262be7c3bd210740b5cd4831dee3d827c46    not-for-merge   tag '1.2.0' of https://github.com/katzgrau/KLogger
    8 a4ed373fa8a214aa4ae7aa4f221fe2c6ce862ef1    not-for-merge   tag '1.2.1' of https://github.com/katzgrau/KLogger
    9 25555953987ac9e28ff20579c871c5fbabd83a3d    not-for-merge   tag 'v0.1' of https://github.com/katzgrau/KLogger
    10 e27b83ef3d913e205fdb6b887c79b8f0549e6ffb    not-for-merge   tag 'v0.2' of https://github.com/katzgrau/KLogger
  • do-spaces-sync/trunk/dos_class.php

    r1958599 r1962985  
    307307  public function file_path ($file) {
    308308
    309     $upload_dir = wp_upload_dir();
    310     $basedir = $upload_dir['basedir'];
    311 
    312     $path = str_replace($basedir, '', $file);
     309    $path = str_replace($this->upload_path, '', $file);
    313310 
    314311    return $this->storage_path . $path;
     
    323320
    324321    // prepare regex
    325     if ( $regex_string == '*' ) {
     322    if ( $regex_string == '*' || !strlen($regex_string)) {
    326323      $regex = false;
    327324    } else {
  • do-spaces-sync/trunk/dos_settings_page.php

    r1954123 r1962985  
    112112         
    113113          <div class="col-xs-12 col-sm-12 col-md-12 col-lg-2">
    114             <input type="button" name="test" id="submit" class="button button-primary dos__test__connection"
     114            <input type="button" name="test" class="button button-primary dos__test__connection"
    115115                   value="<?php _e('Check the connection', 'dos'); ?>" />
    116116          </div>
  • do-spaces-sync/trunk/loader.php

    r1958599 r1962985  
    44 * Plugin URI: https://github.com/keeross/DO-Spaces-Wordpress-Sync
    55 * Description: This WordPress plugin syncs your media library with DigitalOcean Spaces Container.
    6  * Version: 2.0.3
     6 * Version: 2.0.4
    77 * Author: keeross
    88 * Author URI: https://github.com/keeross
  • do-spaces-sync/trunk/readme.txt

    r1958599 r1962985  
    55Requires at least: 4.6
    66Tested up to: 4.9
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    4646
    4747== Changelog ==
     48
     49= 2.0.4 =
     50* Fixed file_path for multisite setup
     51* Fix preg_match() Warning if Filemask/Regex in DOS setting is empty
    4852
    4953= 2.0.3 =
Note: See TracChangeset for help on using the changeset viewer.