Skip to content

Commit b035e16

Browse files
authored
Merge branch 'develop' into wip/support-uploading-packages
2 parents 1663800 + 6f40075 commit b035e16

File tree

129 files changed

+1876
-481
lines changed

Some content is hidden

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

129 files changed

+1876
-481
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/manifest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Update manifest
1212
runs-on: ubuntu-latest
1313
env:
14-
phpVersion: '8.1'
14+
phpVersion: '8.2'
1515
extensions: curl, fileinfo, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml, zip
1616
key: winter-cms-cache-develop
1717
steps:

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: ${{ matrix.operatingSystem }} / JavaScript
1919
env:
2020
nodeVersion: 16
21-
phpVersion: '8.0'
21+
phpVersion: '8.2'
2222
extensions: curl, fileinfo, gd, mbstring, openssl, pdo, pdo_sqlite, sqlite3, xml, zip
2323
key: winter-cms-cache-develop
2424
steps:
@@ -96,7 +96,7 @@ jobs:
9696
max-parallel: 8
9797
matrix:
9898
operatingSystem: [ubuntu-latest, windows-latest]
99-
phpVersion: ['8.0', '8.1', '8.2', '8.3']
99+
phpVersion: ['8.1', '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') }}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"source": "https://github.com/wintercms/winter"
3030
},
3131
"require": {
32-
"php": "^8.0.2",
32+
"php": ">=8.1",
3333
"winter/storm": "dev-develop as 1.2",
3434
"winter/wn-system-module": "dev-develop",
3535
"winter/wn-backend-module": "dev-develop",

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/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)