Updated Release notes
Added new version 1.5.2
Change-Id: Iad6b717fcae8840a610b3dc5572d53bec2d9b121
Signed-off-by: Ralph Soika <ralph.soika@imixs.com>
diff --git a/index.php b/index.php
index 9820ae1..7c36545 100755
--- a/index.php
+++ b/index.php
@@ -116,16 +116,20 @@
<div id="rightcolumn">
-<div>
-<h3>Current Status</h3>
-<h4>April 18, 2018</h4>
- <b>BPM modeling for Eclipse Oxygen</b>
+ <div>
+ <h3>Current Status</h3>
+ <h4>June 2020</h4>
+ <b>BPMN Modeling for Eclipse 2020-06</b>
<p>
- Version 1.4.3 for Eclipse Oxygen is now available
- <a href="http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.3/">here</a>.
- See the <a href="whatsnew/whatsnew-1.4.3.php">New & Noteworthy</a> page for what's new.
+ Version 1.5.2 for Eclipse 2020-06 is now available
+ <a href="http://download.eclipse.org/bpmn2-modeler/updates/2020-06/1.5.2/">here</a>.
+ Find out what's new in the <a href="whatsnew/whatsnew-1.5.2.php">Relase Notes</a>.
+ See alsos all updates in <a href="whatsnew/whatsnew-1.5.2.php">New & Noteworthy</a>
+
</p>
- </div>
+ </div>
+
+
</div>
EOHTML;
diff --git a/whatsnew/whatsnew-1.5.2.php b/whatsnew/whatsnew-1.5.2.php
new file mode 100644
index 0000000..1021038
--- /dev/null
+++ b/whatsnew/whatsnew-1.5.2.php
@@ -0,0 +1,47 @@
+<?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop'
+/*******************************************************************************
+ * Copyright (c) 2018
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *
+ *******************************************************************************/
+
+ $pageTitle = "BPMN2 Modeler - New & Noteworthy";
+
+ $html = <<<EOHTML
+<div id="midcolumn">
+ <h2>$pageTitle</h2>
+ <h4>Version 1.5.2 Eclipse 2020-06 Release (June, 2020)</h4>
+ <p>
+ Here is a list of the bugzilla reports that have been addressed by this release:
+ </p>
+ <ul>
+ <li>
+ <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=550406">Bug 550406</a> Support for BPMN Gateways with MIXED type
+ </li>
+ <li>
+ <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=563833">Bug 563833</a> Updated bundle-version for org.eclipse.graphiti (version 0.17.0)
+ </li>
+ <li>
+ <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=563644">Bug 563644</a> Updated bundle-version for the tycho plugin (version 1.1.0)
+ </li>
+ <li>
+ <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=563298">Bug 563298</a> Fixed ErrorDialog
+ </li>
+ <li>
+ <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=563236">Bug 563236</a> Fixed IPluginDescriptor from core XMLConfigElement
+ </li>
+
+
+ </ul>
+
+</div>
+EOHTML;
+
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>