Changeset 2965012
- Timestamp:
- 09/10/2023 10:16:21 PM (3 years ago)
- Location:
- affilizz
- Files:
-
- 6 edited
- 23 copied
-
tags/1.13.2 (copied) (copied from affilizz/trunk)
-
tags/1.13.2/assets (copied) (copied from affilizz/trunk/assets)
-
tags/1.13.2/assets/dist/css/admin.css (modified) (2 diffs)
-
tags/1.13.2/assets/dist/js/editor.js (copied) (copied from affilizz/trunk/assets/dist/js/editor.js)
-
tags/1.13.2/assets/dist/js/wizard.js (copied) (copied from affilizz/trunk/assets/dist/js/wizard.js)
-
tags/1.13.2/assets/src/js/modal.js (copied) (copied from affilizz/trunk/assets/src/js/modal.js)
-
tags/1.13.2/assets/src/js/wizard.js (copied) (copied from affilizz/trunk/assets/src/js/wizard.js)
-
tags/1.13.2/assets/src/scss/common/modal.scss (modified) (2 diffs)
-
tags/1.13.2/classes (copied) (copied from affilizz/trunk/classes)
-
tags/1.13.2/classes/Ajax.php (copied) (copied from affilizz/trunk/classes/Ajax.php)
-
tags/1.13.2/classes/Core.php (copied) (copied from affilizz/trunk/classes/Core.php)
-
tags/1.13.2/classes/Install.php (copied) (copied from affilizz/trunk/classes/Install.php)
-
tags/1.13.2/classes/Page.php (copied) (copied from affilizz/trunk/classes/Page.php)
-
tags/1.13.2/classes/Shortcode/Publication.php (copied) (copied from affilizz/trunk/classes/Shortcode/Publication.php)
-
tags/1.13.2/classes/Util/Assets.php (copied) (copied from affilizz/trunk/classes/Util/Assets.php)
-
tags/1.13.2/classes/Util/Filters.php (copied) (copied from affilizz/trunk/classes/Util/Filters.php)
-
tags/1.13.2/classes/Util/Publications.php (copied) (copied from affilizz/trunk/classes/Util/Publications.php)
-
tags/1.13.2/index.php (copied) (copied from affilizz/trunk/index.php)
-
tags/1.13.2/init.php (copied) (copied from affilizz/trunk/init.php) (2 diffs)
-
tags/1.13.2/languages (copied) (copied from affilizz/trunk/languages)
-
tags/1.13.2/languages/affilizz-fr_FR.mo (copied) (copied from affilizz/trunk/languages/affilizz-fr_FR.mo)
-
tags/1.13.2/languages/affilizz-fr_FR.po (copied) (copied from affilizz/trunk/languages/affilizz-fr_FR.po)
-
tags/1.13.2/readme.txt (copied) (copied from affilizz/trunk/readme.txt) (2 diffs)
-
tags/1.13.2/templates (copied) (copied from affilizz/trunk/templates)
-
tags/1.13.2/templates/administration/page/settings/rendering.php (copied) (copied from affilizz/trunk/templates/administration/page/settings/rendering.php)
-
trunk/assets/dist/css/admin.css (modified) (2 diffs)
-
trunk/assets/src/scss/common/modal.scss (modified) (2 diffs)
-
trunk/init.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
affilizz/tags/1.13.2/assets/dist/css/admin.css
r2963967 r2965012 92 92 font-family: "Rubik", Arial, Sans_serif; 93 93 font-size: 14px; 94 top: 0;95 94 left: 0; 96 95 width: 100vw; 97 96 height: 100vh; 97 top: -9999em; 98 98 visibility: hidden; 99 99 opacity: 0; 100 pointer-events: none; 100 101 background: rgba(17, 20, 83, 0.8); 101 102 display: flex; … … 207 208 visibility: visible; 208 209 opacity: 1; 210 pointer-events: auto; 211 top: 0; 209 212 } 210 213 .affilizz-modal__loader img { -
affilizz/tags/1.13.2/assets/src/scss/common/modal.scss
r2963967 r2965012 12 12 font-size: $font_size_normal; 13 13 14 top: 0;15 14 left: 0; 16 15 width: 100vw; 17 16 height: 100vh; 17 top: -9999em; 18 18 19 19 visibility: hidden; 20 20 opacity: 0; 21 pointer-events: none; 21 22 22 23 background: #111453cc; … … 148 149 visibility: visible; 149 150 opacity: 1; 151 pointer-events: auto; 152 top: 0; 150 153 } 151 154 -
affilizz/tags/1.13.2/init.php
r2964143 r2965012 5 5 * Author URI: https://www.affilizz.com 6 6 * Author: Affilizz, Dewizz SAS <wordpress@affilizz.com> 7 * Version: 1.13. 17 * Version: 1.13.2 8 8 * Text Domain: affilizz 9 9 */ … … 12 12 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 13 13 14 define( 'AFFILIZZ_VERSION', '1.13. 1' );15 define( 'AFFILIZZ_ASSETS_BUILD_VERSION', ' oKHH9iqjlJTyi6Ir' );14 define( 'AFFILIZZ_VERSION', '1.13.2' ); 15 define( 'AFFILIZZ_ASSETS_BUILD_VERSION', 'PVgQX1I7EnIB7Lfp' ); 16 16 17 17 foreach ( array( -
affilizz/tags/1.13.2/readme.txt
r2964143 r2965012 4 4 Requires at least: 5.9 5 5 Tested up to: 6.3.1 6 Stable tag: 1.13. 16 Stable tag: 1.13.2 7 7 Requires PHP: 7.3.0 8 8 License: GPLv2 or later … … 52 52 53 53 == Changelog == 54 55 = 1.13.2 = 56 57 * Fixes an invisible "edit" link floating on top of the page / post content when the modal has been opened once. 54 58 55 59 = 1.13.1 = -
affilizz/trunk/assets/dist/css/admin.css
r2963967 r2965012 92 92 font-family: "Rubik", Arial, Sans_serif; 93 93 font-size: 14px; 94 top: 0;95 94 left: 0; 96 95 width: 100vw; 97 96 height: 100vh; 97 top: -9999em; 98 98 visibility: hidden; 99 99 opacity: 0; 100 pointer-events: none; 100 101 background: rgba(17, 20, 83, 0.8); 101 102 display: flex; … … 207 208 visibility: visible; 208 209 opacity: 1; 210 pointer-events: auto; 211 top: 0; 209 212 } 210 213 .affilizz-modal__loader img { -
affilizz/trunk/assets/src/scss/common/modal.scss
r2963967 r2965012 12 12 font-size: $font_size_normal; 13 13 14 top: 0;15 14 left: 0; 16 15 width: 100vw; 17 16 height: 100vh; 17 top: -9999em; 18 18 19 19 visibility: hidden; 20 20 opacity: 0; 21 pointer-events: none; 21 22 22 23 background: #111453cc; … … 148 149 visibility: visible; 149 150 opacity: 1; 151 pointer-events: auto; 152 top: 0; 150 153 } 151 154 -
affilizz/trunk/init.php
r2964143 r2965012 5 5 * Author URI: https://www.affilizz.com 6 6 * Author: Affilizz, Dewizz SAS <wordpress@affilizz.com> 7 * Version: 1.13. 17 * Version: 1.13.2 8 8 * Text Domain: affilizz 9 9 */ … … 12 12 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 13 13 14 define( 'AFFILIZZ_VERSION', '1.13. 1' );15 define( 'AFFILIZZ_ASSETS_BUILD_VERSION', ' oKHH9iqjlJTyi6Ir' );14 define( 'AFFILIZZ_VERSION', '1.13.2' ); 15 define( 'AFFILIZZ_ASSETS_BUILD_VERSION', 'PVgQX1I7EnIB7Lfp' ); 16 16 17 17 foreach ( array( -
affilizz/trunk/readme.txt
r2964143 r2965012 4 4 Requires at least: 5.9 5 5 Tested up to: 6.3.1 6 Stable tag: 1.13. 16 Stable tag: 1.13.2 7 7 Requires PHP: 7.3.0 8 8 License: GPLv2 or later … … 52 52 53 53 == Changelog == 54 55 = 1.13.2 = 56 57 * Fixes an invisible "edit" link floating on top of the page / post content when the modal has been opened once. 54 58 55 59 = 1.13.1 =
Note: See TracChangeset
for help on using the changeset viewer.