diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b8ff036380e..d587164ec442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 0.6.1.7 - 2017-02-28 + +### Changed +- Rework: Take parameters in url to open a file +- Updated `pentaho-xul-swt` and `org.eclipse.rap.rwt` + +### Fixed +- Restore shortcut keys (may conflict with browser's shortcut keys) +- Restore cut/copy/paste of step/job entry +- Restore png image loading +- Restore Metrics drawing +- Restore welcome page + ## 0.6.1.6 - 2017-02-08 ### Added diff --git a/ui/build.xml b/ui/build.xml index fc4a91c10a09..96ad52c8aa5d 100644 --- a/ui/build.xml +++ b/ui/build.xml @@ -71,7 +71,7 @@ - + diff --git a/ui/src/org/pentaho/di/ui/core/dialog/Splash.java b/ui/src/org/pentaho/di/ui/core/dialog/Splash.java index ec6a886b6f22..f58fe37888f2 100644 --- a/ui/src/org/pentaho/di/ui/core/dialog/Splash.java +++ b/ui/src/org/pentaho/di/ui/core/dialog/Splash.java @@ -145,7 +145,7 @@ public void paintControl( PaintEvent e ) { } else { fullVersionText = fullVersionText + " " + buildVersion; } - fullVersionText += ", webSpoon (0.6.1.6)"; + fullVersionText += ", webSpoon (0.6.1.7)"; e.gc.setFont( verFont ); e.gc.drawText( fullVersionText, 290, 205, true );