Changeset 3078700
- Timestamp:
- 04/29/2024 12:37:02 PM (11 months ago)
- Location:
- sesamy
- Files:
-
- 10 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
sesamy/tags/2.0.6/README.txt
r3077293 r3078700 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.4.2 7 Stable tag: 2.0. 57 Stable tag: 2.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 103 103 == Changelog == 104 104 105 = 2.0.6 = 106 * Fix to display content if "Locked Content" for "Event" and "Signed URL" lock modes 107 105 108 = 2.0.5 = 106 109 * Fix a duplicated preview in unlocked content with "Embed" lock mode -
sesamy/tags/2.0.6/public/sesamy-global-functions.php
r3077290 r3078700 89 89 90 90 // Only the 'entitlement' access level is supported to use with the 'signedUrl' and 'event' lock modes. 91 // If the access level is not 'entitlement', we change the lock mode to 'embed', so that the content unlocks correctly.92 if ( ( 'signedUrl' === $atts['lock_mode'] || 'event' === $atts['lock_mode'] ) && $access_level != 'entitlement') {91 // If the content is public or the access level is not 'entitlement', we change the lock mode to 'embed', so that the content unlocks correctly. 92 if ( ( 'signedUrl' === $atts['lock_mode'] || 'event' === $atts['lock_mode'] ) && ( isset( $atts['public'] ) || $access_level != 'entitlement' ) ) { 93 93 $atts['lock_mode'] = 'embed'; 94 94 } -
sesamy/tags/2.0.6/sesamy.php
r3077293 r3078700 16 16 * Plugin URI: https://sesamy.com 17 17 * Description: Add paywall functionality with Sesamy (sesamy.com) to your WordPress website. 18 * Version: 2.0. 518 * Version: 2.0.6 19 19 * Author: Sesamy AB 20 20 * Author URI: https://sesamy.com … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'SESAMY_VERSION', '2.0. 5' );37 define( 'SESAMY_VERSION', '2.0.6' ); 38 38 39 39 /** -
sesamy/tags/2.0.6/vendor/composer/installed.php
r3077293 r3078700 2 2 'root' => array( 3 3 'name' => '__root__', 4 'pretty_version' => '2.0. 5',5 'version' => '2.0. 5.0',6 'reference' => ' 982d96fbf2d5f6d2efc5e0450739298cbe30e7a8',4 'pretty_version' => '2.0.6', 5 'version' => '2.0.6.0', 6 'reference' => 'bd34f8a0cd6760511fef9701e9f60d9212d94d0d', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '__root__' => array( 14 'pretty_version' => '2.0. 5',15 'version' => '2.0. 5.0',16 'reference' => ' 982d96fbf2d5f6d2efc5e0450739298cbe30e7a8',14 'pretty_version' => '2.0.6', 15 'version' => '2.0.6.0', 16 'reference' => 'bd34f8a0cd6760511fef9701e9f60d9212d94d0d', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
sesamy/tags/2.0.6/version.php
r3077293 r3078700 9 9 */ 10 10 11 define( 'SESAMY_VERSION', '2.0. 5' );11 define( 'SESAMY_VERSION', '2.0.6' ); -
sesamy/trunk/README.txt
r3077293 r3078700 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.4.2 7 Stable tag: 2.0. 57 Stable tag: 2.0.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 103 103 == Changelog == 104 104 105 = 2.0.6 = 106 * Fix to display content if "Locked Content" for "Event" and "Signed URL" lock modes 107 105 108 = 2.0.5 = 106 109 * Fix a duplicated preview in unlocked content with "Embed" lock mode -
sesamy/trunk/public/sesamy-global-functions.php
r3077290 r3078700 89 89 90 90 // Only the 'entitlement' access level is supported to use with the 'signedUrl' and 'event' lock modes. 91 // If the access level is not 'entitlement', we change the lock mode to 'embed', so that the content unlocks correctly.92 if ( ( 'signedUrl' === $atts['lock_mode'] || 'event' === $atts['lock_mode'] ) && $access_level != 'entitlement') {91 // If the content is public or the access level is not 'entitlement', we change the lock mode to 'embed', so that the content unlocks correctly. 92 if ( ( 'signedUrl' === $atts['lock_mode'] || 'event' === $atts['lock_mode'] ) && ( isset( $atts['public'] ) || $access_level != 'entitlement' ) ) { 93 93 $atts['lock_mode'] = 'embed'; 94 94 } -
sesamy/trunk/sesamy.php
r3077293 r3078700 16 16 * Plugin URI: https://sesamy.com 17 17 * Description: Add paywall functionality with Sesamy (sesamy.com) to your WordPress website. 18 * Version: 2.0. 518 * Version: 2.0.6 19 19 * Author: Sesamy AB 20 20 * Author URI: https://sesamy.com … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'SESAMY_VERSION', '2.0. 5' );37 define( 'SESAMY_VERSION', '2.0.6' ); 38 38 39 39 /** -
sesamy/trunk/vendor/composer/installed.php
r3077293 r3078700 2 2 'root' => array( 3 3 'name' => '__root__', 4 'pretty_version' => '2.0. 5',5 'version' => '2.0. 5.0',6 'reference' => ' 982d96fbf2d5f6d2efc5e0450739298cbe30e7a8',4 'pretty_version' => '2.0.6', 5 'version' => '2.0.6.0', 6 'reference' => 'bd34f8a0cd6760511fef9701e9f60d9212d94d0d', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '__root__' => array( 14 'pretty_version' => '2.0. 5',15 'version' => '2.0. 5.0',16 'reference' => ' 982d96fbf2d5f6d2efc5e0450739298cbe30e7a8',14 'pretty_version' => '2.0.6', 15 'version' => '2.0.6.0', 16 'reference' => 'bd34f8a0cd6760511fef9701e9f60d9212d94d0d', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
sesamy/trunk/version.php
r3077293 r3078700 9 9 */ 10 10 11 define( 'SESAMY_VERSION', '2.0. 5' );11 define( 'SESAMY_VERSION', '2.0.6' );
Note: See TracChangeset
for help on using the changeset viewer.