- team members fix

This commit is contained in:
Čarodej
2022-05-08 10:35:44 +02:00
parent 1331409920
commit 70fe106e45
8 changed files with 24 additions and 4 deletions
+9
View File
@@ -1,3 +1,12 @@
## Version 2.1.2
#### Release date: 8. May 2022
- Fixed issue with chunk uploads (Critical issue affected since 2.1.1)
- Fixed issue with creating plan with unlimited team members
## Version 2.1.1
#### Release date: 29. April 2022
- Fixed issue with reading image upload
## Version 2.1.0
#### Release date: 25. April 2022
- New remote upload function
+1 -1
View File
@@ -821,7 +821,7 @@ return [
'allow_homepage' => 'Allow Homepage',
'allow_homepage_note' => 'When this is turned on, your visitors can visit your default homepage.',
'storage_upload' => 'Storage & Upload',
'allow_recaptcha' => 'Allow ReCaptcha',
'allow_recaptcha' => 'Allow ReCaptcha v3',
'allow_recaptcha_note' => 'ReCaptcha will be allowed on Registration and Contact Us forms.',
'login_and_registration' => 'Login & Registration',
'account' => 'Account',
+1
View File
@@ -68,5 +68,6 @@ return [
'2_0_14',
'2_0_16',
'2_1_1',
'2_1_2',
],
];
+1 -1
View File
@@ -24,7 +24,7 @@
"/chunks/plans.js": "/chunks/plans.js?id=76398906ad873fc3",
"/chunks/users.js": "/chunks/users.js?id=b6629338e26b8313",
"/chunks/user-create.js": "/chunks/user-create.js?id=40254ae98547761e",
"/chunks/plan-create/fixed.js": "/chunks/plan-create/fixed.js?id=18f9d1ab17996507",
"/chunks/plan-create/fixed.js": "/chunks/plan-create/fixed.js?id=549867504d6e4e4e",
"/chunks/plan-create/metered.js": "/chunks/plan-create/metered.js?id=40e9f287b5258a40",
"/chunks/user.js": "/chunks/user.js?id=cf9a2a0d8c1fa1d9",
"/chunks/user-detail.js": "/chunks/user-detail.js?id=ff6c1fc63a372d96",
@@ -134,7 +134,7 @@
v-model="plan.features.max_team_members"
:placeholder="$t('add_max_team_members')"
type="number"
min="1"
min="-1"
max="999999999"
:class="{ '!border-rose-600': errors[0] }"
class="focus-border-theme input-dark"
@@ -18,7 +18,7 @@ class StoreFileChunksAction
$file = $request->file('file');
// Get chunk name
$name = $file->getClientOriginalName() . '.' . $request->input('extension');
$name = $file->getClientOriginalName();
// Get chunk file path
$path = Storage::disk('local')->path("chunks/$name");
@@ -1,6 +1,7 @@
<?php
namespace Domain\Localization\Actions;
use Artisan;
use DB;
class UpdateLanguageTranslationsAction
@@ -14,5 +15,7 @@ class UpdateLanguageTranslationsAction
->where('key', $item[1])
->update(['value' => $item[0]])
);
Artisan::call('cache:clear');
}
}
@@ -22,6 +22,13 @@ class UpgradingVersionsController
) {
}
public function upgrade_to_2_1_2(): void
{
($this->updateLanguageStrings)([
'allow_recaptcha' => 'Allow ReCaptcha v3',
]);
}
public function upgrade_to_2_1_1(): void
{
($this->upgradeDatabase)();