Changeset 373729
- Timestamp:
- 04/16/2011 04:11:59 PM (14 years ago)
- Location:
- cubepoints/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cubepoints/trunk/cubepoints.php
r373336 r373729 4 4 Plugin URI: http://cubepoints.com 5 5 Description: CubePoints is a point management system designed for Wordpress blogs. Users can earn points by posting comments on your site. To display user's points, just put <code><?php cp_displayPoints(); ?></code> in your template or activate the sidebar widget. 6 Version: 3.0. 06 Version: 3.0.1 7 7 Author: Jonathan Lau & Peter Zhang 8 8 Author URI: http://cubepoints.com … … 12 12 13 13 /** Define constants */ 14 define('CP_VER', '3.0. 0');14 define('CP_VER', '3.0.1'); 15 15 define('CP_DB', $wpdb->base_prefix . 'cp'); 16 16 define('CP_PATH', WP_PLUGIN_URL.'/'.str_replace(basename( __FILE__),"",plugin_basename(__FILE__))); -
cubepoints/trunk/modules/ranks.php
r373336 r373729 8 8 add_option('cp_module_ranks_data', array(0=>__('Newbie','cp'))); 9 9 } 10 add_action('cp_module_ranks_ data_activate','cp_module_ranks_data_install');10 add_action('cp_module_ranks_activate','cp_module_ranks_data_install'); 11 11 12 12 if(cp_module_activated('ranks')){ -
cubepoints/trunk/readme.txt
r373336 r373729 5 5 Requires at least: 2.2 6 6 Tested up to: 3.1.1 7 Stable tag: 3.0. 07 Stable tag: 3.0.1 8 8 9 9 CubePoints is a point management system designed for WordPress blogs. … … 47 47 == Upgrade Notice == 48 48 49 = 3.0.1 = 50 Fixed a bug with the ranks module. 51 49 52 = 3.0.0 = 50 53 Complete rewrite of the CubePoints plugin! This version is not tested to work with the CubePoints-BuddyPress plugin as of yet. Some core features have been removed but will be shortly added as modules. … … 66 69 67 70 == Changelog == 71 72 **Version 3.0.1** *(April 17th, 2011)* 73 74 + [Bugfix] Fixed a bug in the ranks module 68 75 69 76 **Version 3.0.0** *(April 16th, 2011)*
Note: See TracChangeset
for help on using the changeset viewer.