Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions wordpress-plugins/calorieapp-identity-bridge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ The browser endpoint is intentionally not REST. XUMM Login establishes a normal

Details are in SECURITY.md and CONFIGURATION.md.

Version 0.3.23 keeps the desktop account card within its existing Brizy column.
The shortcode uses the available column width and the card is centred with a
maximum width of 220px. This prevents the right edge from being clipped on
narrower desktop windows without adding a height constraint or moving the menu.
Only the horizontal margins are adjusted; vertical spacing stays theme-controlled.
These rules apply only from 769px. The mobile CSS and all JavaScript files stay
unchanged from 0.3.22. Authentication and session logic is unchanged; the fallback
asset-version string also advances to 0.3.23.

Version 0.3.22 moves the embedded page's existing joint-logout button into the
XUMM account card after the embed controller initializes. Both website controls
use the short label “Log out”, with an accessible explanation of the sessions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
/* Public-header presentation only. Desktop and authentication UI keep their
existing styles. On phones the account card scrolls with the header. */
/* Public-header presentation only. Keep the account card within its desktop
column. On phones the account card scrolls with the header. */
@media (min-width: 769px) {
.brz .calorieapp-identity-wrapper .brz-wp-shortcode {
width: 100% !important;
max-width: 100% !important;
}

.brz .calorieapp-identity-wrapper .brz-wp-shortcode > div {
width: 100% !important;
}

.brz .calorieapp-identity-card {
box-sizing: border-box;
width: 100% !important;
max-width: 220px !important;
margin-left: auto !important;
margin-right: auto !important;
}
Comment thread
xrpbanks marked this conversation as resolved.
}

@media (max-width: 768px) {
.brz .calorieapp-identity-wrapper {
position: relative !important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: CalorieApp Identity Bridge
* Plugin URI: https://calorietoken.net
* Description: Companion bridge plugin that maps authenticated WordPress/XUMM Login sessions to short-lived CalorieApp authorization codes.
* Version: 0.3.22
* Version: 0.3.23
* Author: CalorieApp
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -19,7 +19,7 @@
}

if (!defined('CALORIEAPP_IDENTITY_BRIDGE_VERSION')) {
define('CALORIEAPP_IDENTITY_BRIDGE_VERSION', '0.3.22');
define('CALORIEAPP_IDENTITY_BRIDGE_VERSION', '0.3.23');
}
Comment thread
xrpbanks marked this conversation as resolved.

require_once plugin_dir_path(__FILE__) . 'includes/class-calorieapp-identity-bridge.php';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function register_assets(): void {
$base_url = plugin_dir_url(CALORIEAPP_IDENTITY_BRIDGE_FILE);
$version = defined('CALORIEAPP_IDENTITY_BRIDGE_VERSION')
? CALORIEAPP_IDENTITY_BRIDGE_VERSION
: '0.3.22';
: '0.3.23';

wp_register_style(
'calorieapp-identity-bridge-embed',
Expand Down