Index: /AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties
===================================================================
--- /AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties	(revision 661)
+++ /AE/installer2/src/net/oni2/aeinstaller/AEInstaller.properties	(revision 662)
@@ -1,2 +1,2 @@
 appname=AE Installer 2
-appversion=0.99l
+appversion=0.99m
Index: /AE/installer2/src/net/oni2/aeinstaller/DepotPackageCheck.java
===================================================================
--- /AE/installer2/src/net/oni2/aeinstaller/DepotPackageCheck.java	(revision 661)
+++ /AE/installer2/src/net/oni2/aeinstaller/DepotPackageCheck.java	(revision 662)
@@ -20,5 +20,5 @@
 	public static void main(String[] args) {
 		System.out.println("Reading Depot data:");
-		DepotManager.getInstance().updateInformation(false);
+		DepotManager.getInstance().updateInformation();
 		System.out.println("\nReading done");
 		System.out.println();
Index: /AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotManager.java
===================================================================
--- /AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotManager.java	(revision 661)
+++ /AE/installer2/src/net/oni2/aeinstaller/backend/depot/DepotManager.java	(revision 662)
@@ -9,4 +9,5 @@
 import java.io.UnsupportedEncodingException;
 import java.net.UnknownHostException;
+import java.util.Date;
 import java.util.Enumeration;
 import java.util.HashMap;
@@ -64,14 +65,12 @@
 	/**
 	 * Update local Depot information cache
-	 * 
-	 * @param forceRefreshAll
-	 *            Force refreshing all data, even if it seems to be cached
-	 */
-	public void updateInformation(boolean forceRefreshAll) {
+	 */
+	public void updateInformation() {
 		try {
 			java.io.File zipName = new java.io.File(Paths.getDownloadPath(),
 					"jsoncache.zip");
 			FileDownloader fd = new FileDownloader(DepotConfig.getDepotUrl()
-					+ "jsoncache/jsoncache.zip", zipName);
+					+ "jsoncache/jsoncache.zip?ts="
+					+ (new Date().getTime() / 1000), zipName);
 			fd.start();
 			while (fd.getState() != net.oni2.aeinstaller.backend.network.FileDownloader.EState.FINISHED) {
@@ -214,5 +213,5 @@
 		return false;
 	}
-	
+
 	private TaxonomyVocabulary getVocabulary(String name) {
 		for (TaxonomyVocabulary v : taxonomyVocabulary.values()) {
Index: /AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java
===================================================================
--- /AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java	(revision 661)
+++ /AE/installer2/src/net/oni2/aeinstaller/gui/MainWin.java	(revision 662)
@@ -194,5 +194,5 @@
 
 			try {
-				DepotManager.getInstance().updateInformation(false);
+				DepotManager.getInstance().updateInformation();
 			} catch (Exception e) {
 				e.printStackTrace();
