Skip to content

Commit

Permalink
cf changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
AlessandroZ committed Oct 22, 2015
1 parent 716ed29 commit 64060a0
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
LaZagne 1.1 (22/10/2015)
- Only Windows
* New category: games (Thanks to David Lodge)
* Galcon Fusion
* Kalypso Media Launcher
* Rogue's Tale
* Turba


LaZagne 1.0 (04/10/2015)
- Only Windows
* Fix chrome database locked
Expand Down
2 changes: 1 addition & 1 deletion Windows/src/LaZagne/config/constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class constant():
folder_name = 'results'
MAX_HELP_POSITION = 27
CURRENT_VERSION = '1.0'
CURRENT_VERSION = '1.1'
output = None
file_logger = None

Expand Down
4 changes: 2 additions & 2 deletions Windows/src/LaZagne/softwares/games/galconfusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def run(self):
with OpenKey(HKEY_CURRENT_USER, 'Software\Valve\Steam') as key:
results=QueryValueEx(key, 'SteamPath')
except:
print_debug('ERROR', 'Steam does not appear to be installed.')
print_debug('INFO', 'Steam does not appear to be installed.')
return

if not results:
print_debug('ERROR', 'Steam does not appear to be installed.')
print_debug('INFO', 'Steam does not appear to be installed.')
return

steampath=results[0]
Expand Down
2 changes: 1 addition & 1 deletion Windows/src/LaZagne/softwares/games/kalypsomedia.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def run(self):

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

config = ConfigParser.ConfigParser()
Expand Down
2 changes: 1 addition & 1 deletion Windows/src/LaZagne/softwares/games/roguestale.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def run(self):

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

files = os.listdir(directory)
Expand Down
6 changes: 3 additions & 3 deletions Windows/src/LaZagne/softwares/games/turba.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def run(self):
with OpenKey(HKEY_CURRENT_USER, 'Software\Valve\Steam') as key:
results=QueryValueEx(key, 'SteamPath')
except:
print_debug('ERROR', 'Steam does not appear to be installed.')
print_debug('INFO', 'Steam does not appear to be installed.')
return

if not results:
print_debug('ERROR', 'Steam does not appear to be installed.')
print_debug('INFO', 'Steam does not appear to be installed.')
return

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

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

# If we're here we should have a valid config file file
Expand Down
1 change: 1 addition & 0 deletions Windows/src/LaZagne/softwares/windows/secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def run(self):
except Exception,e:
print_debug('DEBUG', '{0}'.format(e))
print_debug('ERROR', 'Failed to save %s hive' % f)
return


if not self.check_existing_systemFiles():
Expand Down

0 comments on commit 64060a0

Please sign in to comment.