Skip to content

Commit

Permalink
Bumped to v0.92.0
Browse files Browse the repository at this point in the history
Readme updated
Changelog updated
  • Loading branch information
Dogfalo committed Dec 13, 2014
1 parent df2eeda commit a41fbe0
Show file tree
Hide file tree
Showing 24 changed files with 16,966 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,11 @@ module.exports = function(grunt) {


// Clean
clean: {
build: {
src: [ 'dist/' ]
},
},
// clean: {
// build: {
// src: [ 'dist/' ]
// },
// },


// Jade
Expand Down Expand Up @@ -340,18 +340,18 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-clean');
// grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-jade');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-notify');
grunt.loadNpmTasks('grunt-contrib-connect');


// define the tasks
grunt.registerTask('default', ['copy', 'sass:expanded', 'sass:min', 'concat', 'uglify:dist', 'compress:main', 'compress:src', 'clean']);
grunt.registerTask('default', ['copy', 'sass:expanded', 'sass:min', 'concat', 'uglify:dist', 'compress:main', 'compress:src']);

grunt.registerTask('jade_compile', ['jade', 'notify:jade_compile']);
grunt.registerTask('js_compile', ['concat:dist', 'uglify:bin', 'notify:js_compile', 'clean']);
grunt.registerTask('js_compile', ['concat:dist', 'uglify:bin', 'notify:js_compile']);
grunt.registerTask('sass_compile', ['sass:gh', 'sass:bin', 'notify:sass_compile']);
grunt.registerTask('start_server', ['connect:server', 'notify:server']);

Expand Down
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
![alt tag](https://raw.github.com/dogfalo/materialize/master/images/materialize.gif)
===========
Materialize, a CSS Framework based on material design

### Current Version : v0.92.0

##Changelog

- v0.92.0
- Clicking icon in dropdown in navbar no longer closes dropdown immediately
- Multiple select inputs now work properly
- Mobile navbar no longer extends past screen width
- Parallax improved
- Modal restructured / can be opened programmatically
- Callbacks added to modals
- Added dist folder to repo


- v0.91
- bug fixes to forms
- added waves color classes
- toast thickened to look better on mobile
- many other bug fixes


- v0.9
- Touch interactions added
- tons more...
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Materialize",
"version": "0.91",
"version": "0.92",
"description": "A modern responsive front-end framework based on Material Design",
"keywords": [
"css",
Expand Down
12 changes: 12 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
Changelog

v0.92.0
- Clicking icon in dropdown in navbar no longer closes dropdown immediately
- Multiple select inputs now work properly
- Mobile navbar no longer extends past screen width
- Parallax improved
- Modal restructured / can be opened programmatically
- Callbacks added to modals
- Added dist folder to repo


v0.91
- bug fixes to forms
- added waves color classes
- toast thickened to look better on mobile
- many other bug fixes


v0.9
- Touch interactions added
- tons more...
Loading

0 comments on commit a41fbe0

Please sign in to comment.