Changeset 2172051
- Timestamp:
- 10/12/2019 03:21:26 AM (6 years ago)
- Location:
- bugerator
- Files:
-
- 1 deleted
- 3 edited
- 2 copied
-
tags/1.1.8.1 (copied) (copied from bugerator/trunk)
-
tags/1.1.8.1/bugerator.php (modified) (6 diffs)
-
tags/1.1.8.1/readme.txt (copied) (copied from bugerator/trunk/readme.txt) (3 diffs)
-
tags/1.1.8/trunk (deleted)
-
trunk/bugerator.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bugerator/tags/1.1.8.1/bugerator.php
r2169756 r2172051 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1.8 7 Version: 1.1.8.1 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 5948 5948 add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' . 5949 5949 '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_anonymous e|false', '', 'no');5950 ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false', '', 'no'); 5951 5951 add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no'); 5952 5952 … … 6255 6255 current_version INT, 6256 6256 version_date DATETIME, 6257 created_date DATETIME,6257 created_date DATETIME, 6258 6258 status INT, 6259 6259 admins TEXT, … … 6263 6263 version_goal_list TEXT, 6264 6264 hidden TINYINT, 6265 options TEXT,6265 options TEXT, 6266 6266 description TEXT, 6267 6267 UNIQUE KEY id (id) … … 6275 6275 */ 6276 6276 $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) 6283 6283 ); 6284 6284 "; … … 6290 6290 */ 6291 6291 $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) 6297 6297 ); 6298 6298 "; -
bugerator/tags/1.1.8.1/readme.txt
r2169768 r2172051 5 5 Requires at least: 3.4.1 6 6 Tested up to: 5.2.3 7 Stable tag: 1.1.8 7 Stable tag: 1.1.8.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 == Changelog == 69 69 70 = 1.1.8.1= 71 72 * Minor bug when installing from scratch 73 70 74 = 1.1.8 = 71 75 … … 179 183 = 1.1.8 = 180 184 181 Overdue update that added a couple of new features (see readme) . Backup bugerator.css file before updating if you customized it.185 Overdue update that added a couple of new features (see readme) 182 186 183 187 = 1.1.7 = -
bugerator/trunk/bugerator.php
r2169756 r2172051 5 5 Plugin URI: http://www.tickerator.org/bugerator 6 6 Description: A bug tracking / issue tracking plugin 7 Version: 1.1.8 7 Version: 1.1.8.1 8 8 Author: David Whipple 9 9 Author URI: http://www.tickerator.org … … 5948 5948 add_option('bugerator_options', 'anonymous_post|false,upload_files|true,date_format|m/d/Y,' . 5949 5949 '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_anonymous e|false', '', 'no');5950 ',default_priority|3,default_status|0,hide_all_anonymous|false,accept_all_filetypes|false', '', 'no'); 5951 5951 add_option('bugerator_types', 'Bug,Feature Request,Idea', '', 'no'); 5952 5952 … … 6255 6255 current_version INT, 6256 6256 version_date DATETIME, 6257 created_date DATETIME,6257 created_date DATETIME, 6258 6258 status INT, 6259 6259 admins TEXT, … … 6263 6263 version_goal_list TEXT, 6264 6264 hidden TINYINT, 6265 options TEXT,6265 options TEXT, 6266 6266 description TEXT, 6267 6267 UNIQUE KEY id (id) … … 6275 6275 */ 6276 6276 $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) 6283 6283 ); 6284 6284 "; … … 6290 6290 */ 6291 6291 $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) 6297 6297 ); 6298 6298 "; -
bugerator/trunk/readme.txt
r2169768 r2172051 5 5 Requires at least: 3.4.1 6 6 Tested up to: 5.2.3 7 Stable tag: 1.1.8 7 Stable tag: 1.1.8.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 == Changelog == 69 69 70 = 1.1.8.1= 71 72 * Minor bug when installing from scratch 73 70 74 = 1.1.8 = 71 75 … … 179 183 = 1.1.8 = 180 184 181 Overdue update that added a couple of new features (see readme) . Backup bugerator.css file before updating if you customized it.185 Overdue update that added a couple of new features (see readme) 182 186 183 187 = 1.1.7 =
Note: See TracChangeset
for help on using the changeset viewer.