Skip to content

Commit

Permalink
v5.10.42
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Oct 21, 2024
1 parent aaaa031 commit 592192a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.10.41
5.10.42
5 changes: 4 additions & 1 deletion app/Http/Controllers/ImportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,10 @@ private function convertData(array $data): array
'WINDOWS-1251', // CP1251
'UTF-16',
'UTF-32',
'ASCII'
'ASCII',
'WINDOWS-1254', // Turkish, which sometimes includes Georgian
'WINDOWS-1256', // Arabic, which sometimes includes Georgian
'ISO-8859-10',
];

foreach ($data as $key => $value) {
Expand Down
4 changes: 2 additions & 2 deletions config/ninja.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.10.41'),
'app_tag' => env('APP_TAG', '5.10.41'),
'app_version' => env('APP_VERSION', '5.10.42'),
'app_tag' => env('APP_TAG', '5.10.42'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),
Expand Down

0 comments on commit 592192a

Please sign in to comment.