Skip to content

Commit 080939e

Browse files
committed
version 1.1
1 parent 72b60fb commit 080939e

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 1.1
4+
5+
Compatible with Kimai 1.17
6+
7+
- Added croatian translation - thanks @milotype
8+
- Fixed code styles
9+
310
## 1.0
411

512
Compatible with Kimai 1.17

EventSubscriber/InvoicePreRenderSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function configureFormatter(InvoicePreRenderEvent $event): void
3434
{
3535
$language = $this->configuration->find('invoice.formatter_language');
3636

37-
if (empty($language) || !is_string($language)) {
37+
if (empty($language) || !\is_string($language)) {
3838
return;
3939
}
4040

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Kimai extension to configure a language, which will be used to format money, date and time values in invoices",
44
"homepage": "https://www.kimai.org/store/invoice-format-fixation-bundle.html",
55
"type": "kimai-plugin",
6-
"version": "1.0",
6+
"version": "1.1",
77
"keywords": [
88
"kimai",
99
"kimai-plugin"

0 commit comments

Comments
 (0)