File tree Expand file tree Collapse file tree 7 files changed +12
-8
lines changed Expand file tree Collapse file tree 7 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 1.4.0] - 2024-08-12
6+
57### Added
68
79- Timezone argument for GraphQL FormattableDate types
240242
241243- Initial Beta Release
242244
243- [ Unreleased ] : https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...HEAD
245+ [ Unreleased ] : https://github.com/ExpressionEngine/Coilpack/compare/1.4.0...HEAD
246+
247+ [ 1.4.0 ] : https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...1.4.0
244248
245249[ 1.3.2 ] : https://github.com/ExpressionEngine/Coilpack/compare/1.3.1...1.3.2
246250
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ protected function setupTemplateLibrary()
298298 {
299299 ee ()->load ->library ('template ' );
300300 ee ()->remove ('TMPL ' );
301- ee ()->set ('TMPL ' , new \Expressionengine \Coilpack \View \TemplateStub () );
301+ ee ()->set ('TMPL ' , new \Expressionengine \Coilpack \View \TemplateStub );
302302 ee ()->TMPL ->log_item ('Using Coilpack Template Library ' );
303303
304304 ee ()->load ->library ('api ' );
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ protected function runCli($request)
100100 ee ()->load ->library ('core ' );
101101 ee ()->core ->bootstrap ();
102102
103- $ cli = new \ExpressionEngine \Cli \Cli () ;
103+ $ cli = new \ExpressionEngine \Cli \Cli ;
104104
105105 return $ cli ;
106106 }
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ function ($field) {
161161 $ this ->getCustomFields ()
162162 );
163163
164- $ layout = $ layout ?: new DefaultLayout () ;
164+ $ layout = $ layout ?: new DefaultLayout ;
165165
166166 return $ layout ->transform ($ fields );
167167 }
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ public function getLayout()
5454 */
5555 public function transform (array $ fields )
5656 {
57- $ display = new LayoutDisplay () ;
57+ $ display = new LayoutDisplay ;
5858
5959 // add the tabs they wanted
6060 foreach ($ this ->layout as $ section ) {
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ protected function readPath()
4242 if (is_dir ($ path )) {
4343 $ files = [];
4444 $ directory = ee ('Model ' )->get ('UploadDestination ' )->fields ('id ' )->filter ('server_path ' , $ this ->path )->first ();
45- $ mime = new \ExpressionEngine \Library \Mime \MimeType () ;
45+ $ mime = new \ExpressionEngine \Library \Mime \MimeType ;
4646 $ exclude = ['index.html ' ];
4747
4848 if ($ dh = opendir ($ path )) {
Original file line number Diff line number Diff line change 7777 is_dir (SYSPATH .'ee/installer/ ' ) &&
7878 (! defined ('INSTALL_MODE ' ) or INSTALL_MODE != false )
7979) {
80- $ core = new Core \Installer () ;
80+ $ core = new Core \Installer ;
8181} else {
82- $ core = new Core \ExpressionEngine () ;
82+ $ core = new Core \ExpressionEngine ;
8383}
8484
8585/*
You can’t perform that action at this time.
0 commit comments