From: <ka...@us...> - 2009-03-10 15:34:49
|
Revision: 3176 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3176&view=rev Author: kappa1 Date: 2009-03-10 15:34:38 +0000 (Tue, 10 Mar 2009) Log Message: ----------- When an applet is run in debug mode, output in console that a cached version of the applet is being loaded. A number of people were having problems with applets not updating, this was due to them leaving the cache tag on by mistake, hopefully this should alert them earlier and avoid time being wasted in tracking the issue. Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-03-09 21:53:11 UTC (rev 3175) +++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-03-10 15:34:38 UTC (rev 3176) @@ -581,6 +581,10 @@ if (latestVersion <= readVersionFile(dir)) { cacheAvailable = true; percentage = 90; + + if(debugMode) { + System.out.println("Loading Cached Applet Version " + latestVersion); + } debug_sleep(2000); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |