Index: AE/installer2/setup_win/AEI_no_jre.iss
===================================================================
--- AE/installer2/setup_win/AEI_no_jre.iss	(revision 647)
+++ AE/installer2/setup_win/AEI_no_jre.iss	(revision 647)
@@ -0,0 +1,194 @@
+#define AppId "{{B67333BB-1CF9-4EFD-A40B-E25B5CB4C8A7}}"
+#define AppVersion "0.99"
+#define AppLongName "Anniversary Edition of Oni"
+#define AppShortName "AEInstaller"
+
+#define MinJavaVersion "1.6"
+#define JavaDownloadPage "http://www.java.com/en/download/manual.jsp#win"
+
+[Setup]
+AppId={#AppId}
+AppVersion={#AppVersion}
+AppName={#AppLongName}
+DefaultDirName={pf32}\Oni
+OutputBaseFilename={#AppShortName}-v{#AppVersion}-noJRE-Setup
+DefaultGroupName=Oni AE
+
+DirExistsWarning=no
+AppendDefaultDirName=no
+
+ShowComponentSizes=no
+AppPublisher=
+AppPublisherURL=
+AppSupportURL=
+AppUpdatesURL=
+AllowNoIcons=yes
+OutputDir=.
+Compression=lzma2/max
+SolidCompression=yes
+
+[Languages]
+Name: "en"; MessagesFile: "compiler:Default.isl"
+
+[Messages]
+en.SelectDirBrowseLabel=Please select the installation directory of Oni.
+
+[CustomMessages]
+en.wrongDir=This doesn't seem to be your Oni installation; I don't see a file here named "Oni.exe".
+en.JavaNotFound=This program needs a Java Runtime (JRE) with version being at least %1.%nPlease download and install a suitable JRE.%nDo you want do download a JRE now?
+
+[Tasks]
+Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
+
+[Dirs]
+Name: "{app}\Edition"; Permissions: users-modify
+ 
+[Files]
+Source: "AEInstaller2.jar"; DestDir: "{app}\Edition\AEInstaller"
+Source: "AElogo.ico"; DestDir: "{app}\Edition\AEInstaller"
+
+[Icons]
+Name: "{group}\AEInstaller 2"; Filename: "{code:GetJavaPath}\bin\javaw.exe"; WorkingDir: "{app}\Edition\AEInstaller"; IconFilename: "{app}\Edition\AEInstaller\AElogo.ico"; Parameters: "-Dsun.java2d.d3d=false -jar AEInstaller2.jar"; Check: IsJavaInstalled
+Name: "{commondesktop}\AEInstaller 2"; Filename: "{code:GetJavaPath}\bin\javaw.exe"; WorkingDir: "{app}\Edition\AEInstaller"; IconFilename: "{app}\Edition\AEInstaller\AElogo.ico"; Parameters: "-Dsun.java2d.d3d=false -jar AEInstaller2.jar"; Tasks: desktopicon; Check: IsJavaInstalled
+
+
+[Code]
+var
+  javaPath: String;
+
+procedure DecodeVersion (verstr: String; var verint: array of Integer);
+var
+  i,p: Integer; s: string;
+begin
+  // initialize array
+  verint := [0,0,0,0];
+  i := 0;
+  while ((Length(verstr) > 0) and (i < 4)) do
+  begin
+    p := pos ('.', verstr);
+    if p > 0 then
+    begin
+      if p = 1 then s:= '0' else s:= Copy (verstr, 1, p - 1);
+      verint[i] := StrToInt(s);
+      i := i + 1;
+      verstr := Copy (verstr, p+1, Length(verstr));
+    end
+    else
+    begin
+      verint[i] := StrToInt (verstr);
+      verstr := '';
+    end;
+  end;
+
+end;
+
+function CompareVersion (ver1, ver2: String) : Integer;
+var
+  verint1, verint2: array of Integer;
+  i: integer;
+begin
+  SetArrayLength (verint1, 4);
+  DecodeVersion (ver1, verint1);
+
+  SetArrayLength (verint2, 4);
+  DecodeVersion (ver2, verint2);
+
+  Result := 0; i := 0;
+  while ((Result = 0) and ( i < 4 )) do
+  begin
+    if verint1[i] > verint2[i] then
+      Result := 1
+    else
+      if verint1[i] < verint2[i] then
+        Result := -1;
+    i := i + 1;
+  end;
+
+end;
+
+procedure CheckJavaRuntime();
+var
+  W6432: Boolean;
+  Res: Boolean;
+  JavaVer: String;
+begin
+  W6432 := False;
+  Res := RegQueryStringValue(HKLM, 'SOFTWARE\JavaSoft\Java Runtime Environment', 'CurrentVersion', JavaVer);
+  if (Res = False) and IsWin64() then
+  begin
+    Res := RegQueryStringValue(HKLM32, 'SOFTWARE\JavaSoft\Java Runtime Environment', 'CurrentVersion', JavaVer);
+    W6432 := Res;
+  end;
+  if Res = True then
+  begin
+    if Length( JavaVer ) > 0 then
+    begin
+    	if CompareVersion(JavaVer, '{#MinJavaVersion}') >= 0 then
+    	begin
+        if W6432 then
+          Res := RegQueryStringValue(HKLM32, 'SOFTWARE\JavaSoft\Java Runtime Environment\'+JavaVer, 'JavaHome', javaPath)
+        else
+          Res := RegQueryStringValue(HKLM, 'SOFTWARE\JavaSoft\Java Runtime Environment\'+JavaVer, 'JavaHome', javaPath);
+    	end;
+    end;
+  end;
+end;
+
+function IsJavaInstalled(): Boolean;
+begin
+  Result := Length(javaPath) > 0;
+end;
+
+function GetJavaPath(Param: String): String;
+begin
+  Result := javaPath;
+end;
+
+function InitializeSetup(): Boolean;
+var
+  ErrorCode: Integer;
+begin
+  CheckJavaRuntime();
+  Result := IsJavaInstalled();
+  if not Result then
+  begin
+    if MsgBox(FmtMessage(CustomMessage('JavaNotFound'), ['{#MinJavaVersion}']), mbConfirmation, MB_YESNO) = idYes then
+    begin
+    	ShellExecAsOriginalUser('open', '{#JavaDownloadPage}', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
+    end;
+  end;
+end;
+
+function DirOk(Path: String): boolean;
+begin
+  Result := DirExists(Path+'\GameDataFolder') and FileExists(Path+'\Oni.exe');
+end;
+
+function NextButtonClick(CurPageID: Integer): boolean;
+begin
+  Result := True;
+
+  if CurPageID = wpSelectDir then
+  begin
+    if (not DirOk(WizardDirValue)) then
+    begin
+      MsgBox(CustomMessage('wrongDir'), mbError, MB_OK);
+      Result := False;
+    end;
+  end;
+end;
+
+
+function ShouldSkipPage(PageID: Integer): Boolean;
+begin
+  Result := PageID = wpSelectComponents;
+end;
+
+function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, MemoComponentsInfo, MemoGroupInfo, MemoTasksInfo: String): String;
+begin
+  Result := MemoUserInfoInfo + NewLine;
+  Result := Result + MemoDirInfo + NewLine;
+  Result := Result + MemoGroupInfo + NewLine;
+  Result := Result + MemoTasksInfo + NewLine;
+end;
+
Index: AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties	(revision 646)
+++ AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties	(revision 647)
@@ -1,2 +1,2 @@
 appname=AE Installer 2
-appversion=0.99c
+appversion=0.99d
Index: AE/installer2/src/net/oni2/aeinstaller/backend/mods/ModManager.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/backend/mods/ModManager.java	(revision 646)
+++ AE/installer2/src/net/oni2/aeinstaller/backend/mods/ModManager.java	(revision 647)
@@ -111,5 +111,5 @@
 
 		for (NodeMod nm : DepotManager.getInstance().getModPackageNodes()) {
-			if (nm.getUploads().size() == 1) {
+			if (nm.getUploads().size() == 1 && nm.getStatus() == 1) {
 				Mod m = new Mod(nm);
 				if (nm.isTool())
Index: AE/installer2/src/net/oni2/aeinstaller/backend/mods/Mod_Info.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/backend/mods/Mod_Info.java	(revision 646)
+++ AE/installer2/src/net/oni2/aeinstaller/backend/mods/Mod_Info.java	(revision 647)
@@ -63,5 +63,6 @@
 					version = sVal;
 				} else if (sName.equalsIgnoreCase("Readme")) {
-					description = sVal.replaceAll("\\\\n", "<br>");
+					description = "<p>" + sVal.replaceAll("\\\\n", "<br>")
+							+ "</p>";
 				} else if (sName.equalsIgnoreCase("DependsOn")) {
 					String[] depsS = sVal.split(",");
Index: AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java	(revision 646)
+++ AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java	(revision 647)
@@ -4,4 +4,5 @@
 import java.awt.Desktop;
 import java.awt.GridLayout;
+import java.awt.Insets;
 import java.awt.event.ActionEvent;
 import java.awt.event.ItemEvent;
@@ -144,4 +145,6 @@
 		tblMods.addModSelectionListener(this);
 		tblMods.addDownloadSizeListener(this);
+		
+		lblDescriptionVal.setMargin(new Insets(-15, 0, 0, 0));
 	}
 
@@ -536,5 +539,5 @@
 					}
 				}
-				
+
 				if (!Settings.getInstance()
 						.get("notifyDepsAfterInstall", false)) {
