Skip to content

Commit

Permalink
Version advance, release notes update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Motornyi authored Jun 4, 2018
1 parent 0ffcd15 commit e539ba5
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,8 @@ nb-configuration.xml
.settings/

target/
context-menu-demo/src/main/webapp/VAADIN/widgetsets/
context-menu-demo/src/main/webapp/VAADIN/widgetsets/

#IDEA
.idea/
*.iml
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,24 @@ To see the demo, navigate to http://localhost:8080/

## Release notes

### Version 0.7 - Latest version for Vaadin Framework 7
### Version 2.1.0 - Latest version for Vaadin Framework 8
- Bugfixes
- HTML tooltips support

### Version 0.7.5 - Latest version for Vaadin Framework 7
- Basic support for component context menu everywhere
- Basic code examples
- Use ContextClickEvent API introduced in Vaadin 7.6

### Version 2.0 - Latest version for Vaadin Framework 8
### Version 2.0.0 - Latest version for Vaadin Framework 8
- Support for Vaadin Framework 8
- Renamed the groupId to `com.vaadin` from `com.vaadin.addon
- Renamed the packaging to `com.vaadin.contextmenu` from `com.vaadin.addon.contextmenu`
- Renamed widgetset to `com.vaadin.contextmenu.WidgetSet` from `com.vaadin.addon.contextmenu.WidgetSet`

### Future plans
- Unify ContextMenu with MenuBar API
- Integrate into framework
- Support downloads and window opening from the menu items

## Issue tracking

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu-root</artifactId>
<packaging>pom</packaging>
<version>2.0-SNAPSHOT</version>
<version>2.1-SNAPSHOT</version>
<name>Vaadin ContextMenu Root Project</name>

<modules>
Expand Down
4 changes: 2 additions & 2 deletions vaadin-context-menu-addon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu</artifactId>
<packaging>jar</packaging>
<version>2.0-SNAPSHOT</version>
<version>2.1-SNAPSHOT</version>
<name>Vaadin ContextMenu</name>

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vaadin.version>8.0-SNAPSHOT</vaadin.version>
<vaadin.version>8.5-SNAPSHOT</vaadin.version>
<vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version>

<!-- ZIP Manifest fields -->
Expand Down
4 changes: 2 additions & 2 deletions vaadin-context-menu-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu-demo</artifactId>
<packaging>war</packaging>
<version>2.0-SNAPSHOT</version>
<version>2.1-SNAPSHOT</version>
<name>Vaadin ContextMenu Demo</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vaadin.version>8.0-SNAPSHOT</vaadin.version>
<vaadin.version>8.5-SNAPSHOT</vaadin.version>
<vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version>
<jetty.plugin.version>9.3.9.v20160517</jetty.plugin.version>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions vaadin-context-menu-vaadin7-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-context-menu-vaadin7-test</artifactId>
<packaging>war</packaging>
<version>2.0-SNAPSHOT</version>
<version>2.1-SNAPSHOT</version>
<name>Vaadin ContextMenu Test for Vaadin 7 component compatibility</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<vaadin.version>8.0-SNAPSHOT</vaadin.version>
<vaadin.version>8.5-SNAPSHOT</vaadin.version>
<vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version>
</properties>

Expand Down

0 comments on commit e539ba5

Please sign in to comment.