Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix for issue [e058ce156e]. We should block x64 installs on x86 and we should install native only if the setup package itself is native. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7a61aabf34e57350b864a4932f1de4b4 |
User & Date: | mistachkin 2011-05-20 07:38:50.748 |
References
2011-05-24
| ||
01:13 | • Fixed ticket [e058ce156e]: Installers should use proper program files directory plus 2 other changes artifact: 4650e29249 user: shane | |
2011-05-20
| ||
07:39 | • Ticket [e058ce156e]: 1 change artifact: 12c4a71f47 user: mistachkin | |
Context
2011-05-23
| ||
04:07 | Updated method for flagging test cases that are SQLite specific. check-in: 9525e5cf45 user: shaneh tags: trunk | |
2011-05-20
| ||
07:38 | Fix for issue [e058ce156e]. We should block x64 installs on x86 and we should install native only if the setup package itself is native. check-in: 7a61aabf34 user: mistachkin tags: trunk | |
2011-05-02
| ||
03:34 | Update downloads and news pages for v1.0.72.0 (3.7.6+). check-in: 8bc5b708b0 user: shaneh tags: trunk, release | |
Changes
Changes to Setup/SQLite.iss.
︙ | ︙ | |||
19 20 21 22 23 24 25 | #define AVF3b Copy(AVF3a, Pos(".", AVF3a) - 2, 2) #define AVF4a "00" + Copy(AVF3a, Pos(".", AVF3a) + 1) #define AVF4b Copy(AVF4a, Pos(".", AVF4a) - 2, 2) #define AppVersionFile AVF1b + AVF2b + AVF3b + AVF4b [Setup] AllowNoIcons=true | > > > | > > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #define AVF3b Copy(AVF3a, Pos(".", AVF3a) - 2, 2) #define AVF4a "00" + Copy(AVF3a, Pos(".", AVF3a) + 1) #define AVF4b Copy(AVF4a, Pos(".", AVF4a) - 2, 2) #define AppVersionFile AVF1b + AVF2b + AVF3b + AVF4b [Setup] AllowNoIcons=true #if AppProcessor != "x86" ArchitecturesAllowed={#AppProcessor} ArchitecturesInstallIn64BitMode={#AppProcessor} #endif AlwaysShowComponentsList=false AppCopyright=Public Domain AppID={#AppId} AppName=System.Data.SQLite AppPublisher=System.Data.SQLite Team AppPublisherURL={#AppURL} AppSupportURL={#AppURL} |
︙ | ︙ |
Changes to Setup/set_ReleaseNativeOnly.bat.
︙ | ︙ | |||
15 16 17 18 19 20 21 | REM using the .NET Framework 4.0. REM REM SET NETFX35ONLY=1 SET MSBUILD_ARGS=/property:TargetFrameworkVersion=v3.5 SET YEAR=2010 SET YEARS=%YEAR% | | | 15 16 17 18 19 20 21 22 | REM using the .NET Framework 4.0. REM REM SET NETFX35ONLY=1 SET MSBUILD_ARGS=/property:TargetFrameworkVersion=v3.5 SET YEAR=2010 SET YEARS=%YEAR% REM ECHO WARNING: Forcing the use of the .NET Framework 3.5... |