Plugin Directory

Changeset 2172051


Ignore:
Timestamp:
10/12/2019 03:21:26 AM (6 years ago)
Author:
tickerator
Message:

Tagging version 1.1.8.1. Fixed minor install bug

Location:
bugerator
Files:
1 deleted
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • bugerator/tags/1.1.8.1/bugerator.php

    r2169756 r2172051  
    55  Plugin URI: http://www.tickerator.org/bugerator
    66  Description: A bug tracking / issue tracking plugin
    7   Version: 1.1.8
     7  Version: 1.1.8.1
    88  Author: David Whipple
    99  Author URI: http://www.tickerator.org
     
    59485948        add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' .
    59495949                'long_date_format|m/d/Y H:i:s T,margin|0,filesize|1048576,navtabsize|,anonymous_comments|false' .
    5950                 ',default_priority|3,default_status|0,hide_all_anonymouse|false', '', 'no');
     5950                ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false', '', 'no');
    59515951        add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no');
    59525952
     
    62556255                            current_version INT,
    62566256                            version_date DATETIME,
    6257                 created_date DATETIME,
     6257                            created_date DATETIME,
    62586258                            status INT,
    62596259                            admins TEXT,
     
    62636263                            version_goal_list TEXT,
    62646264                            hidden TINYINT,
    6265                 options TEXT,
     6265                            options TEXT,
    62666266                            description TEXT,
    62676267                            UNIQUE KEY id (id)
     
    62756275         */
    62766276        $sql[3] = "CREATE TABLE $bugerator_subscriptions (
    6277                 id INT NOT NULL AUTO_INCREMENT,
    6278                 user BIGINT(20),
    6279                 type VARCHAR(20),
    6280                 foreign_id INT,
    6281                 visited TINYINT,
    6282                 UNIQUE KEY id (id)
     6277                            id INT NOT NULL AUTO_INCREMENT,
     6278                            user BIGINT(20),
     6279                            type VARCHAR(20),
     6280                            foreign_id INT,
     6281                            visited TINYINT,
     6282                            UNIQUE KEY id (id)
    62836283        );
    62846284        ";
     
    62906290         */
    62916291        $sql[4] = "CREATE TABLE $bugerator_visits_table (
    6292                 id INT NOT NULL AUTO_INCREMENT,
    6293                 user BIGINT(20),
    6294                 old_time DATETIME,
    6295                 new_time DATETIME,
    6296                 UNIQUE KEY id (id)
     6292                            id INT NOT NULL AUTO_INCREMENT,
     6293                            user BIGINT(20),
     6294                            old_time DATETIME,
     6295                            new_time DATETIME,
     6296                            UNIQUE KEY id (id)
    62976297        );
    62986298        ";
  • bugerator/tags/1.1.8.1/readme.txt

    r2169768 r2172051  
    55Requires at least: 3.4.1
    66Tested up to: 5.2.3
    7 Stable tag: 1.1.8
     7Stable tag: 1.1.8.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Changelog ==
    6969
     70= 1.1.8.1=
     71
     72* Minor bug when installing from scratch
     73
    7074= 1.1.8 =
    7175
     
    179183= 1.1.8 =
    180184
    181 Overdue update that added a couple of new features (see readme). Backup bugerator.css file before updating if you customized it.
     185Overdue update that added a couple of new features (see readme)
    182186
    183187= 1.1.7 =
  • bugerator/trunk/bugerator.php

    r2169756 r2172051  
    55  Plugin URI: http://www.tickerator.org/bugerator
    66  Description: A bug tracking / issue tracking plugin
    7   Version: 1.1.8
     7  Version: 1.1.8.1
    88  Author: David Whipple
    99  Author URI: http://www.tickerator.org
     
    59485948        add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' .
    59495949                'long_date_format|m/d/Y H:i:s T,margin|0,filesize|1048576,navtabsize|,anonymous_comments|false' .
    5950                 ',default_priority|3,default_status|0,hide_all_anonymouse|false', '', 'no');
     5950                ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false', '', 'no');
    59515951        add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no');
    59525952
     
    62556255                            current_version INT,
    62566256                            version_date DATETIME,
    6257                 created_date DATETIME,
     6257                            created_date DATETIME,
    62586258                            status INT,
    62596259                            admins TEXT,
     
    62636263                            version_goal_list TEXT,
    62646264                            hidden TINYINT,
    6265                 options TEXT,
     6265                            options TEXT,
    62666266                            description TEXT,
    62676267                            UNIQUE KEY id (id)
     
    62756275         */
    62766276        $sql[3] = "CREATE TABLE $bugerator_subscriptions (
    6277                 id INT NOT NULL AUTO_INCREMENT,
    6278                 user BIGINT(20),
    6279                 type VARCHAR(20),
    6280                 foreign_id INT,
    6281                 visited TINYINT,
    6282                 UNIQUE KEY id (id)
     6277                            id INT NOT NULL AUTO_INCREMENT,
     6278                            user BIGINT(20),
     6279                            type VARCHAR(20),
     6280                            foreign_id INT,
     6281                            visited TINYINT,
     6282                            UNIQUE KEY id (id)
    62836283        );
    62846284        ";
     
    62906290         */
    62916291        $sql[4] = "CREATE TABLE $bugerator_visits_table (
    6292                 id INT NOT NULL AUTO_INCREMENT,
    6293                 user BIGINT(20),
    6294                 old_time DATETIME,
    6295                 new_time DATETIME,
    6296                 UNIQUE KEY id (id)
     6292                            id INT NOT NULL AUTO_INCREMENT,
     6293                            user BIGINT(20),
     6294                            old_time DATETIME,
     6295                            new_time DATETIME,
     6296                            UNIQUE KEY id (id)
    62976297        );
    62986298        ";
  • bugerator/trunk/readme.txt

    r2169768 r2172051  
    55Requires at least: 3.4.1
    66Tested up to: 5.2.3
    7 Stable tag: 1.1.8
     7Stable tag: 1.1.8.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6868== Changelog ==
    6969
     70= 1.1.8.1=
     71
     72* Minor bug when installing from scratch
     73
    7074= 1.1.8 =
    7175
     
    179183= 1.1.8 =
    180184
    181 Overdue update that added a couple of new features (see readme). Backup bugerator.css file before updating if you customized it.
     185Overdue update that added a couple of new features (see readme)
    182186
    183187= 1.1.7 =
Note: See TracChangeset for help on using the changeset viewer.