Skip to content

Commit

Permalink
version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Dec 31, 2022
1 parent 72b60fb commit 080939e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.1

Compatible with Kimai 1.17

- Added croatian translation - thanks @milotype
- Fixed code styles

## 1.0

Compatible with Kimai 1.17
Expand Down
2 changes: 1 addition & 1 deletion EventSubscriber/InvoicePreRenderSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function configureFormatter(InvoicePreRenderEvent $event): void
{
$language = $this->configuration->find('invoice.formatter_language');

if (empty($language) || !is_string($language)) {
if (empty($language) || !\is_string($language)) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Kimai extension to configure a language, which will be used to format money, date and time values in invoices",
"homepage": "https://www.kimai.org/store/invoice-format-fixation-bundle.html",
"type": "kimai-plugin",
"version": "1.0",
"version": "1.1",
"keywords": [
"kimai",
"kimai-plugin"
Expand Down

0 comments on commit 080939e

Please sign in to comment.