commit fa4ed16c8fe7e193e72d2691747d7182970cbdde Author: Sergei Nedelko Date: Sun May 4 00:59:07 2014 +1100 Upgrading 1.2.1 to 1.3.0 diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 60f09ab..13d2652 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +v1.3.0 - 05/03/2014 + - Rewrited the Main Menu script (Improved performance, fixed mobile Chrome issues, fixed some small bugs) + - Added a few new Main Menu features (dropdown close delay, active menu item detection) + - Changed the Main Navbar script + - Removed iScroll plugin (slimScroll used instead) + - Fixed a FileInput plugin bug + - Added resizeSteps() method to the Wizard plugin + - Fixed IE8 Javascript errors + - Fixed a few additional bugs + v1.2.1 - 04/14/2014 - Fixed Grunt installation instruction. No need to update files diff --git a/Gruntfile.js b/Gruntfile.js index dda1f4c..94ff519 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -35,7 +35,11 @@ module.exports = function(grunt) { // Default task. grunt.registerTask('default', ['coffee:compile', 'concat:build', 'uglify:minify', 'less:build', 'cssmin:minify']); - grunt.registerTask('js', ['coffee:compile', 'concat:build', 'uglify:minify']); - grunt.registerTask('build-project-sass', ['coffee:compile', 'concat:build', 'uglify:minify', 'sass:build', 'cssmin:minify']); + + grunt.registerTask('compile-less', ['less:build', 'cssmin:minify']); + + grunt.registerTask('compile-sass', ['sass:build', 'cssmin:minify']); + + grunt.registerTask('compile-js', ['coffee:compile', 'concat:build', 'uglify:minify']); }; diff --git a/help/index.html b/help/index.html index 1b54a02..2049ce1 100644 --- a/help/index.html +++ b/help/index.html @@ -1,7 +1,7 @@ - PixelAdmin v1.2.1 Documentation + PixelAdmin v1.3.0 Documentation @@ -27,7 +27,7 @@
- v1.2.1   |   DOCUMENTATION + v1.3.0   |   DOCUMENTATION     by Sergei Nedelko
@@ -470,16 +470,16 @@
Assets compilation

After customization you need to compile your LESS/SCSS and JavaScript sources by running the following commands from command line in the PixelAdmin directory:
- - grunt less + - grunt compile-less

SCSS cources compilation:
- - grunt sass + - grunt compile-sass

JavaScript cources compilation:
- - grunt js + - grunt compile-js

@@ -528,6 +528,17 @@

Changelog

+
v1.3.0 - 05/03/2014
+
v1.2.1 - 04/14/2014