Skip to content

Commit

Permalink
Revert "windows installer"
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrasca authored Oct 13, 2017
1 parent 96cefb3 commit ee3c4d8
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 750 deletions.
9 changes: 0 additions & 9 deletions bauble/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#
# Copyright (c) 2005,2006,2007,2008,2009 Brett Adams <[email protected]>
# Copyright (c) 2012-2016 Mario Frasca <[email protected]>
# Copyright (c) 2016 Ross Demuth <[email protected]>
#
# This file is part of ghini.desktop.
#
Expand Down Expand Up @@ -218,14 +217,6 @@ def main(uri=None):
if not os.path.exists(paths.appdata_dir()):
os.makedirs(paths.appdata_dir())

# a hack to write stderr and stdout to a file in a py2exe environment
# prevents failed attempts at creating ghini.exe.log
if main_is_frozen():
_stdout = os.path.join(paths.user_dir(), 'stdout.log')
_stderr = os.path.join(paths.user_dir(), 'stderr.log')
sys.stdout = open(_stdout, 'w')
sys.stderr = open(_stderr, 'w')

# add console root handler, and file root handler, set it at the logging
# level specified by BAUBLE_LOGGING, or at INFO level.
filename = os.path.join(paths.appdata_dir(), 'bauble.log')
Expand Down
11 changes: 2 additions & 9 deletions bauble/connmgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#
# Copyright 2008-2010 Brett Adams
# Copyright 2015-2016 Mario Frasca <[email protected]>.
# Copyright 2016 Ross Demuth <[email protected]>
#
# This file is part of ghini.desktop.
#
Expand Down Expand Up @@ -224,15 +223,9 @@ def __init__(self, view=None):
except:
pass

from bauble import main_is_frozen
# Don't check for new versions if we are in a py2exe environment
if main_is_frozen():
pass
else:
from threading import Thread
self.start_thread(Thread(target=check_and_notify_new_version,
from threading import Thread
self.start_thread(Thread(target=check_and_notify_new_version,
args=[self.view]))
logger.debug('main_is_frozen = %s' % (main_is_frozen()))

def on_file_btnbrowse_clicked(self, *args):
previously = self.view.widget_get_value('file_entry')
Expand Down
Binary file removed bauble/images/ghini_logo.bmp
Binary file not shown.
Binary file modified bauble/images/icon.ico
Binary file not shown.
3 changes: 1 addition & 2 deletions bauble/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#
# Copyright (c) 2005,2006,2007,2008,2009 Brett Adams <[email protected]>
# Copyright (c) 2012-2016 Mario Frasca <[email protected]>
# Copyright (c) 2016 Ross Demuth <[email protected]>
#
# This file is part of ghini.desktop.
#
Expand Down Expand Up @@ -90,7 +89,7 @@ def installation_dir():
elif sys.platform == 'win32':
# main_dir is the location of the scripts, which is located in the
# installation_dir:
d = main_dir()
d = os.path.dirname(main_dir())
else:
raise NotImplementedError('This platform does not support '
'translations: %s' % sys.platform)
Expand Down
9 changes: 1 addition & 8 deletions bauble/utils/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#
# Copyright 2008-2010 Brett Adams
# Copyright 2014-2017 Mario Frasca <[email protected]>.
# Copyright 2016 Ross Demuth <[email protected]>
#
# This file is part of ghini.desktop.
#
Expand Down Expand Up @@ -32,13 +31,7 @@


def _open_link(func, data=None):
# windows generates odd characters in the uri unless its in ascii
import sys
if sys.platform == 'win32' :
udata=data.decode("utf-8")
asciidata=udata.encode("ascii","ignore")
desktop.open(asciidata)
else : desktop.open(data)
desktop.open(data)

gtk.link_button_set_uri_hook(_open_link)

Expand Down
31 changes: 0 additions & 31 deletions scripts/Add_to_PATH.vbs

This file was deleted.

Loading

0 comments on commit ee3c4d8

Please sign in to comment.