Skip to content

Commit

Permalink
Merge branch 'trunk' into install-plugin-accept-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrgicak authored Sep 24, 2024
2 parents 1500eba + b81c81d commit 84c713d
Show file tree
Hide file tree
Showing 406 changed files with 111,618 additions and 97,359 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ All notable changes to this project are documented in this file by a CI job
that runs on every NPM release. The file follows the [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
format.

## [v0.9.43] (2024-09-23)

### Documentation

- Docs: Better paths for links. ([#1765](https://github.com/WordPress/wordpress-playground/pull/1765))
- Docs: I18n setup. ([#1766](https://github.com/WordPress/wordpress-playground/pull/1766))
- Docs: Remove the outdated "data rependencies" page. ([#1785](https://github.com/WordPress/wordpress-playground/pull/1785))

### Website

- Fix troubleshoot-and-debug link. ([#1782](https://github.com/WordPress/wordpress-playground/pull/1782))

### Various

- Update link for contributor day. ([#1775](https://github.com/WordPress/wordpress-playground/pull/1775))

### Contributors

The following contributors merged PRs in this release:

@adamziel @bgrgicak @juanmaguitar @n8finch


## [v0.9.42] (2024-09-17)

### PHP WebAssembly
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.9.42",
"version": "0.9.43",
"useWorkspaces": true,
"useNx": true
}
38 changes: 19 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Behind the scenes, the official [SQLite Database Integration](https://github.com

## WordPress in the browser

WordPress Playground ships a [bundled WordPress](/developers/architecture/wasm-php-data-dependencies) that you can use in the browser. It's optimized for size, and the installation wizard is run for you.
You can use any WordPress build in the browser. For convenience and to reduce the data transfer size, WordPress Playground ships a few [minified WordPress releases](https://github.com/WordPress/wordpress-playground/tree/trunk/packages/playground/wordpress-builds) that you can use in the browser.

## WordPress in Node.js

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The [web bundler Dockerfile](https://github.com/WordPress/wordpress-playground/b
- Makes WordPress run on SQLite using the [official drop-in plugin](https://github.com/WordPress/sqlite-database-integration) as MySQL is unsupported in the browser.
- Reduces the WordPress website size from about 70MB to about 10MB, or 5MB compressed.
- Runs the WordPress installation wizard.
- Bundles WordPress as a [data dependency](/developers/architecture/wasm-php-data-dependencies)
- Bundles WordPress as a minified zip file.

Build a new bundle with `nx bundle-wordpress playground-wordpress-builds --wp-version=<version>`, e.g.:

Expand Down
23 changes: 23 additions & 0 deletions packages/docs/site/docs/main/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,29 @@ All notable changes to this project are documented in this file by a CI job
that runs on every NPM release. The file follows the [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
format.

## [v0.9.43] (2024-09-23)

### Documentation

- Docs: Better paths for links. ([#1765](https://github.com/WordPress/wordpress-playground/pull/1765))
- Docs: I18n setup. ([#1766](https://github.com/WordPress/wordpress-playground/pull/1766))
- Docs: Remove the outdated "data rependencies" page. ([#1785](https://github.com/WordPress/wordpress-playground/pull/1785))

### Website

- Fix troubleshoot-and-debug link. ([#1782](https://github.com/WordPress/wordpress-playground/pull/1782))

### Various

- Update link for contributor day. ([#1775](https://github.com/WordPress/wordpress-playground/pull/1775))

### Contributors

The following contributors merged PRs in this release:

@adamziel @bgrgicak @juanmaguitar @n8finch


## [v0.9.42] (2024-09-17)

### PHP WebAssembly
Expand Down
21 changes: 20 additions & 1 deletion packages/docs/site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,22 @@ const config = {
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
path: 'i18n',
locales: ['en', 'es', 'fr'],
localeConfigs: {
en: {
label: 'English',
path: 'en',
},
es: {
label: 'Español',
path: 'es',
},
fr: {
label: 'French',
path: 'fr',
},
},
},
themes: ['@docusaurus/theme-live-codeblock'],
plugins: [
Expand Down Expand Up @@ -146,6 +161,10 @@ const config = {
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
{
type: 'localeDropdown',
position: 'right',
},
],
},
footer: {
Expand Down
Loading

0 comments on commit 84c713d

Please sign in to comment.