Skip to content

Commit

Permalink
Updated to 1.2.2, with Pyblish Tray
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Nov 5, 2015
1 parent f69610d commit f3b818e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
pyblish-win CHANGELOG
======================

Version 1.2.2
-------------

- Updated to Pyblish X 0.2.0

Version 1.2.1
-------------

Expand Down
2 changes: 2 additions & 0 deletions bin/pyblish-tray.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
"%~dp0pythonw" "%~dp0_launcher.py" "%~dp0\" pyblish_tray %*
2 changes: 1 addition & 1 deletion lib/pyblish-x
2 changes: 1 addition & 1 deletion pyblish_win/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 2
VERSION_PATCH = 1
VERSION_PATCH = 2

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down
5 changes: 5 additions & 0 deletions pythonpath/pyblish_tray/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import os
import imp

util = imp.load_source("_util", os.path.join(__file__, "..", "..", "_util.py"))
util.wrap_module(__name__.replace("_", "-"))
2 changes: 1 addition & 1 deletion setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Root: HKCU; Subkey: "Environment"; ValueType: expandsz; ValueName: "HIERO_PLUGIN
Root: HKCU; Subkey: "Environment"; ValueType: expandsz; ValueName: "HOUDINI_PATH"; ValueData: "&;{#HoudiniIntegration};{olddata}"; Components: houdini

[Icons]
Name: "{group}\Pyblish"; Filename: "{app}\bin\pyblish-standalone.bat"; WorkingDir: "{app}"; IconFilename: "{app}\icon.ico"
Name: "{group}\Pyblish"; Filename: "{app}\bin\pyblish-tray.bat"; WorkingDir: "{app}"; IconFilename: "{app}\icon.ico"
Name: "{group}\Pyblish Interpreter"; Filename: "{app}\bin\python.bat"; WorkingDir: "{userdocs}"; IconFilename: "{app}\icon.ico"
Name: "{group}\{cm:ProgramOnTheWeb,{#MyAppName}}"; Filename: "{#MyAppURL}"
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
Expand Down

0 comments on commit f3b818e

Please sign in to comment.