update for 1.4.3 (Oxygen)

Change-Id: Id02c8e310d2437410747b872f02c51f2e86913e4
Signed-off-by: Paul Leacu <pleacu@redhat.com>
diff --git a/downloads.php b/downloads.php
index 2da9e3a..a83f611 100644
--- a/downloads.php
+++ b/downloads.php
@@ -21,6 +21,7 @@
 <p><b>Nightly Build</b><br />		
 <p><a href="http://download.eclipse.org/bpmn2-modeler/updates/nightly/oxygen/">http://download.eclipse.org/bpmn2-modeler/updates/nightly/oxygen/</a>
 <p><b>Update Sites</b><br />		
+<p><b>1.4.3:</b> <a href="http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.3">http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.3</a>
 <p><b>1.4.2:</b> <a href="http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.2">http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.2</a>
 <p><b>1.4.1:</b> <a href="http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.1">http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.1</a>
 <p><b>1.4.0:</b> <a href="http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.0">http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.0</a>
diff --git a/index.php b/index.php
index b36e17c..2fc3670 100755
--- a/index.php
+++ b/index.php
@@ -114,12 +114,12 @@
 
 <div>
 <h3>Current Status</h3>
-<h4>December 15, 2017</h4>
+<h4>April 18, 2018</h4>
 		<b>BPM modeling for Eclipse Oxygen</b>
 		<p>
-		Version 1.4.2 for Eclipse Oxygen is now available
-		<a href="http://download.eclipse.org/bpmn2-modeler/updates/oxygen/1.4.2/">here</a>.
-		See the <a href="whatsnew/whatsnew-1.4.2.php">New &amp; Noteworthy</a> page for what's new.
+		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 &amp; Noteworthy</a> page for what's new.
 		</p>
 		</div>
 </div>
diff --git a/whatsnew/whatsnew-1.4.3.php b/whatsnew/whatsnew-1.4.3.php
new file mode 100644
index 0000000..a760313
--- /dev/null
+++ b/whatsnew/whatsnew-1.4.3.php
@@ -0,0 +1,33 @@
+<?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 &amp; Noteworthy";
+
+	$html  = <<<EOHTML
+<div id="midcolumn">
+	<h2>$pageTitle</h2>
+	<h4>Version 1.4.3 Eclipse Oxygen Release (April 18, 2018)</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=533540">Bug 533540</a> Wide subprocesses are changed to width =1000 when opening the diagram
+		</li>
+	</ul>
+			
+</div>
+EOHTML;
+
+	# Generate the web page
+	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>