Skip to content

Commit fe4e836

Browse files
author
Eugene Min
committed
Release 0.3.6
1 parent e8853c3 commit fe4e836

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1+
## 0.3.6
2+
3+
##### Added
4+
- Blade Helper widget (helper for using variables feature)
5+
- ListRenderer interface for showing records lists
6+
- Search API namespaces support
7+
- English localization
8+
- Variables seeders
9+
- HasState and System model traits
10+
- Modal delete confirmation
11+
- Modules suggestions from packagist.org
12+
- Variables clipboard copy
13+
- `@trans` blade template with `trans()` javascript helper for translating javascript values
14+
- Modules dependency system
15+
- Menu API push method
16+
- Presets API
17+
- `defines.php` file for constants
18+
- Default laravel migrations (users, password_resets)
19+
- Upload presets file types
20+
- Upload files extensions validation
21+
- `--model` and `--request` options for module generator
22+
23+
##### Updated
24+
- Upload form visuals
25+
- Installer now run `composer dump-autoload` command
26+
- Menu reordered
27+
- Run `composer dump-autoload` after installing module
28+
- Installer optimizations, now mconsole install/updates faster
29+
- Filters in modals
30+
31+
##### Fixed
32+
- Uploads API POST without files error
33+
- Upload form json errors
34+
- HasRedirects trait with session errors
35+
- Modules uninstall migrations errors
36+
- UserInterface, Pages tests errors
37+
- Fill `created_at` and `updated_at` fields when creating root user with Installer
38+
- Clear cache link in settings
39+
- MconsoleMiddleware routes exceptions
40+
41+
##### Removed
42+
- Travis CI builds
43+
- HasFilters, HasPaginator and HasQuery traits
44+
145
## 0.3.5
246

347
##### Added

src/Milax/Mconsole/Providers/MconsoleServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function boot()
131131

132132
// Run one time setup
133133
app('API')->modules->scan();
134-
app('API')->info->setAppVersion('0.3.5');
134+
app('API')->info->setAppVersion('0.3.6');
135135

136136
if (env('APP_ENV') == 'local') {
137137
app('API')->translations->load();

0 commit comments

Comments
 (0)