0
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 7 hours ago. based on code collected about 12 hours ago.
Apr 29, 2023 — Apr 29, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Added a /Verbose option to InstalerLinker. Bug: InstallerLinker can't take a relative path as output parameter with /Embed. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 46 by dblockdotorg @ 7/31/2008 10:45 PM More... about 15 years ago
Build break: missing components.xml. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 45 by dblockdotorg @ 7/31/2008 7:48 PM More... about 15 years ago
I've created InstallerLinker.exe (simple command-line wrapper) and InstallerLib.dll (now has all the installer configuration and component classes and linker functionality). Also updated Vestris.ResourceLib.dll to a newer version. Edited documentation with minor changes. Re-added unicows.dll for Windows 98 support. Renamed lowercase componentcollection into ComponentCollection to be consistent with other component classes. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 44 by dblockdotorg @ 7/9/2008 2:33 PM More... about 15 years ago
Changed version project from C++ makefile to C#. This removes an MSBuild warning and allows debugging InstallerEditor or dotNetInstaller without an annoying Visual Studio prompt of whether to rebuild the version project. Also got rid of redundant CPU configurations. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 43 by dblockdotorg @ 7/9/2008 2:11 PM More... about 15 years ago
Trivial change, flipped attributes and schema in xml to preserve old order. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 42 by dblockdotorg @ 7/6/2008 10:21 PM More... about 15 years ago
Tiny doc change, attribute misspelled and better examples. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 41 by dblockdotorg @ 7/6/2008 10:14 PM More... about 15 years ago
Added file and production version configuration attributes as well as free-formed string attributes using ResourceLib (http://www.codeproject.com/KB/library/ResourceLib.aspx). InstallerEditor can now write a specific binary version as well as additional information, including copyright or company name to the target setup binary. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 40 by dblockdotorg @ 7/6/2008 9:10 PM More... about 15 years ago
Added command_silent to the component of type "command" and cmdparameters_silent to the component of type "msi" that optionally replace command and cmdparameters parameters in a silent install. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 39 by dblockdotorg @ 6/29/2008 1:25 PM More... about 15 years ago
Added *log_file* and *log_enabled* options to the configuration and modified dotNetInstaller.exe command line to match /Log and /LogFile that force override the configuration options. More... about 15 years ago
Bug: cabpath not auto-deleted correctly and fails to extract files when cabpath doesn't exist. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 37 by dblockdotorg @ 6/25/2008 1:51 AM More... about 15 years ago
Added an MSBuild script that centrally versions, builds and packages dotNetInstaller into target/Debug|Release, including a sample. Added a combined Visual Studio solution, dni.sln with automatic versioning (reqiures MSBuild Community Tasks). The major and minor version number can be incremented in dni.proj, the build number is the latest SVN revision and the release number is a timestamp. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 36 by dblockdotorg @ 6/24/2008 3:16 PM More... about 15 years ago
Integrated MSBuild project and added a unique version control synchronized with SVN. Thanks to dB. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 35 by davideicardi @ 6/24/2008 7:21 AM More... about 15 years ago
Bug: registry lookup doesn't work for 64-bit OS. Bug: files are quoted which confuses FileExistsCustom. More... about 15 years ago
Bug: CABPATH not properly replaced, blanked out when used. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 33 by dblockdotorg @ 6/19/2008 1:54 PM More... about 15 years ago
Forgot reading of the processor_architecture_filter (Jason Biegel's patch from a couple of weeks ago). Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 32 by dblockdotorg @ 6/15/2008 10:59 PM More... about 15 years ago
Removed need for allowing unsafe code flag. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 31 by dblockdotorg @ 6/15/2008 7:43 PM More... about 15 years ago
Bug: wrong index, reading out of memory bounds. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 30 by dblockdotorg @ 6/15/2008 7:37 PM More... about 15 years ago
This patch has two new variables #*CABPATH* and #*GUID* and two new options *cab_path* and *cab_path_autodelete*. TEMPPATH is now back to being just TEMPPATH, so if you are CABing, you should be using CABBPATH instead of TEMPPATH to run dependencies. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 29 by dblockdotorg @ 6/12/2008 10:34 PM More... about 15 years ago
This will delete temp files after DNI is done. I also changed logging not to close/reopen the file every time and added /LogFile <filename> option. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 28 by dblockdotorg @ 6/12/2008 12:53 PM More... about 15 years ago
Added CABing, embedding of support files using Elm?'s CAB library. Added command line options -e (Embed) and -a (AppPath) for command line build. Added cab_dialog_message and cab_dialog_caption options. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 27 by dblockdotorg @ 6/8/2008 1:15 PM More... about 15 years ago
Added support for command line usage of InstallerEditor. Can now be used in build processes. A simplified version of Jason Biegel's patch 1955511. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 26 by dblockdotorg @ 6/5/2008 10:36 PM More... about 15 years ago
Added optional configuration-level and component-level OS filter matching system architecture (x86, x84, etc). See "processor_architecture_filter". This filter restricts the entire boostrapper from running on non-supported processors and enables installation of different dependencies on different processor architectures. Change by Jason Biegel (http://sourceforge.net/tracker/index.php?func=detail&aid=1953691&group_id=183471&atid=905376)+ fixes for 64-bit processor identification. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 25 by dblockdotorg @ 6/5/2008 10:32 PM More... about 15 years ago
Added "how to" information for creating self-extracting executables that will launch dotNetInstaller Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 24 by mesheets @ 5/28/2008 12:39 PM More... about 15 years ago
* Added support for silent installs; silent mode can be declared either in the configuration XML or from the command line * Added an "alwaysdownload" configuration XML attribute to the download element; if this value is false, the file will not be download if it already exists locally (this enables using the same configuration XML for both online and offline installs) * Modified configuration-level OS filter matching to be included as part of the configuration filter checks (previously, the program would exit if an unmatched configuration-level OS filter was encounter) * Updated configuration element processing so that all valid configuration blocks (matching both OS and LCID filters) will be executed (previously, only the first matching block was executed) * Added environment variable processing support to component commands where the component type is "cmd" or "msi" * Modified Complete_Command handling so that dotNetInstaller will wait for Command_Complete to finish executing * Added OS filter identifiers for Windows XP SP3, Windows Server 2003 SP1, Windows Server 2003 SP2, and Windows Vista SP1 Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 23 by mesheets @ 5/27/2008 6:40 PM More... about 15 years ago
Fixed minor error in the documentation Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 22 by davideicardi @ 3/17/2007 1:07 AM More... about 15 years ago
Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 21 by davideicardi @ 3/17/2007 12:43 AM More... about 15 years ago
Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 20 by davideicardi @ 3/17/2007 12:34 AM More... about 15 years ago
Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 19 by davideicardi @ 3/17/2007 12:28 AM More... about 15 years ago
Included .NET 2 components on the InstallerEditor templates (Thanks to Rennie Petersen) Added to subversion a "Samples" folder with the structure of the SupportFiles folder and 2 samples applications Removed the old "Component Wizard" command of the InstallerEditor, now replaced by the wizard that read from the template file (components.xml) Incremented version to 1.3.3.0 Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 18 by davideicardi @ 3/17/2007 12:22 AM More... about 15 years ago
Implemented feature request #1681519. Thanks to Rennie Petersen. Updated the docs. Copied from https://dotnetinstaller.svn.sourceforge.net/svnroot/dotnetinstaller/trunk/, rev. 17 by jentschi @ 3/15/2007 8:08 PM More... about 15 years ago