Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog


## [1.6.5] - 2025-10-11

### Added
* Build workflow now accepts a php input (default 8.3) to run builds against different PHP versions.
* Automated generation of changelog and readme entries via centralized reusable workflow dispatch.

### Changed
* Replaced ad-hoc tag/version logic with reusable next_version workflow reading composer.json.
* Added artifact_id to build outputs and propagated version output reliably across jobs.
* Pull request comments now use a maintained codesnippetspro action for improved stability.

### Removed
* Release asset filename now includes the tag name (<artifact_name>.<tag_name>.zip); update any consuming scripts/tools.

### Fixed
* Release pipeline downloads artifacts by ID instead of parsing from URL, preventing fetch failures.
* Zip creation step sets and exposes zip_name output consistently for subsequent steps.

## [1.6.4] - 2025-10-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codesnippetspro/translentor",
"version": "1.6.4",
"version": "1.6.5",
"description": "Translentor - Elementor-specific translation tool for WordPress.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
Expand Down
18 changes: 17 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Tested up to: 6.8.3
Requires PHP: 7.4
Requires at least: 6.6
Requires Plugins: elementor
Stable tag: 1.6.4
Stable tag: 1.6.5
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -118,6 +118,22 @@ Translentor is by far the easiest Wordpress Translation Plugin available. There
== Changelog ==



= 1.6.5 2025-10-11 =

__Changed__
* Build workflow now accepts a PHP version input (default 8.3)
* Release pipeline uses artifact_id directly for artifact downloads
* Consolidated changelog/readme generation via a single reusable workflow
* Version calculation moved to reusable workflow for consistency

__Removed__
* Release asset filename format changed to <artifact_name>.<tag>.zip; update any scripts relying on the old name

__Fixed__
* Fixed release downloads by replacing URL parsing with artifact_id
* Avoided ambiguous release asset names by appending tag to zip filename

= 1.6.4 (2025-10-03) =

__Added__
Expand Down
4 changes: 2 additions & 2 deletions src/translentor.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Translentor
* Plugin URI: https://translentor.com
* Description: This plugin adds a language translator widget to the Elementor Page Builder.
* Version: 1.6.4
* Version: 1.6.5
* Author: Code Snippets Pro
* Author URI: https://translentor.com
* Domain Path: translentor
Expand All @@ -13,7 +13,7 @@

define( 'translentor_DIR_Main', plugin_dir_path( __FILE__ ) );
define( 'translentor_URL', plugin_dir_url( __FILE__ ) );
define( 'translentor_VERSION', '1.6.4' );
define( 'translentor_VERSION', '1.6.5' );
define( 'translentor_slug', 'translentor' );
define( 'translentor_category_icon', 'fa fa-plug' );
define( 'translentor_category', 'Translator' );
Expand Down