Skip to content

Commit

Permalink
Merge branch 'main' into fix/timezone_abbr
Browse files Browse the repository at this point in the history
  • Loading branch information
spacedmonkey committed Sep 26, 2022
2 parents 0f4ebba + 3f59057 commit 1351180
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions packages/commander/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/**
* External dependencies
*/
import { mkdirSync, rmdirSync, existsSync } from 'fs';
import { mkdirSync, rmSync, existsSync } from 'fs';
import { relative } from 'path';
import { Command } from 'commander';
import semver from 'semver';
Expand Down Expand Up @@ -126,7 +126,7 @@ program

// Make sure build directory exists and is empty.
if (existsSync(BUILD_DIR)) {
rmdirSync(BUILD_DIR, { recursive: true, force: true });
rmSync(BUILD_DIR, { recursive: true, force: true });
}
mkdirSync(BUILD_DIR, { recursive: true });

Expand Down
16 changes: 9 additions & 7 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ Web Stories are powered by [AMP](https://amp.dev/), which adds some restrictions

For the plugin's full changelog, please see [the Releases page on GitHub](https://github.com/googleforcreators/web-stories-wp/releases).

= 1.25.1 =

* Fixes an issue with an incorrectly shown compatibility warning in the checklist.
* Fixes template insertion from the dashboard
* Fixes a couple of edge case issues around media uploads & trimming.

= 1.25.0 =

* New feature: background blurring support for webcam recording.
Expand All @@ -126,11 +132,11 @@ For the plugin's full changelog, please see [the Releases page on GitHub](https:
* Enhancement: improved media upload experience for pre-optimized videos.
* Bug fixes and performance improvements.

= 1.23.2 =
== Upgrade Notice ==

* Fixes another issue related to story poster images.
= 1.25.1 =

== Upgrade Notice ==
This release addresses a few regressions regarding the checklist, templates, and media uploads.

= 1.25.0 =

Expand All @@ -139,7 +145,3 @@ This release adds improvements to webcam recording, saving, and the floating men
= 1.24.0 =

This release introduces multi-page canvas and contains improvements to webcam recording, third-party media, and templates.

= 1.23.2 =

This release fixes another issue related to story poster images.

0 comments on commit 1351180

Please sign in to comment.