Plugin Directory

Changeset 1989178


Ignore:
Timestamp:
12/08/2018 12:37:25 PM (7 years ago)
Author:
Friese
Message:

tagging version 1.5.5

Location:
wp-visitorflow
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-visitorflow/tags/1.5.5/assets/js/wp-visitorflow-frontend.js

    r1961151 r1989178  
    33    wpvfURL += '?wpvf_referrer=' + encodeURIComponent(document.referrer);
    44    wpvfURL += '&wpvf_page=' + encodeURIComponent(document.documentURI);
    5 console.log(wpvfURL)
     5
    66    var wpvfRequest = new XMLHttpRequest();
    77    wpvfRequest.open('GET',wpvfURL);
  • wp-visitorflow/tags/1.5.5/includes/classes/class-wp-visitorflow-admin.php

    r1965312 r1989178  
    4242            // Add hook to posts table
    4343            add_filter( 'manage_posts_columns' , array('WP_VisitorFlow_Admin', 'postsAddWpVisitorColumn') );
    44             add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn', 10, 2 ) );
     44            add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn'), 10, 2 );
    4545
    4646            // Add hook to pages table
    4747            add_filter( 'manage_pages_columns', array('WP_VisitorFlow_Admin', 'pagesAddWpVisitorColumn' ) );
    48             add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn', 10, 2 ) );
     48            add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn'), 10, 2 );
    4949
    5050        }
  • wp-visitorflow/tags/1.5.5/includes/views/tables/table-summary.php

    r1961151 r1989178  
    7070            $compare = $db_info[ $counter['db_info_compare'] ];
    7171
    72             if ($compare >= 0) {
     72            if ($compare > 0) {
    7373                $arrow = '0';
    7474                $change = 100 * ($count - $compare) / $compare;
  • wp-visitorflow/tags/1.5.5/readme.txt

    r1980165 r1989178  
    55Requires at least: 3.5
    66Requires PHP: 5.4
    7 Tested up to:  4.9.8
     7Tested up to: 5.0
    88Stable tag: 1.5.4
    99License: GPLv2 or later
     
    9595
    9696== Changelog ==
     97= 1.5.5 =
     98* WordPress 5.0 ready, Bugfix links on pages and posts list
     99
    97100= 1.5.4 =
    98101* Bugfix 404 pages
     
    176179
    177180== Upgrade Notice ==
     181= 1.5.5 =
     182* WordPress 5.0 ready, Bugfix links on pages and posts list
     183
    178184= 1.5.4 =
    179185* Bugfix 404 pages
  • wp-visitorflow/tags/1.5.5/wp-visitorflow.php

    r1980164 r1989178  
    44 * Plugin URI: https://www.datacodedesign.de/index.php/wp-visitorflow/
    55 * Description: Detailed web analytics and visualization of your website's visitor flow
    6  * Version: 1.5.4
     6 * Version: 1.5.5
    77 * Author: Onno Gabriel, DataCodeDesign
    88 * Author URI: http://www.onno-gabriel.de
     
    3535
    3636// Global constants
    37 define( 'WP_VISITORFLOW_VERSION', '1.5.1' );
     37define( 'WP_VISITORFLOW_VERSION', '1.5.5' );
    3838define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.4.0' );
    3939define( 'WP_VISITORFLOW_PLUGIN_PATH', trailingslashit( dirname(  __FILE__ ) ) );
  • wp-visitorflow/trunk/assets/js/wp-visitorflow-frontend.js

    r1961151 r1989178  
    33    wpvfURL += '?wpvf_referrer=' + encodeURIComponent(document.referrer);
    44    wpvfURL += '&wpvf_page=' + encodeURIComponent(document.documentURI);
    5 console.log(wpvfURL)
     5
    66    var wpvfRequest = new XMLHttpRequest();
    77    wpvfRequest.open('GET',wpvfURL);
  • wp-visitorflow/trunk/includes/classes/class-wp-visitorflow-admin.php

    r1965312 r1989178  
    4242            // Add hook to posts table
    4343            add_filter( 'manage_posts_columns' , array('WP_VisitorFlow_Admin', 'postsAddWpVisitorColumn') );
    44             add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn', 10, 2 ) );
     44            add_action( 'manage_posts_custom_column' , array('WP_VisitorFlow_Admin', 'postsWpVisitorColumn'), 10, 2 );
    4545
    4646            // Add hook to pages table
    4747            add_filter( 'manage_pages_columns', array('WP_VisitorFlow_Admin', 'pagesAddWpVisitorColumn' ) );
    48             add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn', 10, 2 ) );
     48            add_action( 'manage_pages_custom_column' , array('WP_VisitorFlow_Admin', 'pagesWpVisitorColumn'), 10, 2 );
    4949
    5050        }
  • wp-visitorflow/trunk/includes/views/tables/table-summary.php

    r1961151 r1989178  
    7070            $compare = $db_info[ $counter['db_info_compare'] ];
    7171
    72             if ($compare >= 0) {
     72            if ($compare > 0) {
    7373                $arrow = '0';
    7474                $change = 100 * ($count - $compare) / $compare;
  • wp-visitorflow/trunk/readme.txt

    r1980165 r1989178  
    55Requires at least: 3.5
    66Requires PHP: 5.4
    7 Tested up to:  4.9.8
     7Tested up to: 5.0 
    88Stable tag: 1.5.4
    99License: GPLv2 or later
     
    9595
    9696== Changelog ==
     97= 1.5.5 =
     98* WordPress 5.0 ready, Bugfix links on pages and posts list
     99
    97100= 1.5.4 =
    98101* Bugfix 404 pages
     
    176179
    177180== Upgrade Notice ==
     181= 1.5.5 =
     182* WordPress 5.0 ready, Bugfix links on pages and posts list
     183
    178184= 1.5.4 =
    179185* Bugfix 404 pages
  • wp-visitorflow/trunk/wp-visitorflow.php

    r1980164 r1989178  
    44 * Plugin URI: https://www.datacodedesign.de/index.php/wp-visitorflow/
    55 * Description: Detailed web analytics and visualization of your website's visitor flow
    6  * Version: 1.5.4
     6 * Version: 1.5.5
    77 * Author: Onno Gabriel, DataCodeDesign
    88 * Author URI: http://www.onno-gabriel.de
     
    3535
    3636// Global constants
    37 define( 'WP_VISITORFLOW_VERSION', '1.5.1' );
     37define( 'WP_VISITORFLOW_VERSION', '1.5.5' );
    3838define( 'WP_VISITORFLOW_REQUIRED_PHP_VERSION', '5.4.0' );
    3939define( 'WP_VISITORFLOW_PLUGIN_PATH', trailingslashit( dirname(  __FILE__ ) ) );
Note: See TracChangeset for help on using the changeset viewer.