Skip to content

Commit 1ea827f

Browse files
author
Alain Dumesny
committed
changes.md tweaks
1 parent 3449bde commit 1ea827f

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

doc/CHANGES.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ Change log
2424

2525
## v0.5.2-dev (upcoming changes)
2626

27-
- grid options `width` is now `column`, and `height` is now `maxRow`, and method `setGridWidth()` is now `setColumn()` which match what they are. Old names are still supported for now (with console warnings). Also various fixes for custom # of column and re-wrote entire doc section ([#1053](https://github.com/gridstack/gridstack.js/issues/1053)).
27+
- grid options `width` is now `column`, `height` now `maxRow`, and `setGridWidth()` now `setColumn()` to match what they are. Old names are still supported (console warnings). Various fixes for custom # of column and re-wrote entire doc section ([#1053](https://github.com/gridstack/gridstack.js/issues/1053)).
2828
- fix widgets not animating when animate: true is used. on every move, styles were recreated-fix should slightly improve gridstack.js speed ([#937](https://github.com/gridstack/gridstack.js/issues/937)).
2929
- fix moving widgets when having multiple grids. jquery-ui workaround ([#1043](https://github.com/gridstack/gridstack.js/issues/1043)).
3030
- switch to eslint ([#763](https://github.com/gridstack/gridstack.js/issues/763)).
31-
- null values to addWidget() exception fix ([#1042](https://github.com/gridstack/gridstack.js/issues/1042)).
31+
- fix null values `addWidget()` options ([#1042](https://github.com/gridstack/gridstack.js/issues/1042)).
3232

3333
## v0.5.2 (2019-11-13)
3434

35-
- undefined x,y position messes up grid ([#1017](https://github.com/gridstack/gridstack.js/issues/1017)).
35+
- undefined `x,y` position messes up grid ([#1017](https://github.com/gridstack/gridstack.js/issues/1017)).
3636
- changed code to 2 spaces.
3737
- fix minHeight during `onStartMoving()` ([#999](https://github.com/gridstack/gridstack.js/issues/999)).
3838
- TypeScript definition file now included - no need to include @types/gridstack, easier to update ([#1036](https://github.com/gridstack/gridstack.js/pull/1036)).
39-
- new addWidget(el, options) to pass object so you don't have to spell 10 params. ([#907](https://github.com/gridstack/gridstack.js/issues/907)).
39+
- new `addWidget(el, options)` to pass object so you don't have to spell 10 params. ([#907](https://github.com/gridstack/gridstack.js/issues/907)).
4040

4141
## v0.5.1 (2019-11-07)
4242

@@ -57,11 +57,11 @@ Change log
5757
## v0.4.0 (2018-05-11)
5858

5959
- widgets can have their own resize handles. Use `data-gs-resize-handles` element attribute to use. For example, `data-gs-resize-handles="e,w"` will make the particular widget only resize west and east. ([#494](https://github.com/gridstack/gridstack.js/issues/494)).
60-
- enable sidebar items to be duplicated properly. Pass `helper: 'clone'` in `draggable` options. ([#661](https://github.com/gridstack/gridstack.js/issues/661), ([#396](https://github.com/gridstack/gridstack.js/issues/396), ([#499](https://github.com/gridstack/gridstack.js/issues/499)).
60+
- enable sidebar items to be duplicated properly. Pass `helper: 'clone'` in `draggable` options. ([#661](https://github.com/gridstack/gridstack.js/issues/661), [#396](https://github.com/gridstack/gridstack.js/issues/396), [#499](https://github.com/gridstack/gridstack.js/issues/499)).
6161
- fix `staticGrid` grid option ([#743](https://github.com/gridstack/gridstack.js/issues/743))
6262
- preserve inline styles when moving/cloning items (thanks [@silverwind](https://github.com/silverwind))
6363
- fix bug causing heights not to get set ([#744](https://github.com/gridstack/gridstack.js/issues/744))
64-
- allow grid to have min-height, fixes ([#628](https://github.com/gridstack/gridstack.js/issues/628)) (thanks [@adumesny](https://github.com/adumesny))
64+
- allow grid to have min-height, fixes ([#628](https://github.com/gridstack/gridstack.js/issues/628)) thanks [@adumesny](https://github.com/adumesny)
6565
- widget x and y are now ints (thanks [@DonnchaC](https://github.com/donnchac))
6666
- allow all droppable options (thanks [@vigor-vlad](https://github.com/vigor-vlad))
6767
- properly track mouse position in `getCellFromPixel` (thanks [@aletorrado](https://github.com/aletorrado))
@@ -74,7 +74,7 @@ Change log
7474
- prevent extra checks for removing widget when dragging off grid.
7575
- trigger `added` when a widget is added via dropping from one grid to another.
7676
- trigger `removed` when a widget is removed via dropping from one grid to another.
77-
- trigger `removed` when a widget is removed via dropping on a removable zone ([#607](https://github.com/gridstack/gridstack.js/issues/607) and [#550])(https://github.com/gridstack/gridstack.js/issues/550)).
77+
- trigger `removed` when a widget is removed via dropping on a removable zone ([#607](https://github.com/gridstack/gridstack.js/issues/607) and [#550](https://github.com/gridstack/gridstack.js/issues/550)).
7878
- trigger custom event for `resizestop` called `gsresizestop` ([#577](https://github.com/gridstack/gridstack.js/issues/577) and [#398](https://github.com/gridstack/gridstack.js/issues/398)).
7979
- prevent dragging/resizing in `oneColumnMode` ([#593](https://github.com/gridstack/gridstack.js/issues/593)).
8080
- add `oneColumnModeClass` option to grid.
@@ -99,7 +99,7 @@ Change log
9999
- `cellHeight` and `verticalMargin` can now be string (e.g. '3em', '20px') (Thanks to @jlowcs).
100100
- add `maxWidth`/`maxHeight` methods.
101101
- add `enableMove`/`enableResize` methods.
102-
- fix window resize issue #331.
102+
- fix window resize issue [#331](https://github.com/gridstack/gridstack.js/issues/331)).
103103
- add options `disableDrag` and `disableResize`.
104104
- fix `batchUpdate`/`commit` (Thank to @radiolips)
105105
- remove dependency of FontAwesome
@@ -147,16 +147,16 @@ Change log
147147

148148
- fix grid initialization
149149
- add `cell_height`/`cell_width` API methods
150-
- fix boolean attributes (issue #31)
150+
- fix boolean attributes ([#31](https://github.com/gridstack/gridstack.js/issues/31))
151151

152152
## v0.2.1 (2014-12-09)
153153

154-
- add widgets locking (issue #19)
154+
- add widgets locking ([#19](https://github.com/gridstack/gridstack.js/issues/19))
155155
- add `will_it_fit` API method
156-
- fix auto-positioning (issue #20)
156+
- fix auto-positioning ([#20](https://github.com/gridstack/gridstack.js/issues/20))
157157
- add animation (thanks to @ishields)
158-
- fix `y` coordinate calculation when dragging (issue #18)
159-
- fix `remove_widget` (issue #16)
158+
- fix `y` coordinate calculation when dragging ([#18](https://github.com/gridstack/gridstack.js/issues/18))
159+
- fix `remove_widget` ([#16](https://github.com/gridstack/gridstack.js/issues/16))
160160
- minor fixes
161161

162162

0 commit comments

Comments
 (0)