Plugin Directory

Changeset 1076223


Ignore:
Timestamp:
01/26/2015 08:12:18 PM (11 years ago)
Author:
jquindlen
Message:

0.9.10

  • Updated: Shortcode fixed
Location:
wpbugtracktor
Files:
201 added
4 edited

Legend:

Unmodified
Added
Removed
  • wpbugtracktor/trunk/nbproject/private/private.xml

    r1050391 r1076223  
    44    <editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
    55    <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
    6         <group>
    7             <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpbugtracktor/php/admin/adminajax.php</file>
    8             <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpbugtracktor/php/admin/adminpages.php</file>
    9             <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpbugtracktor/wpbugtracktor.php</file>
    10             <file>file:/D:/PORTABLES/EasyPHP-5.3.3/www/wordpress2/wp-content/plugins/wpbugtracktor/readme.txt</file>
    11         </group>
     6        <group/>
    127    </open-files>
    138</project-private>
  • wpbugtracktor/trunk/php/shortcodes/shortcodes.php

    r873790 r1076223  
    8282
    8383
    84 
     84add_shortcode('idbbugtracker', 'wpBugTracktorMainShortcode');
    8585add_shortcode('wpbugtracktor', 'wpBugTracktorMainShortcode');
    8686
  • wpbugtracktor/trunk/readme.txt

    r1050391 r1076223  
    55Requires at least: 3.5.0
    66Tested up to: 4.2
    7 Stable tag: 0.9.9
     7Stable tag: 0.9.10
    88
    99The best native bug tracking and issue management system for Wordpress.
     
    4747
    4848== Changelog ==
     49
     50= 0.9.10 =
     51* Updated: Shortcode fixed
    4952
    5053= 0.9.9 =
  • wpbugtracktor/trunk/wpbugtracktor.php

    r1050391 r1076223  
    44Plugin URI: http://indiedevbundle.com/app/idb-ultimate-wordpress-bundle/#idbbugtracker
    55Description: IDB Bug Tracker is a free, open source, and full featured bug tracking and issue management system built atop of Wordpress.
    6 Version: 0.9.9
     6Version: 0.9.10
    77Author: IndieDevBundle.com
    88Author URI: http://indiedevbundle.com/app/idb-ultimate-wordpress-bundle/#idbbugtracker
     
    1212
    1313/* 
    14 Copyright 2012, 2013, 2014 Jeff Quindlen  (email : blacklodgegames@gmail.com)
     14Copyright 2012, 2013, 2014, 2015 Jeff Quindlen  (email : blacklodgegames@gmail.com)
    1515
    1616This library is free software; you can redistribute it and/or modify it under the terms
     
    3333
    3434/* Global variables: */
    35 $wpscbt_version = '0.9.9';
    36 $wpscbt_version_int = 009009; // Mm_p__ which is 1 digit for Major, 2 for minor, and 3 digits for patch updates, so version 2.0.14 would be 200014
     35$wpscbt_version = '0.9.10';
     36$wpscbt_version_int = 009010; // Mm_p__ which is 1 digit for Major, 2 for minor, and 3 digits for patch updates, so version 2.0.14 would be 200014
    3737
    3838if(session_id() == '') {
Note: See TracChangeset for help on using the changeset viewer.