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 | preRelease |
Files: | files | file ages | folders |
SHA1: |
e670692d906e3462b84f21c2b4c4b4a4 |
User & Date: | mistachkin 2015-07-31 01:16:50.594 |
Context
2015-08-18
| ||
19:24 | Merge updates from trunk. check-in: 24294cb274 user: mistachkin tags: preRelease | |
2015-07-31
| ||
01:16 | Merge updates from trunk. check-in: e670692d90 user: mistachkin tags: preRelease | |
2015-07-30
| ||
18:30 | Update release procedures wiki page. check-in: fc9062d656 user: mistachkin tags: trunk | |
18:06 | Bump versions and zero out file hashes and sizes. check-in: 0aff30f776 user: mistachkin tags: preRelease | |
Changes
Changes to Setup/updateFileInfo.tcl.
︙ | ︙ | |||
97 98 99 100 101 102 103 104 105 106 107 108 109 110 | set pattern2 {<a\ href=".*?/package/.*?/\d+\.\d+\.\d+\.\d+">(.*?)</a>.*?\((\d+?\.\d+?)\ MiB\).*?sha1: ([0-9A-F]{40})} set pattern3 {href="/downloads/(.*?)"} set pattern4 {\(sha1: ([0-9A-F]{40})\)} # # NOTE: Grab all the data from the file to be updated. # set data [readFile $updateFileName] # | > | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | set pattern2 {<a\ href=".*?/package/.*?/\d+\.\d+\.\d+\.\d+">(.*?)</a>.*?\((\d+?\.\d+?)\ MiB\).*?sha1: ([0-9A-F]{40})} set pattern3 {href="/downloads/(.*?)"} set pattern4 {\(sha1: ([0-9A-F]{40})\)} set pattern5 {\((\d+?\.\d+?) MiB\)} # # NOTE: Grab all the data from the file to be updated. # set data [readFile $updateFileName] # |
︙ | ︙ | |||
184 185 186 187 188 189 190 | } # # NOTE: Attempt to verify that each file name now has the correct SHA1 hash # associated with it on the page. # foreach {dummy3 fileName} [regexp -all -inline -nocase -- $pattern3 $data] \ | | > > > > > > > > > | 185 186 187 188 189 190 191 192 193 194 195 196 197 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 | } # # NOTE: Attempt to verify that each file name now has the correct SHA1 hash # associated with it on the page. # foreach {dummy3 fileName} [regexp -all -inline -nocase -- $pattern3 $data] \ {dummy4 fileHash} [regexp -all -inline -nocase -- $pattern4 $data] \ {dummy5 fileSize} [regexp -all -inline -nocase -- $pattern5 $data] { # # NOTE: Get the fully qualified file name based on the configured # directory. # set fullFileName [file join $outputDirectory [file tail $fileName]] # # NOTE: Make sure the file hash from the [modified] data matches the # calculated hash for the file. If not, fail. # set fullFileHash [getFileHash $fullFileName] if {$fileHash ne $fullFileHash} then { puts stdout "ERROR: SHA1 hash mismatch for\ file \"$fullFileName\", have \"$fileHash\" (from data),\ need \"$fullFileHash\" (calculated)." } set fullFileSize [getFileSize $fullFileName] if {$fileSize ne $fullFileSize} then { puts stdout "ERROR: Byte size mismatch for\ file \"$fullFileName\", have \"$fileSize\" (from data),\ need \"$fullFileSize\" (calculated)." } } # # NOTE: Write the [modified] data to the file to be updated. # if {$count > 0} then { writeFile $updateFileName $data } else { puts stdout "WARNING: No changes, update of \"$updateFileName\" skipped." } |
Changes to www/downloads.wiki.
︙ | ︙ | |||
2401 2402 2403 2404 2405 2406 2407 | </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a href="http://www.sourceforge.net/projects/sqlite-dotnet2/files/SQLite%20for%20ADO.NET%202.0/1.0.66.0/SQLite-1.0.66.0-setup.exe/download">SQLite-1.0.66.0-setup.exe</a> | < < | 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 | </td> </tr> <tr> <td width="10"> </td> <td width="30%" valign="top" align="right"> <a href="http://www.sourceforge.net/projects/sqlite-dotnet2/files/SQLite%20for%20ADO.NET%202.0/1.0.66.0/SQLite-1.0.66.0-setup.exe/download">SQLite-1.0.66.0-setup.exe</a> </td> <td width="5"></td> <td valign="top"> Legacy versions, as well as the original support forums, may still be found at <a href="http://sqlite.phxsoftware.com/">http://sqlite.phxsoftware.com/</a>, though there have been no updates to this version since April of 2010. |
︙ | ︙ |
Changes to www/release.wiki.
︙ | ︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | Enter the following commands to build all the x86 and x64 binaries: <br /> <br /> <b>SET BUILD_DEBUG=1</b> <br /> <b>build_all.bat</b> </li> </ol> <a name="testBinaries"></a> <h2>Test x86 & x64 Binaries</h2> <ol> <li> | > > > > > | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | Enter the following commands to build all the x86 and x64 binaries: <br /> <br /> <b>SET BUILD_DEBUG=1</b> <br /> <b>build_all.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="testBinaries"></a> <h2>Test x86 & x64 Binaries</h2> <ol> <li> |
︙ | ︙ | |||
52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <br /> <br /> <b>SET TEST_DEBUG=1</b> <br /> <b>test_all.bat</b> </li> <li> Locate a machine with a processor architecture different from the one tested in the previous step and then repeat all the previous steps. </li> </ol> <a name="buildCeBinaries"></a> | > > > > > | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | <br /> <br /> <b>SET TEST_DEBUG=1</b> <br /> <b>test_all.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> <li> Locate a machine with a processor architecture different from the one tested in the previous step and then repeat all the previous steps. </li> </ol> <a name="buildCeBinaries"></a> |
︙ | ︙ | |||
91 92 93 94 95 96 97 98 99 100 101 102 103 104 | <b>build_ce_2013.bat</b> <br /> <br /> <i>This assumes that Visual Studio 2012, "<b>Professional</b>" edition or "better" and the Windows Embedded Compact 2013 Toolkit are installed.</i> </li> </ol> <a name="testCeBinariesAutomated"></a> <h2>Test Windows CE Binaries via Automation</h2> <ol> <li> | > > > > > | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | <b>build_ce_2013.bat</b> <br /> <br /> <i>This assumes that Visual Studio 2012, "<b>Professional</b>" edition or "better" and the Windows Embedded Compact 2013 Toolkit are installed.</i> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="testCeBinariesAutomated"></a> <h2>Test Windows CE Binaries via Automation</h2> <ol> <li> |
︙ | ︙ | |||
114 115 116 117 118 119 120 121 122 123 124 125 126 127 | <li> Enter the following command to test all the binaries available for Windows CE: <br /> <br /> <b>test_ce_200x.bat</b> </li> </ol> <a name="testCeBinariesManually"></a> <h2>Test Windows CE Binaries Manually</h2> <ol> <li> | > > > > > | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | <li> Enter the following command to test all the binaries available for Windows CE: <br /> <br /> <b>test_ce_200x.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="testCeBinariesManually"></a> <h2>Test Windows CE Binaries Manually</h2> <ol> <li> |
︙ | ︙ | |||
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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | <br /> <i>This assumes that [https://www.activestate.com/activetcl | ActiveTcl] version 8.4 or later, the [https://www.microsoft.com/download/en/details.aspx?displaylang=en&id=21138 | HTML Help Workshop], and [http://ndoc3.sourceforge.net/ | NDoc3] have all been installed using the default settings.</i> </li> </ol> <a name="buildSetupPackages"></a> <h2>Build Setup Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the setup packages for x86 and x64: <br /> <br /> <b>SET BAKE_DEBUG=1</b> <br /> <b>bake_all.bat</b> </li> </ol> <a name="buildBinaryPackages"></a> <h2>Build x86 & x64 Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the binary release packages for x86 and x64: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_all.bat</b> </li> </ol> <a name="buildStaticBinaryPackages"></a> <h2>Build x86 & x64 Static Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the static binary release packages for x86 and x64: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_static.bat</b> </li> </ol> <a name="buildCeBinaryPackages"></a> <h2>Build Windows CE Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> | > > > > > > > > > > > > > > > > > > > > | 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | <br /> <i>This assumes that [https://www.activestate.com/activetcl | ActiveTcl] version 8.4 or later, the [https://www.microsoft.com/download/en/details.aspx?displaylang=en&id=21138 | HTML Help Workshop], and [http://ndoc3.sourceforge.net/ | NDoc3] have all been installed using the default settings.</i> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildSetupPackages"></a> <h2>Build Setup Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the setup packages for x86 and x64: <br /> <br /> <b>SET BAKE_DEBUG=1</b> <br /> <b>bake_all.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildBinaryPackages"></a> <h2>Build x86 & x64 Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the binary release packages for x86 and x64: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_all.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildStaticBinaryPackages"></a> <h2>Build x86 & x64 Static Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the static binary release packages for x86 and x64: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_static.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildCeBinaryPackages"></a> <h2>Build Windows CE Binary Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> |
︙ | ︙ | |||
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | Windows Embedded Compact 2013: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_ce_2013.bat</b> </li> </ol> <a name="buildSourcePackages"></a> <h2>Build Source Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the source release packages: <br /> <br /> <b>archive.bat</b> </li> </ol> <a name="verifyAllPackages"></a> <h2>Verify All Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> | > > > > > > > > > > | 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 | Windows Embedded Compact 2013: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_ce_2013.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildSourcePackages"></a> <h2>Build Source Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build all the source release packages: <br /> <br /> <b>archive.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="verifyAllPackages"></a> <h2>Verify All Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> |
︙ | ︙ | |||
338 339 340 341 342 343 344 345 346 347 348 349 350 351 | <i>This assumes that the <a href="https://www.fossil-scm.org/">Fossil</a>, <a href="https://sourceforge.net/projects/innounp/">Inno Setup Unpacker</a>, <a href="http://www.rarlab.com/">UnRAR</a>, and <a href="http://www.info-zip.org/">UnZip</a> binaries are available in the locations specified via the "FossilTool", "InnoUnpackTool", "UnRARTool", and "UnZipTool" environment variables, respectively.</i> <br /> <br /> <i>If errors are generated, the file "<root>\Setup\data\verify.lst" may need to be updated to account for the files that have been added and/or removed from the release archives since the previous release.</i> </li> | > > > > > | 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | <i>This assumes that the <a href="https://www.fossil-scm.org/">Fossil</a>, <a href="https://sourceforge.net/projects/innounp/">Inno Setup Unpacker</a>, <a href="http://www.rarlab.com/">UnRAR</a>, and <a href="http://www.info-zip.org/">UnZip</a> binaries are available in the locations specified via the "FossilTool", "InnoUnpackTool", "UnRARTool", and "UnZipTool" environment variables, respectively.</i> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. <br /> <br /> <i>If errors are generated, the file "<root>\Setup\data\verify.lst" may need to be updated to account for the files that have been added and/or removed from the release archives since the previous release.</i> </li> |
︙ | ︙ | |||
366 367 368 369 370 371 372 373 374 375 376 377 378 379 | <b>build_nuget.bat</b> <br /> <br /> <i>This assumes that the NuGet binary is available somewhere along the [https://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH].<br />Please refer to [https://docs.nuget.org/ | NuGet Documentation] for further details.</i> </li> </ol> <a name="updateDownloadsPage"></a> <h2>Update Downloads Page</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> | > > > > > | 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 | <b>build_nuget.bat</b> <br /> <br /> <i>This assumes that the NuGet binary is available somewhere along the [https://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH].<br />Please refer to [https://docs.nuget.org/ | NuGet Documentation] for further details.</i> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="updateDownloadsPage"></a> <h2>Update Downloads Page</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> |
︙ | ︙ | |||
396 397 398 399 400 401 402 403 404 405 406 407 408 409 | <br /> <i>This assumes that [https://www.activestate.com/activetcl | ActiveTcl] version 8.4 or later has been installed using the default settings and that the Fossil binary is available somewhere along the [https://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH] (i.e. for calculating the SHA1 hashes).</i> </li> </ol> <a name="publishRelease"></a> <h2>Publish Release</h2> <ol> <li>Upload all the release packages to the web site.</li> | > > > > > | 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | <br /> <i>This assumes that [https://www.activestate.com/activetcl | ActiveTcl] version 8.4 or later has been installed using the default settings and that the Fossil binary is available somewhere along the [https://en.wikipedia.org/wiki/PATH_%28variable%29 | PATH] (i.e. for calculating the SHA1 hashes).</i> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="publishRelease"></a> <h2>Publish Release</h2> <ol> <li>Upload all the release packages to the web site.</li> |
︙ | ︙ |