Skip to content
This repository was archived by the owner on Dec 31, 2020. It is now read-only.

Commit e2c5373

Browse files
author
Sami Viitanen
committed
to 0.4.1
1 parent 169565b commit e2c5373

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@ Official releases of this add-on are available at Vaadin Directory. For Maven in
6060

6161
## Release notes
6262

63-
### Version 0.4.1 (TBD)
63+
### Version 0.4.1 (2017-06-21)
6464
- Add method to set style name for item wrapper
6565
- Alternative paper styling from Masonry add-on
66+
- gridstack-initializing and gridstack-ready stylenames added to allow advanced theming
6667

6768
### Version 0.4.0 (2017-03-14)
6869
- Ready event has now easy way to verify it's called first time for that GridStackLayout

gridstack-addon/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.vaadin.alump.gridstack</groupId>
66
<artifactId>gridstack-addon</artifactId>
77
<packaging>bundle</packaging>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<name>GridStack Add-on</name>
1010

1111
<properties>

gridstack-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.vaadin.alump.gridstack</groupId>
66
<artifactId>gridstack-demo</artifactId>
77
<packaging>war</packaging>
8-
<version>0.4.1-SNAPSHOT</version>
8+
<version>0.4.1</version>
99
<name>GridStack Add-on Demo</name>
1010

1111
<properties>

gridstack-demo/src/main/java/org/vaadin/alump/gridstack/demo/DemoUI.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
package org.vaadin.alump.gridstack.demo;
22

3-
import com.vaadin.annotations.Push;
3+
import com.vaadin.annotations.*;
44
import com.vaadin.navigator.Navigator;
55
import com.vaadin.server.*;
66
import com.vaadin.ui.*;
77

88
import javax.servlet.annotation.WebServlet;
99

10-
import com.vaadin.annotations.Theme;
11-
import com.vaadin.annotations.Title;
12-
import com.vaadin.annotations.VaadinServletConfiguration;
13-
1410
@Theme("demo")
1511
@Title("GridStack Add-on Demo")
1612
@SuppressWarnings("serial")
@@ -33,7 +29,7 @@ protected void init(VaadinRequest request) {
3329
navigator.addView(MenuView.VIEW_NAME, MenuView.class);
3430
navigator.addView(TestView.VIEW_NAME, TestView.class);
3531
navigator.addView(SplitView.VIEW_NAME, SplitView.class);
36-
navigator.addView(SimpleView.VIEW_NAME, new SimpleView());
32+
navigator.addView(SimpleView.VIEW_NAME, SimpleView.class);
3733
}
3834

3935
}

0 commit comments

Comments
 (0)