Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
## v2.1.6
- fix(cards): smooth collapse card - thanks @MartijnBastiaansen #378
- fix(header): migrate `.divider` to `.dropdown-divider` - thanks @vanam #406
- chore: build/change-version cleanup
- docs(readme): fix broken hyperlinks to 6 versions
- update: `@coreui/coreui` to `2.0.19`
- fix: `transparent` is not a valid rgb color ie issue
- fix(card): rtl for card-header icon margins
- fix(sidebar): rtl for sidebar-minimizer icon
- fix(breadcrumb): rtl padding
- fix(card): rtl float for card-header-actions
- fix(sidebar): rtl ps scrollbar issue temp fix/refactor
- feat(sidebar) badge margins for nav-dropdown-toggle
- fix(scss): add missing light-blue color variable
- update: `chart.js` to `2.7.3`
- update: `core-js` to `2.5.7`
- update: `autoprefixer` to `9.2.0`
- update: `browser-sync` to `2.26.3`
- update: `eslint` to `5.7.0`
- update: `eslint-plugin-compat` to `2.6.2`
- update: `js-beautify` to `1.8.7`
- update: `node-sass` to `4.9.4`

## v2.1.5
- update: `@coreui/coreui` to [`2.0.12`](https://github.com/coreui/coreui/releases) fixes some IE11 and `rtl` issues
- update: `@coreui/coreui` to `2.0.12`
- fix(layout) aside IE issue with .main margin on mobile
- fix(sidebar) rtl IE issue with sidebar-minimized captions
- fix(sidebar) rtl ps scrollbar issue temp fix
- update: `@babel/cli` to `7.1.2`
- update: `@babel/core` to `7.1.2`
- update: `eslint to `5.6.1`
Expand Down Expand Up @@ -46,7 +72,6 @@
- Update: `stylelint-order` to `^1.0.0`
- Update: `stylelint-scss` to `^3.3.0`


## v2.1.1
- Update: @coreui/coreui to 2.0.3
- Update: @babel/cli to 7.0.0-beta.53
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Curious why I decided to create CoreUI? Please read this article: [Jack of all t

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.

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

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!

Expand Down
9 changes: 5 additions & 4 deletions build/change-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ function walkAsync(directory, excludedDirectories, fileCallback, errback) {
}
if (stats.isSymbolicLink()) {
return
}
else if (stats.isDirectory()) {
} else if (stats.isDirectory()) {
process.nextTick(walkAsync, filepath, excludedDirectories, fileCallback, errback)
}
else if (stats.isFile()) {
} else if (stats.isFile()) {
process.nextTick(fileCallback, filepath)
}
})
Expand Down Expand Up @@ -85,7 +83,10 @@ function main(args) {
const newVersion = args[1]
const EXCLUDED_DIRS = new Set([
'.git',
'.idea',
'dist',
'node_modules',
'pug',
'vendor'
])
const INCLUDED_EXTENSIONS = new Set([
Expand Down
Loading