Skip to content

Commit 6933808

Browse files
authored
Merge pull request #435 from coreui/dev-vnext
v2.1.6
2 parents c0d3887 + 4a7530c commit 6933808

Some content is hidden

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

67 files changed

+561
-420
lines changed

CHANGELOG.md

+27-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
1+
## v2.1.6
2+
- fix(cards): smooth collapse card - thanks @MartijnBastiaansen #378
3+
- fix(header): migrate `.divider` to `.dropdown-divider` - thanks @vanam #406
4+
- chore: build/change-version cleanup
5+
- docs(readme): fix broken hyperlinks to 6 versions
6+
- update: `@coreui/coreui` to `2.0.19`
7+
- fix: `transparent` is not a valid rgb color ie issue
8+
- fix(card): rtl for card-header icon margins
9+
- fix(sidebar): rtl for sidebar-minimizer icon
10+
- fix(breadcrumb): rtl padding
11+
- fix(card): rtl float for card-header-actions
12+
- fix(sidebar): rtl ps scrollbar issue temp fix/refactor
13+
- feat(sidebar) badge margins for nav-dropdown-toggle
14+
- fix(scss): add missing light-blue color variable
15+
- update: `chart.js` to `2.7.3`
16+
- update: `core-js` to `2.5.7`
17+
- update: `autoprefixer` to `9.2.0`
18+
- update: `browser-sync` to `2.26.3`
19+
- update: `eslint` to `5.7.0`
20+
- update: `eslint-plugin-compat` to `2.6.2`
21+
- update: `js-beautify` to `1.8.7`
22+
- update: `node-sass` to `4.9.4`
23+
124
## v2.1.5
2-
- update: `@coreui/coreui` to [`2.0.12`](https://github.com/coreui/coreui/releases) fixes some IE11 and `rtl` issues
25+
- update: `@coreui/coreui` to `2.0.12`
26+
- fix(layout) aside IE issue with .main margin on mobile
27+
- fix(sidebar) rtl IE issue with sidebar-minimized captions
28+
- fix(sidebar) rtl ps scrollbar issue temp fix
329
- update: `@babel/cli` to `7.1.2`
430
- update: `@babel/core` to `7.1.2`
531
- update: `eslint to `5.6.1`
@@ -46,7 +72,6 @@
4672
- Update: `stylelint-order` to `^1.0.0`
4773
- Update: `stylelint-scss` to `^3.3.0`
4874

49-
5075
## v2.1.1
5176
- Update: @coreui/coreui to 2.0.3
5277
- Update: @babel/cli to 7.0.0-beta.53

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Curious why I decided to create CoreUI? Please read this article: [Jack of all t
1010

1111
CoreUI is an Open Source Bootstrap Admin Template. But CoreUI is not just another Admin Template. It goes way beyond hitherto admin templates thanks to transparent code and file structure. And if that's not enough, let’s just add that CoreUI consists bunch of unique features and over 1000 high quality icons.
1212

13-
CoreUI is based on Bootstrap 4 and offers 6 versions: [HTML5 AJAX](https://github.com/coreui/coreui-free-bootstrap-admin-template-ajax), [HTML5](https://github.com/coreui/free-angular-admin-template), [Angular 2+](https://github.com/coreui/free-angular-admin-template), [React.js](https://github.com/coreui/free-react-admin-template) & [Vue.js](https://github.com/coreui/free-vue-admin-template), [.NET Core 2](https://github.com/coreui/free-dotnet-admin-template).
13+
CoreUI is based on Bootstrap 4 and offers 6 versions: [HTML5 AJAX](https://github.com/coreui/coreui-free-bootstrap-admin-template-ajax), [HTML5](https://github.com/coreui/coreui-free-angular-admin-template), [Angular 2+](https://github.com/coreui/coreui-free-angular-admin-template), [React.js](https://github.com/coreui/coreui-free-react-admin-template) & [Vue.js](https://github.com/coreui/coreui-free-vue-admin-template), [.NET Core 2](https://github.com/mrholek/CoreUI-NET).
1414

1515
CoreUI is meant to be the UX game changer. Pure & transparent code is devoid of redundant components, so the app is light enough to offer ultimate user experience. This means mobile devices also, where the navigation is just as easy and intuitive as on a desktop or laptop. The CoreUI Layout API lets you customize your project for almost any device – be it Mobile, Web or WebApp – CoreUI covers them all!
1616

build/change-version.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,9 @@ function walkAsync(directory, excludedDirectories, fileCallback, errback) {
4141
}
4242
if (stats.isSymbolicLink()) {
4343
return
44-
}
45-
else if (stats.isDirectory()) {
44+
} else if (stats.isDirectory()) {
4645
process.nextTick(walkAsync, filepath, excludedDirectories, fileCallback, errback)
47-
}
48-
else if (stats.isFile()) {
46+
} else if (stats.isFile()) {
4947
process.nextTick(fileCallback, filepath)
5048
}
5149
})
@@ -85,7 +83,10 @@ function main(args) {
8583
const newVersion = args[1]
8684
const EXCLUDED_DIRS = new Set([
8785
'.git',
86+
'.idea',
87+
'dist',
8888
'node_modules',
89+
'pug',
8990
'vendor'
9091
])
9192
const INCLUDED_EXTENSIONS = new Set([

0 commit comments

Comments
 (0)