Skip to content

Commit 98a1530

Browse files
authored
Merge branch 'develop' into wip-laravel-11
2 parents 059c4c5 + 6f40075 commit 98a1530

File tree

149 files changed

+2141
-648
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+2141
-648
lines changed

.github/ISSUE_TEMPLATE/1_BUG_REPORT.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ body:
2727
label: PHP Version
2828
description: Please provide us the branch of PHP version. For example, for PHP version 7.4.9, select `7.4`, or for PHP version 8.0.1, select `8.0`.
2929
options:
30+
- 8.4
31+
- 8.3
32+
- 8.2
3033
- 8.1
3134
- 8.0
3235
- 7.4

.github/workflows/code-quality.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install PHP and PHP Code Sniffer
2828
uses: shivammathur/setup-php@v2
2929
with:
30-
php-version: 8.0
30+
php-version: 8.2
3131
extensions: curl, fileinfo, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml, zip
3232
tools: phpcs
3333

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
max-parallel: 8
9797
matrix:
9898
operatingSystem: [ubuntu-latest, windows-latest]
99-
phpVersion: ['8.2', '8.3']
99+
phpVersion: ['8.2', '8.3', '8.4']
100100
fail-fast: false
101101
runs-on: ${{ matrix.operatingSystem }}
102102
name: ${{ matrix.operatingSystem }} / PHP ${{ matrix.phpVersion }}
@@ -121,7 +121,7 @@ jobs:
121121
key: ${{ env.key }}
122122

123123
- name: Cache extensions
124-
uses: actions/cache@v2
124+
uses: actions/cache@v3
125125
with:
126126
path: ${{ steps.extcache.outputs.dir }}
127127
key: ${{ steps.extcache.outputs.key }}
@@ -154,7 +154,7 @@ jobs:
154154
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
155155

156156
- name: Cache dependencies
157-
uses: actions/cache@v2
157+
uses: actions/cache@v3
158158
with:
159159
path: ${{ steps.composercache.outputs.dir }}
160160
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

config/app.php

+14-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
*/
6464

6565
'asset_url' => env('ASSET_URL', null),
66-
66+
6767
/*
6868
|--------------------------------------------------------------------------
6969
| Temporary Path
@@ -195,6 +195,19 @@
195195

196196
'timezone' => 'UTC',
197197

198+
/*
199+
|--------------------------------------------------------------------------
200+
| Scheduler Timezone
201+
|--------------------------------------------------------------------------
202+
|
203+
| This property specifies the default timezone for your application's
204+
| scheduled tasks. You can set it independently of the application's
205+
| default timezone to ensure that schedules run at the desired local time.
206+
|
207+
*/
208+
209+
'schedule_timezone' => 'UTC',
210+
198211
/*
199212
|--------------------------------------------------------------------------
200213
| Application Locale Configuration

modules/backend/ServiceProvider.php

+34-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
<?php namespace Backend;
22

3-
use Backend;
4-
use BackendMenu;
5-
use BackendAuth;
6-
use Backend\Models\UserRole;
73
use Backend\Classes\WidgetManager;
8-
use System\Classes\MailManager;
4+
use Backend\Facades\Backend;
5+
use Backend\Facades\BackendAuth;
6+
use Backend\Facades\BackendMenu;
7+
use Backend\Models\AccessLog;
8+
use Backend\Models\UserRole;
9+
use Exception;
10+
use Illuminate\Support\Facades\Event;
911
use System\Classes\CombineAssets;
12+
use System\Classes\MailManager;
1013
use System\Classes\SettingsManager;
14+
use System\Classes\UpdateManager;
15+
use Winter\Storm\Support\Facades\Config;
16+
use Winter\Storm\Support\Facades\Flash;
1117
use Winter\Storm\Support\ModuleServiceProvider;
1218

1319
class ServiceProvider extends ModuleServiceProvider
@@ -25,6 +31,7 @@ public function register()
2531
$this->registerMailer();
2632
$this->registerAssetBundles();
2733
$this->registerBackendPermissions();
34+
$this->registerBackendUserEvents();
2835

2936
/*
3037
* Backend specific
@@ -207,6 +214,28 @@ protected function registerBackendPermissions()
207214
});
208215
}
209216

217+
/**
218+
* Register the backend user events
219+
*/
220+
protected function registerBackendUserEvents()
221+
{
222+
Event::listen('backend.user.login', function (\Backend\Models\User $user) {
223+
// @TODO: Deprecate this, and only run migrations when it makes sense
224+
$runMigrationsOnLogin = (bool) Config::get('cms.runMigrationsOnLogin', Config::get('app.debug', false));
225+
if ($runMigrationsOnLogin) {
226+
try {
227+
// Load version updates
228+
UpdateManager::instance()->update();
229+
} catch (Exception $e) {
230+
Flash::error($e->getMessage());
231+
}
232+
}
233+
234+
// Log the sign in event
235+
AccessLog::add($user);
236+
});
237+
}
238+
210239
/*
211240
* Register widgets
212241
*/

modules/backend/assets/css/winter.css

+70-71
Large diffs are not rendered by default.

modules/backend/assets/images/dashboard-icon.svg

+5-5
Loading

modules/backend/assets/images/media-icon.svg

+7-7
Loading

modules/backend/assets/images/tab-shape.svg

+4-4
Loading

modules/backend/assets/less/core/variables.less

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@color-border: #cccccc;
1818
@color-border-light: #e1e1e1;
1919

20-
@color-mainmenu: #000000;
20+
@color-mainmenu: #151515;
2121
@color-mainmenu-inactive: rgba(255,255,255,.6);
2222
@color-mainmenu-active: #ffffff;
2323
@color-mainmenu-active-bg: #262626;
@@ -93,10 +93,10 @@
9393
@color-filelist-hero-active-bg: @highlight-active-bg;
9494
@color-filelist-hero-active-text: @highlight-active-text;
9595

96-
@color-fancy-master-tabs-bg: #d35400;
96+
@color-fancy-master-tabs-bg: @brand-secondary-darker;
9797
@color-fancy-master-tabs-active-text: #ffffff;
9898
@color-fancy-master-tabs-inactive-text: rgba(255, 255, 255, .35);
99-
@color-fancy-master-panel-bg: #d35400;
99+
@color-fancy-master-panel-bg: @brand-secondary-darker;
100100

101101
@color-fancy-secondary-tabs-bg: #475354;
102102
@color-fancy-secondary-tabs-active-text: #ffffff;
@@ -111,9 +111,9 @@
111111
@color-fancy-form-tabless-fields-bg: @brand-secondary;
112112
@color-fancy-form-label: rgba(255, 255, 255, .5);
113113
@color-fancy-form-text: #ffffff;
114-
@color-fancy-form-text-selection: #d35400;
114+
@color-fancy-form-text-selection: @brand-secondary-darker;
115115
@color-fancy-form-placeholder: rgba(255, 255, 255, .5);
116-
@color-fancy-form-inactive-tab: #b9530f;
116+
@color-fancy-form-inactive-tab: #2c9cb9;
117117

118118
@color-sortable-caret: #999999;
119119
@color-sortable-active: @brand-secondary;
@@ -150,4 +150,4 @@
150150
// --------------------------------------------------
151151

152152
@menu-breakpoint-min: 770px;
153-
@menu-breakpoint-max: (@menu-breakpoint-min - 1);
153+
@menu-breakpoint-max: (@menu-breakpoint-min - 1);

modules/backend/assets/less/layout/fancylayout.less

-4
Original file line numberDiff line numberDiff line change
@@ -437,10 +437,6 @@ body.fancy-layout .master-tabs.control-tabs,
437437
}
438438
}
439439

440-
.tab-collapse-icon.primary {
441-
color: #808c8d;
442-
}
443-
444440
&.primary-collapsed {
445441
.tab-collapse-icon.primary {
446442
color: white;

modules/backend/assets/less/layout/sidepanel.less

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141
}
4242

4343
.sidepanel-content-header {
44-
background: #d35400;
44+
background: @brand-secondary-darker;
4545
color: white;
4646
font-size: 15px;
4747
padding: 12px 20px 13px;
4848
position: relative;
4949

5050
&:after {
51-
.triangle(down, 15px, 8px, #d35400);
51+
.triangle(down, 15px, 8px, @brand-secondary-darker);
5252
position: absolute;
5353
left: 14px;
5454
bottom: -8px;
@@ -94,4 +94,4 @@ body.display-side-panel {
9494
#layout-side-panel .fix-button {
9595
display: none;
9696
}
97-
}
97+
}

0 commit comments

Comments
 (0)