Skip to content

Commit

Permalink
Add author's emails, add a few copyright noticies
Browse files Browse the repository at this point in the history
  • Loading branch information
philc committed Oct 24, 2006
1 parent 6bdbfb8 commit 1e6fc4b
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Changelog.txt
Expand Up @@ -10,7 +10,7 @@
- Removing preference for "installation root" until we can figure out what to do with it
- UI cleanup for the add application dialog. Now it's sizable
- UI for the preferences
- Preferences backend (Zac Ruiz)
- Preferences backend (App.config is extracted from an embedded resource to the user's applic. config directory) (Zac Ruiz)
- close the XML file after opening it instead of leaving it open (Craig Reynolds)
- Add comment field to application items (Craig Reynolds)
- Add tooltip for comment fields (Craig Reynolds)
Expand All @@ -20,4 +20,5 @@
- Added a link for opening an application list
- Changed "Install All" to "Install Checked"
- Can't open a new applist if something is downloading or installing
- Left click to toggle checked
- Integration of unzipping library, which is embedded as a resource and called via reflection, because we don't want to add another file to the InstallPad distribution
- Left click anywhere on the item to toggle checked (this is disabled by default, because it is not fast, and clicks on the labels aren't interpretted as clicks on the application item
2 changes: 1 addition & 1 deletion src/InstallPad.cs
Expand Up @@ -553,7 +553,7 @@ private void aboutLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
AboutDialog about = new AboutDialog();
about.ProjectName = "InstallPad";
about.ProjectUrl = "http://www.installpad.com";
about.WrittenBy = new string[] { "Phil Crosby", "Zac Ruiz" };
about.WrittenBy = new string[] { "Phil Crosby (phil.crosby@gmail.com)", "Zac Ruiz (zac.ruiz@gmail.com)" };
about.Copyright = "2006 Phil Crosby";
about.Version = "0.4";
about.Image = global::InstallPad.Properties.Resources.about_logo;
Expand Down
11 changes: 11 additions & 0 deletions src/PreferencesDialog.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/PreferencesDialog.cs
@@ -1,3 +1,14 @@
//
// Author: Phil Crosby
//

// Copyright (C) 2006 Phil Crosby
// Permission is granted to use, copy, modify, and merge copies
// of this software for personal use. Permission is not granted
// to use or change this software for commercial use or commercial
// redistribution. Permission is not granted to use, modify or
// distribute this software internally within a corporation.

using System;
using System.Collections.Generic;
using System.ComponentModel;
Expand Down

0 comments on commit 1e6fc4b

Please sign in to comment.