daborun Commit Revision 27 Date: 2008-06-14 09:34:34 -0700 (Sat, 14 Jun 2008) Author: Ed Trac: http://svn.dabodev.com/trac/daborun/changeset/27
Changed: U trunk/LICENSE.TXT U trunk/daborun.iss U trunk/pathToDabo.py U trunk/setup.py U trunk/version.py Log: Changes to make runtimes for the 0.8.4 release. Diff: Modified: trunk/LICENSE.TXT =================================================================== --- trunk/LICENSE.TXT 2007-11-13 18:11:12 UTC (rev 26) +++ trunk/LICENSE.TXT 2008-06-14 16:34:34 UTC (rev 27) @@ -1,5 +1,5 @@ Dabo Runtime -Copyright (c) 2004-6 Ed Leafe, Paul McNett, et. al. +Copyright (c) 2004-8 Ed Leafe, Paul McNett, et. al. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Modified: trunk/daborun.iss =================================================================== --- trunk/daborun.iss 2007-11-13 18:11:12 UTC (rev 26) +++ trunk/daborun.iss 2008-06-14 16:34:34 UTC (rev 27) @@ -3,7 +3,7 @@ [Setup] AppName=Dabo Runtime Engine -AppVerName=DaboRun 0.8.2 - rev 20071113 +AppVerName=DaboRun 0.8.4 - rev 20080610 AppPublisher=Ed Leafe AppPublisherURL=http://dabodev.com AppSupportURL=http://dabodev.com @@ -14,8 +14,8 @@ Compression=lzma SolidCompression=yes ChangesAssociations=yes -;OutputBaseFilename=DaboRuntimeSetup -OutputBaseFilename=DaboRuntimeSetupConsole +OutputBaseFilename=DaboRuntimeSetup +;OutputBaseFilename=DaboRuntimeSetupConsole [Tasks] Name: desktopicon; Description: {cm:CreateDesktopIcon}; GroupDescription: {cm:AdditionalIcons} @@ -31,11 +31,11 @@ Name: {app}\ide\*; Type: filesandordirs [Files] -Source: P:\daborun\trunk\dist\daborun.exe; DestDir: {app}; Flags: ignoreversion -Source: P:\daborun\trunk\dist\*; Excludes: Output\*, *.iss; DestDir: {app}; Flags: ignoreversion recursesubdirs -Source: C:\cleanprojects\dabo\*; DestDir: {app}\dabo; Flags: ignoreversion recursesubdirs -Source: C:\cleanprojects\demo\*; DestDir: {app}\demo; Flags: ignoreversion recursesubdirs; AfterInstall: LinkDemo -Source: C:\cleanprojects\ide\*; DestDir: {app}\ide; Flags: ignoreversion recursesubdirs; AfterInstall: LinkIDE +Source: C:\projects\daborun\dist\daborun.exe; DestDir: {app}; Flags: ignoreversion +Source: C:\projects\daborun\dist\*; Excludes: Output\*, *.iss; DestDir: {app}; Flags: ignoreversion recursesubdirs +Source: C:\projects\dabo-0.8.4\dabo\dabo\*; DestDir: {app}\dabo; Flags: ignoreversion recursesubdirs +Source: C:\projects\dabo-0.8.4\dabo\demo\*; DestDir: {app}\demo; Flags: ignoreversion recursesubdirs; AfterInstall: LinkDemo +Source: C:\projects\dabo-0.8.4\dabo\ide\*; DestDir: {app}\ide; Flags: ignoreversion recursesubdirs; AfterInstall: LinkIDE Source: C:\Python25\msvcr71.dll; DestDir: {app}; Flags: ignoreversion ; NOTE: Don't use "Flags: ignoreversion" on any shared system files Source: README.txt; DestDir: {app}; Flags: isreadme Modified: trunk/pathToDabo.py =================================================================== --- trunk/pathToDabo.py 2007-11-13 18:11:12 UTC (rev 26) +++ trunk/pathToDabo.py 2008-06-14 16:34:34 UTC (rev 27) @@ -1,3 +1,4 @@ # -*- coding: utf-8 -*- def getDaboPath(): + raise NotImplementedError return "/home/ed/pack" Modified: trunk/setup.py =================================================================== --- trunk/setup.py 2007-11-13 18:11:12 UTC (rev 26) +++ trunk/setup.py 2008-06-14 16:34:34 UTC (rev 27) @@ -7,12 +7,12 @@ # The first three parameters are not required, if at least a # 'version' is given, then a versioninfo resource is built from # them and added to the executables. - version = "0.8.2", + version = "0.8.4", description = "Dabo Runtime Engine", name = "daborun", # targets to build - console = ["daborun.py"], -# windows = ["daborun.py"], +# console = ["daborun.py"], + windows = ["daborun.py"], #exclude the actual framework options = { "py2exe": {"includes" : ["code", "compiler", "ConfigParser", "copy", "cStringIO", Modified: trunk/version.py =================================================================== --- trunk/version.py 2007-11-13 18:11:12 UTC (rev 26) +++ trunk/version.py 2008-06-14 16:34:34 UTC (rev 27) @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- name = "Dabo Runtime Engine" description = "Self-contained engine for running Dabo apps" -copyright = "(c)2004-7 Edward Leafe" -version = "0.8.2" -release = "2007-11-13" +copyright = "(c)2004-8 Edward Leafe" +version = "0.8.4" +release = "2008-06-10" url = "http://dabodev.com" testver = True _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
