Skip to content

Commit

Permalink
Release 4.0.0 alpha.7 (#1668)
Browse files Browse the repository at this point in the history
* Update the GlotPress version in the glotpress.php file

* Update some assets' versions

* Update the CHANGELOG.md file
  • Loading branch information
amieiro committed Aug 8, 2023
1 parent cc09bd2 commit c4ffb94
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 18 deletions.
32 changes: 21 additions & 11 deletions CHANGELOG.md
@@ -1,26 +1,32 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [4.0.0-alpha.7] (August 08, 2023)

**Bugfixes**
* Fix wordpress.org plugin deploy if the minified files are already built ([#1662])
* Avoid adding the invisible classes in the glossary ([#1664])

## [4.0.0-alpha.6] (July 25, 2023)
* Increase the cache buster ([#1661])

## [4.0.0-alpha.5] (July 12, 2023)

**Features**
* Set as old the previous translations with waiting status for this user ([#1536])
* Highlight leading and trailing spaces, and double/multiple spaces in the middle ([#1500])
* Add I18n to JavaScript ([#1369])
* Highlight leading and trailing spaces, and double/multiple spaces in the middle ([#1500])
* Add I18n to JavaScript ([#1369])
* Add plural and plural forms labels to row previews and format the row editor accordingly ([#1506])
* Reorder glossary row editor items ([#1622])

**Bugfixes**
* Fix notice accessing undefined variable ([#1582])
* Improve translation strings consistency and comments to translators ([#1600])
* Fix PHP error for parameter after optional parameter ([#1465])
* Combine the suffixes for shorter regular expression. ([#1651])
* Fix notice accessing undefined variable ([#1582])
* Improve translation strings consistency and comments to translators ([#1600])
* Fix PHP error for parameter after optional parameter ([#1465])
* Combine the suffixes for shorter regular expression. ([#1651])

**Locales**
* Update plural expression for Kyrgyz ([#1634])
* Update plural expression for Kyrgyz ([#1634])
* Shorten the slug for Valencia (Catalan) ([#1635])

## [4.0.0-alpha.4] (Feb 28, 2023)
Expand Down Expand Up @@ -53,15 +59,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [4.0.0-alpha.2] (Sep 15, 2022)

**Features**
* Add a new status: changes requested ([#1451]). Currently, only available using the gp-translation-helpers plugin.
* Add "Last Modified" column to Glossary ([#1428])
* Add a new status: changes requested ([#1451]). Currently, only available using the gp-translation-helpers plugin.
* Add "Last Modified" column to Glossary ([#1428])
* Add word_count_type for each locale ([#1482])
* Add the alphabet for each locale ([#1479])
* Add a template for the PR ([#1448])
* Add a template for the PR ([#1448])
* Translations: Add sort by original string length ([#1449])

**Bugfixes**
* Fixes deprecation notice in PHP8 for usort returning bool ([#1464])
* Fixes deprecation notice in PHP8 for usort returning bool ([#1464])
* Fix warning discard link margin ([#1455])

## [4.0.0-alpha.1] (Mai 3, 2022)
Expand Down Expand Up @@ -543,6 +549,8 @@ Thanks to all the contributors so far: Aki Björklund, Daisuke Takahashi, Domini
* Initial release.

[Unreleased]: https://github.com/GlotPress/GlotPress/compare/3.0.0...HEAD
[4.0.0-alpha.7]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.6...4.0.0-alpha.7
[4.0.0-alpha.6]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.5...4.0.0-alpha.6
[4.0.0-alpha.5]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.4...4.0.0-alpha.5
[4.0.0-alpha.4]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.3...4.0.0-alpha.4
[4.0.0-alpha.3]: https://github.com/GlotPress/GlotPress/compare/4.0.0-alpha.2...4.0.0-alpha.3
Expand Down Expand Up @@ -645,3 +653,5 @@ Thanks to all the contributors so far: Aki Björklund, Daisuke Takahashi, Domini
[#1634]: https://github.com/GlotPress/GlotPress/pull/1634
[#1635]: https://github.com/GlotPress/GlotPress/pull/1635
[#1651]: https://github.com/GlotPress/GlotPress/pull/1651
[#1662]: https://github.com/GlotPress/GlotPress/pull/1662
[#1664]: https://github.com/GlotPress/GlotPress/pull/1664
4 changes: 2 additions & 2 deletions glotpress.php
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GlotPress
* Plugin URI: https://wordpress.org/plugins/glotpress/
* Description: GlotPress is a tool to help translators collaborate.
* Version: 4.0.0-alpha.6
* Version: 4.0.0-alpha.7
* Requires at least: 4.6
* Tested up to: 5.9
* Requires PHP: 7.4
Expand All @@ -29,7 +29,7 @@
* @package GlotPress
*/

define( 'GP_VERSION', '4.0.0-alpha.6' );
define( 'GP_VERSION', '4.0.0-alpha.7' );
define( 'GP_DB_VERSION', '980' );
define( 'GP_CACHE_VERSION', '3.0' );
define( 'GP_ROUTING', true );
Expand Down
10 changes: 5 additions & 5 deletions gp-includes/assets-loader.php
Expand Up @@ -30,11 +30,11 @@ function gp_register_default_scripts() {

// Register our standard scripts.
wp_register_script( 'tablesorter', $url . '/vendor/jquery.tablesorter' . $suffix, array( 'jquery' ), '20210429' );
wp_register_script( 'gp-common', $url . '/common' . $suffix, array( 'jquery', 'wp-i18n' ), '20230725' );
wp_register_script( 'gp-editor', $url . '/editor' . $suffix, array( 'gp-common', 'jquery-ui-tooltip', 'wp-wordcount' ), '20230725' );
wp_register_script( 'gp-glossary', $url . '/glossary' . $suffix, array( 'gp-editor' ), '20230725' );
wp_register_script( 'gp-translations-page', $url . '/translations-page' . $suffix, array( 'gp-editor' ), '20230725' );
wp_register_script( 'gp-mass-create-sets-page', $url . '/mass-create-sets-page' . $suffix, array( 'gp-editor' ), '20230725' );
wp_register_script( 'gp-common', $url . '/common' . $suffix, array( 'jquery', 'wp-i18n' ), '20230808' );
wp_register_script( 'gp-editor', $url . '/editor' . $suffix, array( 'gp-common', 'jquery-ui-tooltip', 'wp-wordcount' ), '20230808' );
wp_register_script( 'gp-glossary', $url . '/glossary' . $suffix, array( 'gp-editor' ), '20230808' );
wp_register_script( 'gp-translations-page', $url . '/translations-page' . $suffix, array( 'gp-editor' ), '20230808' );
wp_register_script( 'gp-mass-create-sets-page', $url . '/mass-create-sets-page' . $suffix, array( 'gp-editor' ), '20230808' );

wp_set_script_translations( 'gp-common', 'glotpress' );
wp_set_script_translations( 'gp-editor', 'glotpress' );
Expand Down

0 comments on commit c4ffb94

Please sign in to comment.