Skip to content

Commit d021b04

Browse files
committed
Release v4.6.1
1 parent 96a1e60 commit d021b04

File tree

99 files changed

+852
-447
lines changed

Some content is hidden

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

99 files changed

+852
-447
lines changed

.gitignore

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ _modules/*
100100
.idea/
101101
*.iml
102102

103-
# Netbeans
104-
nbproject/
105-
build/
106-
nbbuild/
107-
dist/
108-
nbdist/
109-
nbactions.xml
110-
nb-configuration.xml
111-
.nb-gradle/
103+
# NetBeans
104+
/nbproject/
105+
/build/
106+
/nbbuild/
107+
/dist/
108+
/nbdist/
109+
/nbactions.xml
110+
/nb-configuration.xml
111+
/.nb-gradle/
112112

113113
# Sublime Text
114114
*.tmlanguage.cache

app/Config/Autoload.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
*
1818
* NOTE: This class is required prior to Autoloader instantiation,
1919
* and does not extend BaseConfig.
20-
*
21-
* @immutable
2220
*/
2321
class Autoload extends AutoloadConfig
2422
{

app/Config/Cache.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ class Cache extends BaseConfig
108108
* -------------------------------------------------------------------------
109109
* Redis settings
110110
* -------------------------------------------------------------------------
111+
*
111112
* Your Redis server can be specified below, if you are using
112113
* the Redis or Predis drivers.
113114
*

app/Config/DocTypes.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace Config;
44

5-
/**
6-
* @immutable
7-
*/
85
class DocTypes
96
{
107
/**

app/Config/Mimes.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
namespace Config;
44

55
/**
6-
* Mimes
7-
*
86
* This file contains an array of mime types. It is used by the
97
* Upload class to help identify allowed file types.
108
*
@@ -15,8 +13,6 @@
1513
*
1614
* When working with mime types, please make sure you have the ´fileinfo´
1715
* extension enabled to reliably detect the media types.
18-
*
19-
* @immutable
2016
*/
2117
class Mimes
2218
{
@@ -482,6 +478,8 @@ class Mimes
482478
'application/sla',
483479
'application/vnd.ms-pki.stl',
484480
'application/x-navistyle',
481+
'model/stl',
482+
'application/octet-stream',
485483
],
486484
];
487485

app/Config/Modules.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
*
1010
* NOTE: This class is required prior to Autoloader instantiation,
1111
* and does not extend BaseConfig.
12-
*
13-
* @immutable
1412
*/
1513
class Modules extends BaseModules
1614
{

app/Config/Optimize.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
*
88
* NOTE: This class does not extend BaseConfig for performance reasons.
99
* So you cannot replace the property values with Environment Variables.
10-
*
11-
* @immutable
1210
*/
1311
class Optimize
1412
{

app/Config/Paths.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*
1616
* NOTE: This class is required prior to Autoloader instantiation,
1717
* and does not extend BaseConfig.
18-
*
19-
* @immutable
2018
*/
2119
class Paths
2220
{

app/Views/errors/html/debug.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--main-text-color: #555;
44
--dark-text-color: #222;
55
--light-text-color: #c7c7c7;
6-
--brand-primary-color: #E06E3F;
6+
--brand-primary-color: #DC4814;
77
--light-bg-color: #ededee;
88
--dark-bg-color: #404040;
99
}
@@ -71,7 +71,7 @@ p.lead {
7171
text-align: center;
7272
padding: calc(4px + 0.2083vw);
7373
width: 100%;
74-
margin-top: -2.14rem;
74+
top: 0;
7575
position: fixed;
7676
}
7777

preload.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
* the LICENSE file that was distributed with this source code.
1010
*/
1111

12+
use CodeIgniter\Boot;
13+
use Config\Paths;
14+
1215
/*
1316
*---------------------------------------------------------------
1417
* Sample file for Preloading
@@ -69,10 +72,10 @@ public function __construct()
6972

7073
private function loadAutoloader(): void
7174
{
72-
$paths = new Config\Paths();
75+
$paths = new Paths();
7376
require rtrim($paths->systemDirectory, '\\/ ') . DIRECTORY_SEPARATOR . 'Boot.php';
7477

75-
CodeIgniter\Boot::preload($paths);
78+
Boot::preload($paths);
7679
}
7780

7881
/**

0 commit comments

Comments
 (0)