mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2026-03-03 02:47:02 +00:00
V5.11.0
This commit is contained in:
1
.github/workflows/react_release.yml
vendored
1
.github/workflows/react_release.yml
vendored
@@ -49,7 +49,6 @@ jobs:
|
||||
cd ui
|
||||
git checkout develop
|
||||
sed -i 's/VITE_IS_TEST=true/VITE_IS_TEST=false/' .env.example
|
||||
sed -i 's/VITE_ENABLE_PEPPOL_STANDARD=false/VITE_ENABLE_PEPPOL_STANDARD=true/' .env.example
|
||||
|
||||
cp .env.example .env
|
||||
cp ../vite.config.ts.react ./vite.config.js
|
||||
|
||||
@@ -1 +1 @@
|
||||
5.10.62
|
||||
5.11.0
|
||||
@@ -132,6 +132,8 @@ class ActivityController extends BaseController
|
||||
|
||||
$file = $backup->getFile();
|
||||
|
||||
$html_backup = $file;
|
||||
|
||||
if(!$file)
|
||||
return response()->json(['message' => ctrans('texts.no_backup_exists'), 'errors' => new stdClass()], 404);
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@ class Backup extends BaseModel
|
||||
$filename = now()->format('Y_m_d').'_'.md5(time()).'.html'; //@phpstan-ignore-line
|
||||
$file_path = $path.$filename;
|
||||
|
||||
$disk = Ninja::isHosted() ? config('filesystems.backup') : config('filesystems.default');
|
||||
$disk = Ninja::isHosted() ? 'backup' : config('filesystems.default');
|
||||
|
||||
Storage::disk($disk)->put($file_path, $html);
|
||||
|
||||
|
||||
@@ -17,8 +17,8 @@ return [
|
||||
'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.62'),
|
||||
'app_tag' => env('APP_TAG', '5.10.62'),
|
||||
'app_version' => env('APP_VERSION', '5.11.0'),
|
||||
'app_tag' => env('APP_TAG', '5.11.0'),
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', false),
|
||||
|
||||
Reference in New Issue
Block a user