Skip to content

Commit e3467f3

Browse files
committed
cf changelog
Former-commit-id: bdbe9d5 [formerly bdbe9d5 [formerly bdbe9d5 [formerly 64060a0]]] Former-commit-id: 6cd4267ee3545a1d65293a9c884be672cd552338 Former-commit-id: 64f0b4b Former-commit-id: 2299bf9
1 parent 3f243d1 commit e3467f3

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
LaZagne 1.1 (22/10/2015)
2+
- Only Windows
3+
* New category: games (Thanks to David Lodge)
4+
* Galcon Fusion
5+
* Kalypso Media Launcher
6+
* Rogue's Tale
7+
* Turba
8+
9+
110
LaZagne 1.0 (04/10/2015)
211
- Only Windows
312
* Fix chrome database locked

Windows/src/LaZagne/config/constant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
class constant():
33
folder_name = 'results'
44
MAX_HELP_POSITION = 27
5-
CURRENT_VERSION = '1.0'
5+
CURRENT_VERSION = '1.1'
66
output = None
77
file_logger = None
88

Windows/src/LaZagne/softwares/games/galconfusion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ def run(self):
2121
with OpenKey(HKEY_CURRENT_USER, 'Software\Valve\Steam') as key:
2222
results=QueryValueEx(key, 'SteamPath')
2323
except:
24-
print_debug('ERROR', 'Steam does not appear to be installed.')
24+
print_debug('INFO', 'Steam does not appear to be installed.')
2525
return
2626

2727
if not results:
28-
print_debug('ERROR', 'Steam does not appear to be installed.')
28+
print_debug('INFO', 'Steam does not appear to be installed.')
2929
return
3030

3131
steampath=results[0]

Windows/src/LaZagne/softwares/games/kalypsomedia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run(self):
2929

3030
# The actual user details are stored in *.userdata files
3131
if not os.path.exists(inifile):
32-
print_debug('ERROR', 'The Kalypso Media Launcher doesn\'t appear to be installed.')
32+
print_debug('INFO', 'The Kalypso Media Launcher doesn\'t appear to be installed.')
3333
return
3434

3535
config = ConfigParser.ConfigParser()

Windows/src/LaZagne/softwares/games/roguestale.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def run(self):
2323

2424
# The actual user details are stored in *.userdata files
2525
if not os.path.exists(directory):
26-
print_debug('ERROR', 'Rogue\'s Tale appears to not be installed.')
26+
print_debug('INFO', 'Rogue\'s Tale appears to not be installed.')
2727
return
2828

2929
files = os.listdir(directory)

Windows/src/LaZagne/softwares/games/turba.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ def run(self):
2121
with OpenKey(HKEY_CURRENT_USER, 'Software\Valve\Steam') as key:
2222
results=QueryValueEx(key, 'SteamPath')
2323
except:
24-
print_debug('ERROR', 'Steam does not appear to be installed.')
24+
print_debug('INFO', 'Steam does not appear to be installed.')
2525
return
2626

2727
if not results:
28-
print_debug('ERROR', 'Steam does not appear to be installed.')
28+
print_debug('INFO', 'Steam does not appear to be installed.')
2929
return
3030

3131
steampath=results[0]
@@ -39,7 +39,7 @@ def run(self):
3939
filepath = steamapps + '\\Turba\\Assets\\Settings.bin'
4040

4141
if not os.path.exists(filepath):
42-
print_debug('ERROR', 'Turba doesn\'t appear to be installed.')
42+
print_debug('INFO', 'Turba doesn\'t appear to be installed.')
4343
return
4444

4545
# If we're here we should have a valid config file file

Windows/src/LaZagne/softwares/windows/secrets.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def run(self):
5252
except Exception,e:
5353
print_debug('DEBUG', '{0}'.format(e))
5454
print_debug('ERROR', 'Failed to save %s hive' % f)
55+
return
5556

5657

5758
if not self.check_existing_systemFiles():

0 commit comments

Comments
 (0)