mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-19 10:53:31 +00:00
Auto commit for release 'develop' on 2024-05-18
This commit is contained in:
@@ -57,6 +57,7 @@ class AccountController extends Controller
|
|||||||
$this->repository->setUserGroup($userGroup);
|
$this->repository->setUserGroup($userGroup);
|
||||||
$this->default = app('amount')->getDefaultCurrency();
|
$this->default = app('amount')->getDefaultCurrency();
|
||||||
$this->converter = app(ExchangeRateConverter::class);
|
$this->converter = app(ExchangeRateConverter::class);
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@@ -73,28 +73,28 @@ class AutocompleteRequest extends FormRequest
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
// public function getData(): array
|
// public function getData(): array
|
||||||
// {
|
// {
|
||||||
//
|
//
|
||||||
// return [];
|
// return [];
|
||||||
// $types = $this->convertString('types');
|
// $types = $this->convertString('types');
|
||||||
// $array = [];
|
// $array = [];
|
||||||
// if ('' !== $types) {
|
// if ('' !== $types) {
|
||||||
// $array = explode(',', $types);
|
// $array = explode(',', $types);
|
||||||
// }
|
// }
|
||||||
// $limit = $this->convertInteger('limit');
|
// $limit = $this->convertInteger('limit');
|
||||||
// $limit = 0 === $limit ? 10 : $limit;
|
// $limit = 0 === $limit ? 10 : $limit;
|
||||||
//
|
//
|
||||||
// // remove 'initial balance' and another from allowed types. its internal
|
// // remove 'initial balance' and another from allowed types. its internal
|
||||||
// $array = array_diff($array, [AccountType::INITIAL_BALANCE, AccountType::RECONCILIATION]);
|
// $array = array_diff($array, [AccountType::INITIAL_BALANCE, AccountType::RECONCILIATION]);
|
||||||
//
|
//
|
||||||
// return [
|
// return [
|
||||||
// 'types' => $array,
|
// 'types' => $array,
|
||||||
// 'query' => $this->convertString('query'),
|
// 'query' => $this->convertString('query'),
|
||||||
// 'date' => $this->getCarbonDate('date'),
|
// 'date' => $this->getCarbonDate('date'),
|
||||||
// 'limit' => $limit,
|
// 'limit' => $limit,
|
||||||
// ];
|
// ];
|
||||||
// }
|
// }
|
||||||
|
|
||||||
public function rules(): array
|
public function rules(): array
|
||||||
{
|
{
|
||||||
|
@@ -96,7 +96,6 @@ class UniqueIban implements ValidationRule
|
|||||||
$maxCounts = $this->getMaxOccurrences();
|
$maxCounts = $this->getMaxOccurrences();
|
||||||
|
|
||||||
foreach ($maxCounts as $type => $max) {
|
foreach ($maxCounts as $type => $max) {
|
||||||
|
|
||||||
// make sure to trim the value of $value so all spaces are removed.
|
// make sure to trim the value of $value so all spaces are removed.
|
||||||
$value = Steam::filterSpaces($value);
|
$value = Steam::filterSpaces($value);
|
||||||
|
|
||||||
|
@@ -140,6 +140,7 @@ trait ConvertsDataTypes
|
|||||||
public function clearIban(?string $string): ?string
|
public function clearIban(?string $string): ?string
|
||||||
{
|
{
|
||||||
$string = $this->clearString($string);
|
$string = $this->clearString($string);
|
||||||
|
|
||||||
return Steam::filterSpaces($string);
|
return Steam::filterSpaces($string);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -682,7 +682,7 @@ class Steam
|
|||||||
"\u{3000}", // ideographic space
|
"\u{3000}", // ideographic space
|
||||||
"\u{FEFF}", // zero width no -break space
|
"\u{FEFF}", // zero width no -break space
|
||||||
"\x20", // plain old normal space,
|
"\x20", // plain old normal space,
|
||||||
' '
|
' ',
|
||||||
];
|
];
|
||||||
|
|
||||||
// clear zalgo text
|
// clear zalgo text
|
||||||
|
@@ -117,7 +117,7 @@ return [
|
|||||||
'expression_engine' => false,
|
'expression_engine' => false,
|
||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => 'develop/2024-05-16',
|
'version' => 'develop/2024-05-18',
|
||||||
'api_version' => '2.0.14',
|
'api_version' => '2.0.14',
|
||||||
'db_version' => 24,
|
'db_version' => 24,
|
||||||
|
|
||||||
|
@@ -2157,7 +2157,7 @@ return [
|
|||||||
'logout' => 'Desconectar',
|
'logout' => 'Desconectar',
|
||||||
'logout_other_sessions' => 'Sair de todas as outras sessões',
|
'logout_other_sessions' => 'Sair de todas as outras sessões',
|
||||||
'toggleNavigation' => 'Alternar navegação',
|
'toggleNavigation' => 'Alternar navegação',
|
||||||
'toggle_dropdown' => 'Toggle dropdown',
|
'toggle_dropdown' => 'Ativar/Desativar Menu Suspenso',
|
||||||
'searchPlaceholder' => 'Pesquisar...',
|
'searchPlaceholder' => 'Pesquisar...',
|
||||||
'version' => 'Versão',
|
'version' => 'Versão',
|
||||||
'dashboard' => 'Painel de Controle',
|
'dashboard' => 'Painel de Controle',
|
||||||
|
Reference in New Issue
Block a user