Skip to content

Commit c879031

Browse files
authored
Merge pull request #985 from adumesny/release/0.5.0
prep for 0.5.0 release
2 parents 01e0394 + 77b6595 commit c879031

File tree

6 files changed

+23
-11
lines changed

6 files changed

+23
-11
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Join gridstack.js on Slack: https://gridstackjs.troolee.com
1616
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
1717
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
1818

19-
- [gridstack.js News](#gridstackjs-news)
19+
<!--- [gridstack.js News](#gridstackjs-news) -->
2020
- [Demo and examples](#demo-and-examples)
2121
- [Usage](#usage)
2222
- [Requirements](#requirements)
@@ -36,15 +36,15 @@ Join gridstack.js on Slack: https://gridstackjs.troolee.com
3636
- [Changes](#changes)
3737
- [The Team](#the-team)
3838

39-
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
39+
<!-- END doctoc generated TOC please keep comment here to allow auto update
4040
4141
4242
gridstack.js News
4343
=====
4444
4545
Version 1.0 is coming! Check out the blog post here for more information:
4646
[https://dylandreams.com/2017/04/26/gridstack-10-coming-soon/](https://dylandreams.com/2017/04/26/gridstack-10-coming-soon/) and [subscribe to the blog](https://dylandreams.com) for more gridstack news and tutorials.
47-
47+
-->
4848

4949
Demo and examples
5050
====
@@ -78,9 +78,9 @@ Usage
7878
* Using CDN:
7979

8080
```html
81-
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/gridstack.js/0.4.0/gridstack.min.css" />
82-
<script type="text/javascript" src='//cdnjs.cloudflare.com/ajax/libs/gridstack.js/0.4.0/gridstack.min.js'></script>
83-
<script type="text/javascript" src='//cdnjs.cloudflare.com/ajax/libs/gridstack.js/0.4.0/gridstack.jQueryUI.min.js'></script>
81+
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/gridstack.js/0.5.0/gridstack.min.css" />
82+
<script type="text/javascript" src='//cdnjs.cloudflare.com/ajax/libs/gridstack.js/0.5.0/gridstack.min.js'></script>
83+
<script type="text/javascript" src='//cdnjs.cloudflare.com/ajax/libs/gridstack.js/0.5.0/gridstack.jQueryUI.min.js'></script>
8484
```
8585

8686
* Using bower:
@@ -97,7 +97,7 @@ $ bower install gridstack
9797
$ npm install gridstack
9898
```
9999

100-
You can download files from `dist` directory as well.
100+
You can download source and build and use `dist` directory as well for latest non published code.
101101

102102
## Basic usage
103103

@@ -309,11 +309,13 @@ for i in range(N):
309309
There are at least two more issues with gridstack in IE8 with jQueryUI resizable (it seems it doesn't work) and
310310
droppable. If you have any suggestions about support of IE8 you are welcome here: https://github.com/gridstack/gridstack.js/issues/76
311311

312+
<!-- fixed in 0.5.0 with #643 ?
312313
## Use with require.js
313314
314315
If you're using require.js and a single file jQueryUI please check out this
315316
[Stackoverflow question](http://stackoverflow.com/questions/35582945/redundant-dependencies-with-requirejs) to get it
316317
working properly.
318+
-->
317319

318320
Changes
319321
=====

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": "1.0.0-dev",
3+
"version": "0.5.0",
44
"homepage": "https://github.com/gridstack/gridstack.js",
55
"authors": [
66
"Pavel Reznikov <pashka.reznikov@gmail.com>",

doc/CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Change log
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

88
- [v1.0.0 (development)](#v100-development)
9+
- [v0.5.0 (2019-03-29)](#v050-2019-03-29)
910
- [v0.4.0 (2018-05-11)](#v040-2018-05-11)
1011
- [v0.3.0 (2017-04-21)](#v030-2017-04-21)
1112
- [v0.2.6 (2016-08-17)](#v026-2016-08-17)
@@ -21,10 +22,19 @@ Change log
2122

2223
## v1.0.0 (development)
2324

25+
TBD
26+
27+
## v0.5.0 (2019-03-29)
28+
2429
- emit `dropped` event when a widget is dropped from one grid into another ([#823](https://github.com/gridstack/gridstack.js/issues/823)).
2530
- don't throw error if no bounding scroll element is found ([#891](https://github.com/gridstack/gridstack.js/issues/891)).
2631
- don't push locked widgets even if they are at the top of the grid ([#882](https://github.com/gridstack/gridstack.js/issues/882)).
32+
- RequireJS and CommonJS now export on the `exports` module fix ([#643](https://github.com/gridstack/gridstack.js/issues/643)).
33+
- automatically scroll page when widget is moving beyond viewport ([#827](https://github.com/gridstack/gridstack.js/issues/827)).
2734
- removed lodash dependencies ([#693](https://github.com/gridstack/gridstack.js/issues/693)).
35+
- don't overwrite globals jQuery when in a modular environment ([#974](https://github.com/gridstack/gridstack.js/pull/974)).
36+
- removed z-index from `.grid-stack-item-content` causing child modal dialog clipping ([#984](https://github.com/gridstack/gridstack.js/pull/984)).
37+
- convert project to use yarn ([#983](https://github.com/gridstack/gridstack.js/pull/983)).
2838

2939
## v0.4.0 (2018-05-11)
3040

package.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": "1.0.0-dev",
3+
"version": "0.5.0",
44
"description": "gridstack.js is a jQuery plugin for widget layout",
55
"main": "dist/gridstack.js",
66
"repository": {

src/gridstack.jQueryUI.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.js 1.0.0-dev
2+
* gridstack.js 0.5.0
33
* http://troolee.github.io/gridstack.js/
44
* (c) 2014-2017 Pavel Reznikov, Dylan Weiss
55
* gridstack.js may be freely distributed under the MIT license.

src/gridstack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.js 1.0.0-dev
2+
* gridstack.js 0.5.0
33
* http://troolee.github.io/gridstack.js/
44
* (c) 2014-2018 Pavel Reznikov, Dylan Weiss
55
* gridstack.js may be freely distributed under the MIT license.

0 commit comments

Comments
 (0)