Skip to content

Commit

Permalink
Release 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Numkil committed Jan 24, 2024
1 parent e65b803 commit 8bdb0dd
Show file tree
Hide file tree
Showing 3 changed files with 1,013 additions and 907 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).


## 2.1.4 - 2024-01-24
### Fixed
- fixed regex allowing for spaces in twig syntax

## 2.1.2 - 2023-04-11
### Fixed
- Fixed for single site use
Expand Down
105 changes: 53 additions & 52 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,55 +1,56 @@
{
"name": "statikbe/craft-translate",
"description": "Translate static string from the Craft control panel",
"type": "craft-plugin",
"version": "2.1.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"translate"
],
"support": {
"docs": "https://github.com/statikbe/craft3-translate/blob/master/README.md",
"issues": "https://github.com/statikbe/craft3-translate/issues"
},
"license": "MIT",
"authors": [
{
"name": "Statik",
"homepage": "https://www.statik.be"
}
],
"require": {
"craftcms/cms": "^4.0.0-beta.1"
},
"autoload": {
"psr-4": {
"statikbe\\translate\\": "src/"
}
},
"extra": {
"name": "Translate",
"handle": "translate",
"schemaVersion": "1.0.0",
"hasSettings": true,
"developer": "Statik",
"class": "statikbe\\translate\\Translate",
"components": {
"app": "statikbe\\translate\\services\\App"
}
},
"require-dev": {
"codeception/codeception": "^5.0.0",
"vlucas/phpdotenv": "^3.0",
"codeception/module-yii2": "^1.1.8",
"codeception/module-asserts": "^2.0.0"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
"name": "statikbe/craft-translate",
"description": "Translate static string from the Craft control panel",
"type": "craft-plugin",
"version": "2.1.4",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"translate"
],
"support": {
"docs": "https://github.com/statikbe/craft3-translate/blob/master/README.md",
"issues": "https://github.com/statikbe/craft3-translate/issues"
},
"license": "MIT",
"authors": [
{
"name": "Statik",
"homepage": "https://www.statik.be"
}
],
"require": {
"php": ">=8.0",
"craftcms/cms": "^4.0.0-beta.1"
},
"autoload": {
"psr-4": {
"statikbe\\translate\\": "src/"
}
},
"extra": {
"name": "Translate",
"handle": "translate",
"schemaVersion": "1.0.0",
"hasSettings": true,
"developer": "Statik",
"class": "statikbe\\translate\\Translate",
"components": {
"app": "statikbe\\translate\\services\\App"
}
},
"require-dev": {
"codeception/codeception": "^5.0.0",
"vlucas/phpdotenv": "^3.0",
"codeception/module-yii2": "^1.1.8",
"codeception/module-asserts": "^2.0.0"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}
Loading

0 comments on commit 8bdb0dd

Please sign in to comment.