Changeset 159
- Timestamp:
- 01/15/10 19:43:05 (2 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/org/jergometer/Jergometer.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/CHANGELOG
r157 r159 3 3 4 4 //== 0.7.4 == 5 6 2010-01-15 7 * [stefan] * implemented issue #170: update check needs to be deactivated for linux packages 5 8 6 9 2010-01-10 -
trunk/src/org/jergometer/Jergometer.java
r157 r159 41 41 public static String version = "*Bleeding Edge*"; 42 42 public static boolean devVersion = true; 43 public static boolean updatable = false; 43 44 static { 44 45 try { 45 46 version = StreamUtils.readFile("version.txt"); 46 47 devVersion = false; 48 updatable = true; 49 updatable = Boolean.parseBoolean(StreamUtils.readFile("updatable")); 47 50 } catch (IOException ignored) {} 48 51 } … … 123 126 124 127 // search for updates in the background 125 if ( !devVersion) {128 if (updatable) { 126 129 new Thread(){ 127 130 public void run() {
![(please configure the [header_logo] section in trac.ini)](https://jergometer.org/images/fork_me_on_github.png)