Adding SWT N&N for M7

Change-Id: I6f14c6895c5c50c5a83772035fcccee4ddf99758
Signed-off-by: Arun Thondapu <arunkumar.thondapu@in.ibm.com>
diff --git a/platform/4.4/M7/index.html b/platform/4.4/M7/index.html
index 5d66951..4fef85d 100644
--- a/platform/4.4/M7/index.html
+++ b/platform/4.4/M7/index.html
@@ -103,6 +103,28 @@
       for your operating system can be found.
     </td>
   </tr>
+  <tr id="styledtext-bidi">
+    <td class="title">Set text direction for the <code>StyledText</code> widget on Windows</td>
+    <td class="content">
+      The <code>StyledText</code> widget now supports setting the text direction via the 
+      <code>setTextDirection(int)</code> API on the Windows platform. The <code>setTextDirection 
+      (int)</code> and <code>getTextDirection ()</code> APIs are also added to <code>TextLayout</code> 
+      (implemented only on Windows currently).
+    </td>
+  </tr>
+  <tr id="windows-taskbar-grouping">
+    <td class="title">SWT applications will not be grouped together in the Windows taskbar by default</td>
+    <td class="content">
+      SWT does not initialize the <b>AppUserModelID</b> (which is used by Windows for taskbar grouping) 
+      to "SWT" by default anymore. SWT applications which desire to be grouped together in the
+      Windows taskbar should set an appropriate application name before creating the
+      <code>Display</code> object as shown below:
+      <p>
+      <code>Display.setAppName("APP_NAME"); // APP_NAME will used as AppUserModelID</code><br>
+      <code>Display display = new Display ();</code>
+      </p> 
+    </td>
+  </tr>
 
   <tr>
     <td colspan="2" class="section" id="JDT">JDT</td>