Changeset 916054
- Timestamp:
- 05/17/2014 10:19:50 AM (12 years ago)
- Location:
- buddypress-activity-privacy/trunk
- Files:
-
- 3 edited
-
history.txt (modified) (1 diff)
-
loader.php (modified) (6 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
buddypress-activity-privacy/trunk/history.txt
r916052 r916054 95 95 - Fix "new post" activities dropdown privacy as profile activites privacy. 96 96 97 Version 1.3.2 (Ma i17, 2014)97 Version 1.3.2 (May 17, 2014) 98 98 -------------------------------------------------------------- 99 99 - Fix issues when Buddypress Follow is activate -
buddypress-activity-privacy/trunk/loader.php
r896735 r916054 3 3 Plugin Name: BuddyPress Activity Privacy 4 4 Plugin URI: 5 Description: BP Activity Privacy add the ability for members to choose who can read his activity before it posted !6 Version: 1.3. 15 Description: Add the ability for members to choose who can read/see his activities and media files. 6 Version: 1.3.2 7 7 Requires at least: WP 3.4, BuddyPress 1.5 8 Tested up to: BuddyPress 1.5, 2.08 Tested up to: BuddyPress 2.0.1 9 9 License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html 10 10 Author: Meg@Info … … 19 19 20 20 /************************************************************************************************************* 21 --- BuddyPress Activity Privacy 1.3. 1---21 --- BuddyPress Activity Privacy 1.3.2 --- 22 22 *************************************************************************************************************/ 23 23 … … 27 27 // Define a constant that will hold the current version number of the component 28 28 // This can be useful if you need to run update scripts or do compatibility checks in the future 29 define( 'BP_ACTIVITY_PRIVACY_VERSION', '1.3. 1' );29 define( 'BP_ACTIVITY_PRIVACY_VERSION', '1.3.2' ); 30 30 31 31 // Define a constant that we can use to construct file paths throughout the component … … 65 65 add_action( 'plugins_loaded', 'bp_activity_privacy_load_textdomain' ); 66 66 67 68 function bp_activity_check_config() { 67 /** 68 * Check the config for multisite 69 */ 70 function bp_activity_privacy_check_config() { 69 71 global $bp; 70 72 … … 134 136 // Because our loader file uses BP_Component, it requires BP 1.5 or greater. 135 137 //if ( version_compare( BP_VERSION, '1.3', '>' ) ) 136 if ( bp_activity_ check_config() )138 if ( bp_activity_privacy_check_config() ) 137 139 require( dirname( __FILE__ ) . '/includes/bp-activity-privacy-loader.php' ); 138 140 } … … 141 143 /* Put setup procedures to be run when the plugin is activated in the following function */ 142 144 function bp_activity_privacy_activate() { 143 global $bp; 144 145 include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); 146 if ( !is_plugin_active( 'buddypress/bp-loader.php' ) ) { 147 //deactivate_plugins( basename( __FILE__ ) ); // Deactivate this plugin 145 // check if buddypress is active 146 if ( ! defined( 'BP_VERSION' ) ) { 148 147 die( _e( 'You cannot enable BuddyPress Activity Privacy because <strong>BuddyPress</strong> is not active. Please install and activate BuddyPress before trying to activate Buddypress Activity Privacy again.' , 'bp-activity-privacy' ) ); 149 148 } -
buddypress-activity-privacy/trunk/readme.txt
r896735 r916054 3 3 Tags: buddypress,activity,privacy,visibility,stream,private,public,only me,admins only,friends, followers,vie privée,confidentialité 4 4 Requires at least: WordPress 3.4, BuddyPress 1.5 5 Tested up to: WordPress 3.9 / BuddyPress 2.0 6 Stable tag: 1.3. 15 Tested up to: WordPress 3.9 / BuddyPress 2.0.1 6 Stable tag: 1.3.2 7 7 8 8 … … 11 11 BuddyPress Activity Privacy plugin add a privacy level to activity stream component. 12 12 13 The plugin add the ability for members to choose who can read his activity before it posted(Anyone, Logged In Users, My Friends, Admins Only, Only me, My Friends in Group , Group Members ...etc).13 The plugin add the ability for members to choose who can read his activity (Anyone, Logged In Users, My Friends, Admins Only, Only me, My Friends in Group , Group Members ...etc). 14 14 15 15 16 What's news In Buddypress Activity Privacy 1.3.x ? 16 = What's news In Buddypress Activity Privacy 1.3.x ? = 17 18 - **Integration with Buddypress Media plugin** (https://wordpress.org/plugins/buddypress-media/). 19 20 Make sure to : 21 * Set the privacy settings to **OFF** in rtMedia settings. 22 * A new select-box (Privacy) is added to Edit Media form under Description Textarea. 23 17 24 - The plugin work now on multi site Netowork. 18 25 - A New privacy level (@mentioned only). When a member choose this privacy level, only mentioned members (and admin of course) can see the activity. … … 24 31 25 32 - Admin Option Area, Admin can update Enable/Disable privacy level, Sort the privacy levels and change the default privacy level. 26 27 33 28 34 … … 70 76 == Changelog == 71 77 78 = 1.3.2 = 79 - Fix issues when Buddypress Follow is activate. 80 - Fix visibility of "Last update" activity on member header and members loop. 81 - Beta Integration with buddypress-media plugin (rtMedia for WordPress, BuddyPress and bbPress). 82 - add .POT file for translation. 83 72 84 = 1.3.1 = 73 85 - Work on Multisite Network. … … 76 88 = 1.3 = 77 89 - Fix localization loading. 78 - Fix integration with Followers plugin 90 - Fix integration with Followers plugin. 79 91 80 92 = 1.2.2 =
Note: See TracChangeset
for help on using the changeset viewer.