Skip to content

Commit

Permalink
Recompile WordPress
Browse files Browse the repository at this point in the history
  • Loading branch information
deployment_bot committed Feb 22, 2024
1 parent d1edfd4 commit 1467766
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1592,14 +1592,6 @@ div.action-links,
margin-top: 0;
}

.plugin-card .column-description .authors {
order: 1;
}

.plugin-card .column-description .plugin-dependencies {
order: 2;
}

.plugin-card .column-description p:empty {
display: none;
}
Expand Down Expand Up @@ -1645,8 +1637,6 @@ div.action-links,
.plugin-card .plugin-dependency-name {
flex-basis: 69%;
}
.plugin-card .plugin-dependency .more-details-link {
}
}

.plugins #the-list .required-by,
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1591,14 +1591,6 @@ div.action-links,
margin-top: 0;
}

.plugin-card .column-description .authors {
order: 1;
}

.plugin-card .column-description .plugin-dependencies {
order: 2;
}

.plugin-card .column-description p:empty {
display: none;
}
Expand Down Expand Up @@ -1644,8 +1636,6 @@ div.action-links,
.plugin-card .plugin-dependency-name {
flex-basis: 69%;
}
.plugin-card .plugin-dependency .more-details-link {
}
}

.plugins #the-list .required-by,
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
"size": "10rem",
"slug": "xx-large",
"fluid": {
"min": "4rem",
"max": "20rem"
"min": "10rem",
"max": "16.3rem"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
{
"fluid": {
"max": "7rem",
"min": "4rem"
"min": "4.3rem"
},
"size": "7rem",
"slug": "xx-large"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"size": "3.2rem",
"fluid": {
"min": "3.2rem",
"max": "5.653rem"
"max": "5.2rem"
},
"slug": "xx-large",
"name": "2X Large"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@
},
{
"fluid": {
"min": "3.375rem",
"max": "7rem"
"min": "3.5rem",
"max": "5.7rem"
},
"size": "7rem",
"size": "5.7rem",
"slug": "xx-large"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
},
{
"fluid": {
"min": "4rem",
"min": "6.1rem",
"max": "10rem"
},
"size": "10rem",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2282,9 +2282,16 @@ var State = Backbone.Model.extend(/** @lends wp.media.controller.State.prototype
_menu: function() {
var menu = this.frame.menu,
mode = this.get('menu'),
actionMenuItems,
actionMenuLength,
view;

this.frame.$el.toggleClass( 'hide-menu', ! mode );
if ( this.frame.menu ) {
actionMenuItems = this.frame.menu.get('views'),
actionMenuLength = actionMenuItems ? actionMenuItems.views.get().length : 0,
// Show action menu only if it is active and has more than one default element.
this.frame.$el.toggleClass( 'hide-menu', ! mode || actionMenuLength < 2 );
}
if ( ! mode ) {
return;
}
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ export function getWordPressModuleDetails(wpVersion: string = "6.4"): { size: nu
case 'nightly':
/** @ts-ignore */
return {
size: 5124621,
size: 5125351,
url: url_nightly,
};

case 'beta':
/** @ts-ignore */
return {
size: 5124602,
size: 5124601,
url: url_beta,
};

Expand All @@ -45,21 +45,21 @@ export function getWordPressModuleDetails(wpVersion: string = "6.4"): { size: nu
case '6.3':
/** @ts-ignore */
return {
size: 3760136,
size: 3760138,
url: url_6_3,
};

case '6.2':
/** @ts-ignore */
return {
size: 3654389,
size: 3654388,
url: url_6_2,
};

case '6.1':
/** @ts-ignore */
return {
size: 3533946,
size: 3533943,
url: url_6_1,
};

Expand Down
Binary file modified packages/playground/wordpress/src/wordpress/wp-6.1.zip
Binary file not shown.
Binary file modified packages/playground/wordpress/src/wordpress/wp-6.2.zip
Binary file not shown.
Binary file modified packages/playground/wordpress/src/wordpress/wp-6.3.zip
Binary file not shown.
Binary file modified packages/playground/wordpress/src/wordpress/wp-6.4.zip
Binary file not shown.
Binary file modified packages/playground/wordpress/src/wordpress/wp-beta.zip
Binary file not shown.
Binary file modified packages/playground/wordpress/src/wordpress/wp-nightly.zip
Binary file not shown.

0 comments on commit 1467766

Please sign in to comment.