Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ed5fb7b

Browse files
authored
Merge pull request gridstack#650 from radiolips/feature/start-10
Update copyright, fix dev dependency, start 1.0.0-dev.
2 parents 8ea752d + b60ad0d commit ed5fb7b

12 files changed

+31
-52
lines changed

Gruntfile.js

Lines changed: 2 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ module.exports = function(grunt) {
44
grunt.loadNpmTasks('grunt-contrib-cssmin');
55
grunt.loadNpmTasks('grunt-contrib-copy');
66
grunt.loadNpmTasks('grunt-contrib-uglify');
7-
grunt.loadNpmTasks('grunt-doctoc');
87
grunt.loadNpmTasks('grunt-contrib-jshint');
98
grunt.loadNpmTasks('grunt-jscs');
109
grunt.loadNpmTasks('grunt-contrib-watch');
@@ -58,27 +57,6 @@ module.exports = function(grunt) {
5857
}
5958
},
6059

61-
doctoc: {
62-
options: {
63-
removeAd: false
64-
},
65-
readme: {
66-
options: {
67-
target: './README.md'
68-
}
69-
},
70-
doc: {
71-
options: {
72-
target: './doc/README.md'
73-
}
74-
},
75-
faq: {
76-
options: {
77-
target: './doc/FAQ.md'
78-
}
79-
},
80-
},
81-
8260
jshint: {
8361
all: ['src/*.js']
8462
},
@@ -99,13 +77,7 @@ module.exports = function(grunt) {
9977
tasks: ['sass', 'cssmin'],
10078
options: {
10179
},
102-
},
103-
docs: {
104-
files: ['README.md', 'doc/README.md', 'doc/FAQ.md'],
105-
tasks: ['doctoc'],
106-
options: {
107-
},
108-
},
80+
}
10981
},
11082

11183
protractor: {
@@ -134,6 +106,6 @@ module.exports = function(grunt) {
134106
}
135107
});
136108

137-
grunt.registerTask('default', ['sass', 'cssmin', 'jshint', 'jscs', 'copy', 'uglify', 'doctoc']);
109+
grunt.registerTask('default', ['sass', 'cssmin', 'jshint', 'jscs', 'copy', 'uglify']);
138110
grunt.registerTask('e2e-test', ['connect', 'protractor_webdriver', 'protractor']);
139111
};

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016 Pavel Reznikov, Dylan Weiss
3+
Copyright (c) 2014-2017 Pavel Reznikov, Dylan Weiss
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Join gridstack.js on Slack: https://gridstackjs.troolee.com
2626
- [Using gridstack.js with jQuery UI](#using-gridstackjs-with-jquery-ui)
2727
- [Install](#install)
2828
- [Basic usage](#basic-usage)
29+
- [gridstack.js News](#gridstackjs-news)
2930
- [Migrating to v0.3.0](#migrating-to-v030)
3031
- [Migrating to v0.2.5](#migrating-to-v025)
3132
- [API Documentation](#api-documentation)
@@ -140,6 +141,12 @@ $(function () {
140141
</script>
141142
```
142143

144+
## gridstack.js News
145+
146+
Version 1.0 is coming! Check out the blog post here for more information:
147+
[https://dylandreams.com/2017/04/26/gridstack-10-coming-soon/](https://dylandreams.com/2017/04/26/gridstack-10-coming-soon/)
148+
149+
143150
## Migrating to v0.3.0
144151

145152
As of v0.3.0, gridstack introduces a new plugin system. The drag'n'drop functionality has been modified to take advantage of this system. Because of this, and to avoid dependency on core code from jQuery UI, the plugin was functionality was moved to a separate file.
@@ -167,7 +174,7 @@ when they will be completely removed.
167174

168175
## API Documentation
169176

170-
Please check out `doc/README.md` for more information about gridstack.js API.
177+
Documentation can be found [here](https://github.com/troolee/gridstack.js/tree/develop/doc).
171178

172179
## Questions and Answers
173180

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "0.3.0",
3+
"version": "1.0.0-dev",
44
"homepage": "https://github.com/troolee/gridstack.js",
55
"authors": [
66
"Pavel Reznikov <[email protected]>"

dist/gridstack.all.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/gridstack.jQueryUI.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* gridstack.js 0.3.0
2+
* gridstack.js 1.0.0-dev
33
* http://troolee.github.io/gridstack.js/
4-
* (c) 2014-2016 Pavel Reznikov, Dylan Weiss
4+
* (c) 2014-2017 Pavel Reznikov, Dylan Weiss
55
* gridstack.js may be freely distributed under the MIT license.
66
* @preserve
77
*/

dist/gridstack.jQueryUI.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/gridstack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* gridstack.js 0.3.0
2+
* gridstack.js 1.0.0-dev
33
* http://troolee.github.io/gridstack.js/
4-
* (c) 2014-2016 Pavel Reznikov, Dylan Weiss
4+
* (c) 2014-2017 Pavel Reznikov, Dylan Weiss
55
* gridstack.js may be freely distributed under the MIT license.
66
* @preserve
77
*/

dist/gridstack.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "gridstack",
3-
"version": "0.3.0",
3+
"version": "1.0.0-dev",
44
"description": "gridstack.js is a jQuery plugin for widget layout",
55
"main": "dist/gridstack.js",
66
"repository": {
77
"type": "git",
88
"url": "git+https://github.com/troolee/gridstack.js.git"
99
},
1010
"scripts": {
11-
"build": "grunt",
11+
"build": "grunt ; doctoc ./README.md ; doctoc ./doc/README.md ; doctoc ./doc/FAQ.md",
1212
"test": "karma start karma.conf.js"
1313
},
1414
"keywords": [
@@ -19,6 +19,7 @@
1919
"jquery"
2020
],
2121
"author": "Pavel Reznikov <[email protected]>",
22+
"contributors": ["Dylan Weiss <[email protected]> (https://dylandreams.com)"],
2223
"license": "MIT",
2324
"bugs": {
2425
"url": "https://github.com/troolee/gridstack.js/issues"
@@ -41,7 +42,6 @@
4142
"grunt-contrib-jshint": "^1.0.0",
4243
"grunt-contrib-uglify": "^2.3.0",
4344
"grunt-contrib-watch": "^1.0.0",
44-
"grunt-doctoc": "https://github.com/nickyout/grunt-doctoc.git#master",
4545
"grunt-jscs": "^3.0.1",
4646
"grunt-protractor-runner": "^5.0.0",
4747
"grunt-protractor-webdriver": "^0.2.5",

src/gridstack.jQueryUI.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* gridstack.js 0.3.0
2+
* gridstack.js 1.0.0-dev
33
* http://troolee.github.io/gridstack.js/
4-
* (c) 2014-2016 Pavel Reznikov, Dylan Weiss
4+
* (c) 2014-2017 Pavel Reznikov, Dylan Weiss
55
* gridstack.js may be freely distributed under the MIT license.
66
* @preserve
77
*/

src/gridstack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* gridstack.js 0.3.0
2+
* gridstack.js 1.0.0-dev
33
* http://troolee.github.io/gridstack.js/
4-
* (c) 2014-2016 Pavel Reznikov, Dylan Weiss
4+
* (c) 2014-2017 Pavel Reznikov, Dylan Weiss
55
* gridstack.js may be freely distributed under the MIT license.
66
* @preserve
77
*/

0 commit comments

Comments
 (0)