Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge updates from trunk. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tkt-3c00ec5b52 |
Files: | files | file ages | folders |
SHA1: |
c69bdb83e2b187c8571aa53c0857dcb4 |
User & Date: | mistachkin 2014-05-27 01:50:48.459 |
Context
2014-05-27
| ||
02:09 | Merge updates from trunk. check-in: bf26c231c5 user: mistachkin tags: tkt-3c00ec5b52 | |
01:50 | Merge updates from trunk. check-in: c69bdb83e2 user: mistachkin tags: tkt-3c00ec5b52 | |
01:49 | Update master release archive manifest. check-in: 2ff24f92cf user: mistachkin tags: trunk | |
01:06 | Merge updates from trunk. check-in: 9e42ed829f user: mistachkin tags: tkt-3c00ec5b52 | |
Changes
Added Setup/set_Debug.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_Debug.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: REM SET MSBUILD_ARGS=/p:TargetFrameworkVersion=v3.5 /p:PlatformToolset=v100 |
Added Setup/set_DebugNativeOnly.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_DebugNativeOnly.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: REM SET MSBUILD_ARGS=/property:TargetFrameworkVersion=v3.5 |
Added Setup/set_DebugNativeOnly_ARMV7.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_DebugNativeOnly_ARMV7.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_DebugNativeOnly.bat" |
Added Setup/set_DebugNativeOnly_CEPC DevPlatform.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_DebugNativeOnly_CEPC DevPlatform.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_DebugNativeOnly.bat" |
Added Setup/set_DebugNativeOnly_Pocket PC 2003 (ARMV4).bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_DebugNativeOnly_Pocket PC 2003 (ARMV4).bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_DebugNativeOnly.bat" |
Added Setup/set_DebugNativeOnly_Win32.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_DebugNativeOnly_Win32.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_DebugNativeOnly.bat" |
Added Setup/set_DebugNativeOnly_x64.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_DebugNativeOnly_x64.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_DebugNativeOnly.bat" |
Added Setup/set_DebugNativeOnly_x64_2005.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x64_2005.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x64_2005.bat" |
Added Setup/set_DebugNativeOnly_x64_2008.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x64_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x64_2008.bat" |
Added Setup/set_DebugNativeOnly_x64_2010.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x64_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x64_2010.bat" |
Added Setup/set_DebugNativeOnly_x64_2012.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x64_2012.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x64_2012.bat" |
Added Setup/set_DebugNativeOnly_x64_2013.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x64_2013.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x64_2013.bat" |
Added Setup/set_DebugNativeOnly_x86_2005.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x86_2005.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x86_2005.bat" |
Added Setup/set_DebugNativeOnly_x86_2008.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x86_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x86_2008.bat" |
Added Setup/set_DebugNativeOnly_x86_2010.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x86_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x86_2010.bat" |
Added Setup/set_DebugNativeOnly_x86_2012.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x86_2012.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x86_2012.bat" |
Added Setup/set_DebugNativeOnly_x86_2013.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x86_2013.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x86_2013.bat" |
Added Setup/set_Debug_ARMV7.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_Debug_ARMV7.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_Debug.bat" |
Added Setup/set_Debug_CEPC DevPlatform.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_Debug_CEPC DevPlatform.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_Debug.bat" |
Added Setup/set_Debug_Pocket PC 2003 (ARMV4).bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_Debug_Pocket PC 2003 (ARMV4).bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_Debug.bat" |
Added Setup/set_Debug_Win32.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_Debug_Win32.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_Debug.bat" |
Added Setup/set_Debug_x64.bat.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @ECHO OFF :: :: set_Debug_x64.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: CALL "%~dp0\set_Debug.bat" |
Added Setup/set_Debug_x64_2005.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x64_2005.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x64_2005.bat" |
Added Setup/set_Debug_x64_2008.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x64_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x64_2008.bat" |
Added Setup/set_Debug_x64_2010.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x64_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x64_2010.bat" |
Added Setup/set_Debug_x64_2012.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x64_2012.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x64_2012.bat" |
Added Setup/set_Debug_x64_2013.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x64_2013.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x64_2013.bat" |
Added Setup/set_Debug_x86_2005.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x86_2005.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x86_2005.bat" |
Added Setup/set_Debug_x86_2008.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x86_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x86_2008.bat" |
Added Setup/set_Debug_x86_2010.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x86_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x86_2010.bat" |
Added Setup/set_Debug_x86_2012.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x86_2012.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x86_2012.bat" |
Added Setup/set_Debug_x86_2013.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x86_2013.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x86_2013.bat" |
Changes to Setup/verify.lst.
︙ | ︙ | |||
198 199 200 201 202 203 204 205 206 207 208 209 210 211 | Setup/release_static.bat Setup/set_2005.bat Setup/set_2008.bat Setup/set_2010.bat Setup/set_2012.bat Setup/set_2013.bat Setup/set_common.bat Setup/set_netFx20.bat Setup/set_netFx35.bat Setup/set_netFx40.bat Setup/set_netFx45.bat Setup/set_netFx451.bat Setup/set_Release.bat Setup/set_ReleaseNativeOnly.bat | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | Setup/release_static.bat Setup/set_2005.bat Setup/set_2008.bat Setup/set_2010.bat Setup/set_2012.bat Setup/set_2013.bat Setup/set_common.bat Setup/set_Debug.bat Setup/set_DebugNativeOnly.bat "Setup/set_DebugNativeOnly_CEPC DevPlatform.bat" "Setup/set_DebugNativeOnly_Pocket PC 2003 (ARMV4).bat" "Setup/set_DebugNativeOnly_ARMV7.bat" Setup/set_DebugNativeOnly_Win32.bat Setup/set_DebugNativeOnly_x64.bat Setup/set_DebugNativeOnly_x64_2005.bat Setup/set_DebugNativeOnly_x64_2008.bat Setup/set_DebugNativeOnly_x64_2010.bat Setup/set_DebugNativeOnly_x64_2012.bat Setup/set_DebugNativeOnly_x64_2013.bat Setup/set_DebugNativeOnly_x86_2005.bat Setup/set_DebugNativeOnly_x86_2008.bat Setup/set_DebugNativeOnly_x86_2010.bat Setup/set_DebugNativeOnly_x86_2012.bat Setup/set_DebugNativeOnly_x86_2013.bat "Setup/set_Debug_CEPC DevPlatform.bat" "Setup/set_Debug_Pocket PC 2003 (ARMV4).bat" "Setup/set_Debug_ARMV7.bat" Setup/set_Debug_Win32.bat Setup/set_Debug_x64.bat Setup/set_Debug_x64_2005.bat Setup/set_Debug_x64_2008.bat Setup/set_Debug_x64_2010.bat Setup/set_Debug_x64_2012.bat Setup/set_Debug_x64_2013.bat Setup/set_Debug_x86_2005.bat Setup/set_Debug_x86_2008.bat Setup/set_Debug_x86_2010.bat Setup/set_Debug_x86_2012.bat Setup/set_Debug_x86_2013.bat Setup/set_netFx20.bat Setup/set_netFx35.bat Setup/set_netFx40.bat Setup/set_netFx45.bat Setup/set_netFx451.bat Setup/set_Release.bat Setup/set_ReleaseNativeOnly.bat |
︙ | ︙ | |||
610 611 612 613 614 615 616 617 618 619 620 621 622 623 | Tests/tkt-2c630bffa7.eagle Tests/tkt-2ce0870fad.eagle Tests/tkt-3113734605.eagle Tests/tkt-343d392b51.eagle Tests/tkt-3567020edf.eagle Tests/tkt-393d954be0.eagle Tests/tkt-3aa50d8413.eagle Tests/tkt-448d663d11.eagle Tests/tkt-47f4bac575.eagle Tests/tkt-48a6b8e4ca.eagle Tests/tkt-4a791e70ab.eagle Tests/tkt-544dba0a2f.eagle Tests/tkt-56b42d99c1.eagle Tests/tkt-59edc1018b.eagle | > | 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 | Tests/tkt-2c630bffa7.eagle Tests/tkt-2ce0870fad.eagle Tests/tkt-3113734605.eagle Tests/tkt-343d392b51.eagle Tests/tkt-3567020edf.eagle Tests/tkt-393d954be0.eagle Tests/tkt-3aa50d8413.eagle Tests/tkt-3c00ec5b52.eagle Tests/tkt-448d663d11.eagle Tests/tkt-47f4bac575.eagle Tests/tkt-48a6b8e4ca.eagle Tests/tkt-4a791e70ab.eagle Tests/tkt-544dba0a2f.eagle Tests/tkt-56b42d99c1.eagle Tests/tkt-59edc1018b.eagle |
︙ | ︙ |