Compare commits
72 Commits
develop
...
build/2.0.4
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a314cfbc4 | |||
| 5941d0bf77 | |||
| d326c1c25c | |||
| 96472a9a8f | |||
| 27252561e2 | |||
| c9e732651f | |||
| 7849e7170d | |||
| 087894eb4e | |||
| 25f1b8c7a7 | |||
| e71da1f14d | |||
| 938b14ba18 | |||
| d6522d8f38 | |||
| 78eab890e7 | |||
| 1a56191f83 | |||
| 41c0f34d95 | |||
| 37bf205d7a | |||
| aa1fa3eb9a | |||
| 0e2f8a612c | |||
| 465e7b2abc | |||
| 578fb45785 | |||
| 96995bbbe5 | |||
| 4cfdafebbc | |||
| b97acb8ef5 | |||
| d68d2dfdb6 | |||
| 39b269a454 | |||
| ac081d3e10 | |||
| 5d4efb60cf | |||
| cc408b980c | |||
| 59590b3ac9 | |||
| ff759dacf3 | |||
| a328e44130 | |||
| 7924cac5f9 | |||
| 1cef3b0c93 | |||
| 3cd59edc8b | |||
| 0d624af01d | |||
| a09132570c | |||
| ee3fc38432 | |||
| dbf0192c8e | |||
| 6962cfc3f5 | |||
| e096ec3b5b | |||
| b30a74ae0c | |||
| 978eeb16c9 | |||
| e5c9d91657 | |||
| fa81c3a07a | |||
| 9cdd520d41 | |||
| 55d7898771 | |||
| b8256bef97 | |||
| 5be9dc0b4a | |||
| 7d0be0cefb | |||
| f7ce1edb13 | |||
| 5ad9280b60 | |||
| 2b353f1b20 | |||
| 75ab90b87b | |||
| 0219296120 | |||
| 20032b3a31 | |||
| ea9e9a8c90 | |||
| f7b0ee145b | |||
| cc866738ee | |||
| eadccf6e33 | |||
| b70b66e567 | |||
| 5b6792dc20 | |||
| f498e7343a | |||
| 6962f441e6 | |||
| 1def62b1b1 | |||
| a4a4a6a185 | |||
| d4c9469c1a | |||
| 3e2d4c5d7b | |||
| d03f711d69 | |||
| 44dd8d9b96 | |||
| 549a3be0d8 | |||
| 1bb2edf8ec | |||
| 84c6f36315 |
+231
@@ -0,0 +1,231 @@
|
|||||||
|
from esky.util import appdir_from_executable #@UnresolvedImport
|
||||||
|
from threading import Thread
|
||||||
|
from version import VERSION
|
||||||
|
from wx.lib.softwareupdate import SoftwareUpdate
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
import webbrowser
|
||||||
|
import wx
|
||||||
|
|
||||||
|
# Include proper dirs
|
||||||
|
if hasattr(sys, 'frozen'):
|
||||||
|
import libs
|
||||||
|
base_path = os.path.dirname(os.path.dirname(os.path.abspath(libs.__file__)))
|
||||||
|
else:
|
||||||
|
base_path = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
|
lib_dir = os.path.join(base_path, 'libs')
|
||||||
|
|
||||||
|
sys.path.insert(0, base_path)
|
||||||
|
sys.path.insert(0, lib_dir)
|
||||||
|
|
||||||
|
from couchpotato.environment import Env
|
||||||
|
|
||||||
|
class TaskBarIcon(wx.TaskBarIcon):
|
||||||
|
|
||||||
|
TBMENU_OPEN = wx.NewId()
|
||||||
|
TBMENU_SETTINGS = wx.NewId()
|
||||||
|
TBMENU_EXIT = wx.ID_EXIT
|
||||||
|
|
||||||
|
closed = False
|
||||||
|
menu = False
|
||||||
|
enabled = False
|
||||||
|
|
||||||
|
def __init__(self, frame):
|
||||||
|
wx.TaskBarIcon.__init__(self)
|
||||||
|
self.frame = frame
|
||||||
|
|
||||||
|
icon = wx.Icon('icon.png', wx.BITMAP_TYPE_PNG)
|
||||||
|
self.SetIcon(icon)
|
||||||
|
|
||||||
|
self.Bind(wx.EVT_TASKBAR_LEFT_UP, self.OnTaskBarClick)
|
||||||
|
self.Bind(wx.EVT_TASKBAR_RIGHT_UP, self.OnTaskBarClick)
|
||||||
|
|
||||||
|
self.Bind(wx.EVT_MENU, self.onOpen, id = self.TBMENU_OPEN)
|
||||||
|
self.Bind(wx.EVT_MENU, self.onSettings, id = self.TBMENU_SETTINGS)
|
||||||
|
self.Bind(wx.EVT_MENU, self.onTaskBarClose, id = self.TBMENU_EXIT)
|
||||||
|
|
||||||
|
def OnTaskBarClick(self, evt):
|
||||||
|
menu = self.CreatePopupMenu()
|
||||||
|
self.PopupMenu(menu)
|
||||||
|
menu.Destroy()
|
||||||
|
|
||||||
|
def enable(self):
|
||||||
|
self.enabled = True
|
||||||
|
|
||||||
|
if self.menu:
|
||||||
|
self.open_menu.Enable(True)
|
||||||
|
self.setting_menu.Enable(True)
|
||||||
|
|
||||||
|
self.open_menu.SetText('Open')
|
||||||
|
|
||||||
|
def CreatePopupMenu(self):
|
||||||
|
|
||||||
|
if not self.menu:
|
||||||
|
self.menu = wx.Menu()
|
||||||
|
self.open_menu = self.menu.Append(self.TBMENU_OPEN, 'Open')
|
||||||
|
self.setting_menu = self.menu.Append(self.TBMENU_SETTINGS, 'About')
|
||||||
|
self.exit_menu = self.menu.Append(self.TBMENU_EXIT, 'Quit')
|
||||||
|
|
||||||
|
if not self.enabled:
|
||||||
|
self.open_menu.Enable(False)
|
||||||
|
self.setting_menu.Enable(False)
|
||||||
|
|
||||||
|
self.open_menu.SetText('Loading...')
|
||||||
|
|
||||||
|
return self.menu
|
||||||
|
|
||||||
|
def onOpen(self, event):
|
||||||
|
url = self.frame.parent.getSetting('base_url')
|
||||||
|
webbrowser.open(url)
|
||||||
|
|
||||||
|
def onSettings(self, event):
|
||||||
|
url = self.frame.parent.getSetting('base_url') + '/settings/'
|
||||||
|
webbrowser.open(url)
|
||||||
|
|
||||||
|
def onTaskBarClose(self, evt):
|
||||||
|
if self.closed:
|
||||||
|
return
|
||||||
|
|
||||||
|
self.closed = True
|
||||||
|
|
||||||
|
self.RemoveIcon()
|
||||||
|
wx.CallAfter(self.frame.Close)
|
||||||
|
|
||||||
|
|
||||||
|
def makeIcon(self, img):
|
||||||
|
if "wxMSW" in wx.PlatformInfo:
|
||||||
|
img = img.Scale(16, 16)
|
||||||
|
elif "wxGTK" in wx.PlatformInfo:
|
||||||
|
img = img.Scale(22, 22)
|
||||||
|
|
||||||
|
icon = wx.IconFromBitmap(img.CopyFromBitmap())
|
||||||
|
return icon
|
||||||
|
|
||||||
|
|
||||||
|
class MainFrame(wx.Frame):
|
||||||
|
|
||||||
|
def __init__(self, parent):
|
||||||
|
wx.Frame.__init__(self, None, style = wx.FRAME_NO_TASKBAR)
|
||||||
|
|
||||||
|
self.parent = parent
|
||||||
|
self.tbicon = TaskBarIcon(self)
|
||||||
|
|
||||||
|
|
||||||
|
class WorkerThread(Thread):
|
||||||
|
|
||||||
|
def __init__(self, desktop):
|
||||||
|
Thread.__init__(self)
|
||||||
|
self.daemon = True
|
||||||
|
self._desktop = desktop
|
||||||
|
|
||||||
|
self.start()
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
|
||||||
|
# Get options via arg
|
||||||
|
from couchpotato.runner import getOptions
|
||||||
|
args = ['--quiet']
|
||||||
|
self.options = getOptions(base_path, args)
|
||||||
|
|
||||||
|
# Load settings
|
||||||
|
settings = Env.get('settings')
|
||||||
|
settings.setFile(self.options.config_file)
|
||||||
|
|
||||||
|
# Create data dir if needed
|
||||||
|
self.data_dir = os.path.expanduser(Env.setting('data_dir'))
|
||||||
|
if self.data_dir == '':
|
||||||
|
from couchpotato.core.helpers.variable import getDataDir
|
||||||
|
self.data_dir = getDataDir()
|
||||||
|
|
||||||
|
if not os.path.isdir(self.data_dir):
|
||||||
|
os.makedirs(self.data_dir)
|
||||||
|
|
||||||
|
# Create logging dir
|
||||||
|
self.log_dir = os.path.join(self.data_dir, 'logs');
|
||||||
|
if not os.path.isdir(self.log_dir):
|
||||||
|
os.mkdir(self.log_dir)
|
||||||
|
|
||||||
|
try:
|
||||||
|
from couchpotato.runner import runCouchPotato
|
||||||
|
runCouchPotato(self.options, base_path, args, data_dir = self.data_dir, log_dir = self.log_dir, Env = Env, desktop = self._desktop)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
self._desktop.frame.Close()
|
||||||
|
|
||||||
|
|
||||||
|
class CouchPotatoApp(wx.App, SoftwareUpdate):
|
||||||
|
|
||||||
|
settings = {}
|
||||||
|
events = {}
|
||||||
|
restart = False
|
||||||
|
closing = False
|
||||||
|
|
||||||
|
def OnInit(self):
|
||||||
|
|
||||||
|
# Updater
|
||||||
|
base_url = 'http://couchpota.to/updates/%s/' % VERSION
|
||||||
|
self.InitUpdates(base_url, base_url + 'changelog.html',
|
||||||
|
icon = wx.Icon('icon.png'))
|
||||||
|
|
||||||
|
self.frame = MainFrame(self)
|
||||||
|
self.frame.Bind(wx.EVT_CLOSE, self.onClose)
|
||||||
|
|
||||||
|
# CouchPotato thread
|
||||||
|
self.worker = WorkerThread(self)
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
|
def onAppLoad(self):
|
||||||
|
self.frame.tbicon.enable()
|
||||||
|
|
||||||
|
def setSettings(self, settings = {}):
|
||||||
|
self.settings = settings
|
||||||
|
|
||||||
|
def getSetting(self, name):
|
||||||
|
return self.settings.get(name)
|
||||||
|
|
||||||
|
def addEvents(self, events = {}):
|
||||||
|
for name in events.iterkeys():
|
||||||
|
self.events[name] = events[name]
|
||||||
|
|
||||||
|
def onClose(self, event):
|
||||||
|
|
||||||
|
if not self.closing:
|
||||||
|
self.closing = True
|
||||||
|
self.frame.tbicon.onTaskBarClose(event)
|
||||||
|
|
||||||
|
onClose = self.events.get('onClose')
|
||||||
|
onClose(event)
|
||||||
|
|
||||||
|
def afterShutdown(self, restart = False):
|
||||||
|
self.frame.Destroy()
|
||||||
|
self.restart = restart
|
||||||
|
self.ExitMainLoop()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
|
||||||
|
app = CouchPotatoApp(redirect = False)
|
||||||
|
app.MainLoop()
|
||||||
|
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
if app.restart:
|
||||||
|
|
||||||
|
def appexe_from_executable(exepath):
|
||||||
|
appdir = appdir_from_executable(exepath)
|
||||||
|
exename = os.path.basename(exepath)
|
||||||
|
|
||||||
|
if sys.platform == "darwin":
|
||||||
|
if os.path.isdir(os.path.join(appdir, "Contents", "MacOS")):
|
||||||
|
return os.path.join(appdir, "Contents", "MacOS", exename)
|
||||||
|
|
||||||
|
return os.path.join(appdir, exename)
|
||||||
|
|
||||||
|
exe = appexe_from_executable(sys.executable)
|
||||||
|
os.chdir(os.path.dirname(exe))
|
||||||
|
|
||||||
|
os.execv(exe, [exe] + sys.argv[1:])
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
#define MyAppName "CouchPotato"
|
||||||
|
#define MyAppVer "2.0.4"
|
||||||
|
|
||||||
|
[Setup]
|
||||||
|
AppName={#MyAppName}
|
||||||
|
AppVersion=2
|
||||||
|
AppVerName={#MyAppName}
|
||||||
|
DefaultDirName={pf}\{#MyAppName}
|
||||||
|
DisableProgramGroupPage=yes
|
||||||
|
UninstallDisplayIcon=./icon.ico
|
||||||
|
SetupIconFile=./icon.ico
|
||||||
|
OutputDir=./dist
|
||||||
|
OutputBaseFilename={#MyAppName}-{#MyAppVer}.win32.installer
|
||||||
|
AppPublisher=Your Mom
|
||||||
|
AppPublisherURL=http://couchpota.to
|
||||||
|
|
||||||
|
[Files]
|
||||||
|
Source: "./dist/{#MyAppName}-{#MyAppVer}.win32/*"; Flags: recursesubdirs; DestDir: "{app}"
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"
|
||||||
|
Name: "{userstartup}\{#MyAppName}"; Filename: "{app}\{#MyAppName}.exe"; Tasks: startup
|
||||||
|
|
||||||
|
[Tasks]
|
||||||
|
Name: "startup"; Description: "Run {#MyAppName} at startup"; Flags: unchecked
|
||||||
|
|
||||||
|
[UninstallDelete]
|
||||||
|
Type: filesandordirs; Name: "{app}\appdata"
|
||||||
|
Type: filesandordirs; Name: "{app}\Microsoft.VC90.CRT"
|
||||||
|
Type: filesandordirs; Name: "{app}\updates"
|
||||||
|
Type: filesandordirs; Name: "{app}\CouchPotato*"
|
||||||
|
Type: filesandordirs; Name: "{app}\python27.dll"
|
||||||
|
Type: filesandordirs; Name: "{app}\unins000.dat"
|
||||||
|
Type: filesandordirs; Name: "{app}\unins000.exe"
|
||||||
@@ -0,0 +1,109 @@
|
|||||||
|
from esky import bdist_esky
|
||||||
|
from setuptools import setup
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import version
|
||||||
|
|
||||||
|
|
||||||
|
# Include proper dirs
|
||||||
|
base_path = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
lib_dir = os.path.join(base_path, 'libs')
|
||||||
|
|
||||||
|
sys.path.insert(0, base_path)
|
||||||
|
sys.path.insert(0, lib_dir)
|
||||||
|
|
||||||
|
def getDataFiles(dirs):
|
||||||
|
data_files = []
|
||||||
|
for directory in dirs:
|
||||||
|
for root, dirs, files in os.walk(directory):
|
||||||
|
if files:
|
||||||
|
for filename in files:
|
||||||
|
if filename[:-4] is not '.pyc':
|
||||||
|
data_files.append((root, [os.path.join(root, filename)]))
|
||||||
|
|
||||||
|
return data_files
|
||||||
|
|
||||||
|
includes = [
|
||||||
|
'telnetlib',
|
||||||
|
'xml.etree.ElementTree',
|
||||||
|
'xml.etree.cElementTree',
|
||||||
|
'xml.dom',
|
||||||
|
'xml.dom.minidom',
|
||||||
|
'netrc',
|
||||||
|
'csv',
|
||||||
|
'HTMLParser',
|
||||||
|
'version',
|
||||||
|
'distutils',
|
||||||
|
]
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
if sys.platform == "win32":
|
||||||
|
import py2exe
|
||||||
|
|
||||||
|
FREEZER = 'py2exe'
|
||||||
|
FREEZER_OPTIONS = dict(
|
||||||
|
compressed = 0,
|
||||||
|
bundle_files = 3,
|
||||||
|
dll_excludes = [
|
||||||
|
'MSVCP90.dll',
|
||||||
|
'mswsock.dll',
|
||||||
|
'powrprof.dll',
|
||||||
|
'USP10.dll',
|
||||||
|
],
|
||||||
|
packages = ['couchpotato', 'libs'],
|
||||||
|
includes = includes,
|
||||||
|
skip_archive = 1,
|
||||||
|
)
|
||||||
|
exeICON = os.path.join(base_path, 'icon.ico')
|
||||||
|
DATA_FILES = getDataFiles([r'.\\couchpotato', r'.\\libs'])
|
||||||
|
DATA_FILES.append('icon.png')
|
||||||
|
file_ext = 'win32.zip'
|
||||||
|
|
||||||
|
|
||||||
|
# OSX
|
||||||
|
elif sys.platform == "darwin":
|
||||||
|
import py2app
|
||||||
|
|
||||||
|
FREEZER = 'py2app'
|
||||||
|
FREEZER_OPTIONS = dict(
|
||||||
|
optimize = 2,
|
||||||
|
strip = True,
|
||||||
|
argv_emulation = False,
|
||||||
|
site_packages = False,
|
||||||
|
iconfile = 'icon.icns',
|
||||||
|
plist = dict(
|
||||||
|
LSUIElement = True,
|
||||||
|
),
|
||||||
|
packages = ['couchpotato', 'libs'],
|
||||||
|
includes = includes,
|
||||||
|
)
|
||||||
|
exeICON = None
|
||||||
|
DATA_FILES = ['icon.png']
|
||||||
|
|
||||||
|
file_ext = 'macosx-10_6-intel.zip'
|
||||||
|
|
||||||
|
# Common
|
||||||
|
NAME = "CouchPotato"
|
||||||
|
APP = [bdist_esky.Executable("Desktop.py", name = NAME, icon = exeICON, gui_only = True,)]
|
||||||
|
ESKY_OPTIONS = dict(
|
||||||
|
freezer_module = FREEZER,
|
||||||
|
freezer_options = FREEZER_OPTIONS,
|
||||||
|
bundle_msvcrt = True,
|
||||||
|
)
|
||||||
|
|
||||||
|
# Build the app and the esky bundle
|
||||||
|
setup(
|
||||||
|
name = NAME,
|
||||||
|
scripts = APP,
|
||||||
|
version = version.VERSION,
|
||||||
|
author = "Ruud",
|
||||||
|
author_email = "info@couchpota.to",
|
||||||
|
description = 'CouchPotato %s' % version.VERSION,
|
||||||
|
data_files = DATA_FILES,
|
||||||
|
options = dict(bdist_esky = ESKY_OPTIONS),
|
||||||
|
)
|
||||||
|
|
||||||
|
#distpath = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'dist')
|
||||||
|
#zipfilename = os.path.join(distpath, '%s-%s.%s' % (NAME, version.VERSION, file_ext))
|
||||||
|
#zfile = zipfile.ZipFile(zipfilename, "r")
|
||||||
|
#zfile.extractall(distpath)
|
||||||
+2
-2
@@ -1,2 +1,2 @@
|
|||||||
VERSION = '2.0.1.1'
|
VERSION = '2.0.4'
|
||||||
BRANCH = 'master'
|
BRANCH = 'desktop'
|
||||||
|
|||||||
Reference in New Issue
Block a user