Changeset 3439731
- Timestamp:
- 01/14/2026 05:21:18 PM (3 months ago)
- Location:
- rank-authority
- Files:
-
- 6 added
- 2 edited
-
tags/1.0.6 (added)
-
tags/1.0.6/assets (added)
-
tags/1.0.6/assets/icon.svg (added)
-
tags/1.0.6/rank-authority.php (added)
-
tags/1.0.6/readme.txt (added)
-
tags/1.0.6/uninstall.php (added)
-
trunk/rank-authority.php (modified) (10 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rank-authority/trunk/rank-authority.php
r3439729 r3439731 4 4 * Plugin URI: https://rankauthority.com/plugins/rankauthority 5 5 * Description: Secure API connector to publish posts / overwrite posts from the RA Dashboard to WordPress. 6 * Version: 1.0. 56 * Version: 1.0.6 7 7 * Author: Rank Authority 8 8 * Author URI: https://rankauthority.com … … 293 293 .rank-authority-btn { 294 294 flex: 1; 295 min-width: 0; 295 296 padding: 14px 20px; 296 297 border-radius: 12px; … … 304 305 justify-content: center; 305 306 gap: 8px; 307 white-space: nowrap; 306 308 } 307 309 … … 371 373 gap: 12px; 372 374 margin-bottom: 24px; 375 align-items: stretch; 373 376 } 374 377 … … 378 381 padding: 16px; 379 382 text-align: center; 383 display: flex; 384 flex-direction: column; 385 align-items: center; 386 justify-content: flex-start; 387 min-height: 100%; 380 388 } 381 389 … … 383 391 font-size: 28px; 384 392 margin-bottom: 10px; 393 line-height: 1; 394 display: flex; 395 align-items: center; 396 justify-content: center; 385 397 } 386 398 … … 390 402 color: #475569; 391 403 margin-bottom: 4px; 404 line-height: 1.2; 392 405 } 393 406 … … 396 409 color: #94a3b8; 397 410 line-height: 1.4; 411 margin: 0; 398 412 } 399 413 … … 626 640 $website_id = get_option($this->option_website_id); 627 641 $token = get_option($this->option_token); 628 $plugin_version = get_file_data(__FILE__, array('Version' => 'Version'), false)['Version'] ?? '1.0. 5';642 $plugin_version = get_file_data(__FILE__, array('Version' => 'Version'), false)['Version'] ?? '1.0.6'; 629 643 630 644 ?> … … 670 684 <div class="rank-authority-token-value" id="rank-authority-token-value"><?php echo esc_html($token); ?></div> 671 685 <div class="rank-authority-token-actions"> 672 <button type="button" class="rank-authority-btn rank-authority-btn-copy" id="rank-authority-copy-btn" >686 <button type="button" class="rank-authority-btn rank-authority-btn-copy" id="rank-authority-copy-btn" style="flex: 1;"> 673 687 <svg width="18" height="18" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/></svg> 674 688 Copy Token 675 689 </button> 676 690 <?php if ($current_user_id === $owner_id): ?> 677 <form method="post" style="flex:1; margin:0; display:flex; ">691 <form method="post" style="flex:1; margin:0; display:flex; min-width:0;"> 678 692 <?php wp_nonce_field('ra_regenerate_token'); ?> 679 <button type="submit" name="ra_regenerate_token" class="rank-authority-btn rank-authority-btn-reset" style=" width:100%;" onclick="return confirm('Are you sure? This will invalidate your current token.');">693 <button type="submit" name="ra_regenerate_token" class="rank-authority-btn rank-authority-btn-reset" style="flex: 1; width:100%;" onclick="return confirm('Are you sure? This will invalidate your current token.');"> 680 694 <svg width="18" height="18" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/></svg> 681 695 Reset -
rank-authority/trunk/readme.txt
r3439729 r3439731 8 8 Tested up to: 6.9 9 9 Requires PHP: 7.4 10 Stable tag: 1.0. 510 Stable tag: 1.0.6 11 11 License: GPLv2 or later 12 12 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 139 139 == Changelog == 140 140 141 = 1.0.6 = 142 * Fixed Copy Token and Reset button widths to be perfectly equal 143 * Improved button flex layout with min-width and white-space properties 144 * Enhanced button alignment and visual consistency 145 141 146 = 1.0.5 = 142 147 * Fixed Reset button width to match Copy button width … … 179 184 == Upgrade Notice == 180 185 186 = 1.0.6 = 187 Fixed button width alignment - Copy Token and Reset buttons now have perfectly equal widths. 188 181 189 = 1.0.5 = 182 190 Minor UI improvements: Reset button width fix and improved admin menu icon styling.
Note: See TracChangeset
for help on using the changeset viewer.