summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--win/C#/Functions/CLI.cs6
-rw-r--r--win/C#/Functions/Common.cs6
-rw-r--r--win/C#/Functions/QueryParser.cs6
-rw-r--r--win/C#/Functions/RssReader.cs6
-rw-r--r--win/C#/Installer/Installer.nsi8
-rw-r--r--win/C#/Parsing/AudioTrack.cs6
-rw-r--r--win/C#/Parsing/Chapter.cs6
-rw-r--r--win/C#/Parsing/DVD.cs6
-rw-r--r--win/C#/Parsing/Parser.cs6
-rw-r--r--win/C#/Parsing/Subtitle.cs6
-rw-r--r--win/C#/Parsing/Title.cs6
-rw-r--r--win/C#/Program.cs16
-rw-r--r--win/C#/Properties/AssemblyInfo.cs10
-rw-r--r--win/C#/Properties/Resources.Designer.cs8
-rw-r--r--win/C#/Properties/Settings.Designer.cs8
-rw-r--r--win/C#/frmAbout.Designer.cs6
-rw-r--r--win/C#/frmAbout.cs6
-rw-r--r--win/C#/frmDownload.Designer.cs6
-rw-r--r--win/C#/frmDownload.cs6
-rw-r--r--win/C#/frmDvdInfo.Designer.cs6
-rw-r--r--win/C#/frmDvdInfo.cs6
-rw-r--r--win/C#/frmMain.Designer.cs6
-rw-r--r--win/C#/frmMain.cs6
-rw-r--r--win/C#/frmOptions.Designer.cs6
-rw-r--r--win/C#/frmOptions.cs6
-rw-r--r--win/C#/frmQueue.Designer.cs6
-rw-r--r--win/C#/frmQueue.cs6
-rw-r--r--win/C#/frmReadDVD.Designer.cs6
-rw-r--r--win/C#/frmReadDVD.cs6
-rw-r--r--win/C#/frmSplashScreen.Designer.cs6
-rw-r--r--win/C#/frmSplashScreen.cs6
-rw-r--r--win/C#/frmUpdater.Designer.cs6
-rw-r--r--win/C#/frmUpdater.cs6
33 files changed, 213 insertions, 5 deletions
diff --git a/win/C#/Functions/CLI.cs b/win/C#/Functions/CLI.cs
index b0b79d32f..422f5a7ae 100644
--- a/win/C#/Functions/CLI.cs
+++ b/win/C#/Functions/CLI.cs
@@ -1,3 +1,9 @@
+/* CLI.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Threading;
diff --git a/win/C#/Functions/Common.cs b/win/C#/Functions/Common.cs
index 839044140..a0a7d72e9 100644
--- a/win/C#/Functions/Common.cs
+++ b/win/C#/Functions/Common.cs
@@ -1,3 +1,9 @@
+/* Common.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Text;
diff --git a/win/C#/Functions/QueryParser.cs b/win/C#/Functions/QueryParser.cs
index fc85fb7ab..9418aaf77 100644
--- a/win/C#/Functions/QueryParser.cs
+++ b/win/C#/Functions/QueryParser.cs
@@ -1,3 +1,9 @@
+/* QueryParser.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Text;
diff --git a/win/C#/Functions/RssReader.cs b/win/C#/Functions/RssReader.cs
index ce8dd568b..4a184de0d 100644
--- a/win/C#/Functions/RssReader.cs
+++ b/win/C#/Functions/RssReader.cs
@@ -1,3 +1,9 @@
+/* RssReader.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/Installer/Installer.nsi b/win/C#/Installer/Installer.nsi
index 411506504..84bb9bfa1 100644
--- a/win/C#/Installer/Installer.nsi
+++ b/win/C#/Installer/Installer.nsi
@@ -1,8 +1,14 @@
+/* Resources.Designer.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
; Script generated by the HM NIS Edit Script Wizard.
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "Handbrake"
-!define PRODUCT_VERSION "2.4.1"
+!define PRODUCT_VERSION "0.9.1"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\Handbrake.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
diff --git a/win/C#/Parsing/AudioTrack.cs b/win/C#/Parsing/AudioTrack.cs
index 2977a995c..22a5a1ba9 100644
--- a/win/C#/Parsing/AudioTrack.cs
+++ b/win/C#/Parsing/AudioTrack.cs
@@ -1,3 +1,9 @@
+/* AudioTrack.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/Chapter.cs b/win/C#/Parsing/Chapter.cs
index f2d10f51e..0131916c6 100644
--- a/win/C#/Parsing/Chapter.cs
+++ b/win/C#/Parsing/Chapter.cs
@@ -1,3 +1,9 @@
+/* Chapter.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/DVD.cs b/win/C#/Parsing/DVD.cs
index c06244ab3..c110c3e8e 100644
--- a/win/C#/Parsing/DVD.cs
+++ b/win/C#/Parsing/DVD.cs
@@ -1,3 +1,9 @@
+/* DVD.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Windows.Forms;
diff --git a/win/C#/Parsing/Parser.cs b/win/C#/Parsing/Parser.cs
index 7e00ddc2b..00dcedb84 100644
--- a/win/C#/Parsing/Parser.cs
+++ b/win/C#/Parsing/Parser.cs
@@ -1,3 +1,9 @@
+/* Parser.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/Subtitle.cs b/win/C#/Parsing/Subtitle.cs
index defcb5b0e..b6908e28a 100644
--- a/win/C#/Parsing/Subtitle.cs
+++ b/win/C#/Parsing/Subtitle.cs
@@ -1,3 +1,9 @@
+/* Subtitle.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs
index 0cfbff3f8..55babd20d 100644
--- a/win/C#/Parsing/Title.cs
+++ b/win/C#/Parsing/Title.cs
@@ -1,3 +1,9 @@
+/* Title.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Drawing;
diff --git a/win/C#/Program.cs b/win/C#/Program.cs
index e764a1c29..ab485c16f 100644
--- a/win/C#/Program.cs
+++ b/win/C#/Program.cs
@@ -1,3 +1,9 @@
+/* Program.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
@@ -24,6 +30,16 @@ namespace Handbrake
static void Main()
{
+ // Development Code Expiry.
+ // Remember to comment out on public release!!!
+ int year = DateTime.Now.Year;
+ int month = DateTime.Now.Month;
+ int day = DateTime.Now.Day;
+
+ if ((year > 2007) || (month > 10 )) { MessageBox.Show("Sorry, This development build of Handbrake has expired."); return; }
+
+
+
// Check the system meets the system requirements.
Boolean launch = true;
try
diff --git a/win/C#/Properties/AssemblyInfo.cs b/win/C#/Properties/AssemblyInfo.cs
index 47a916ce7..3485265df 100644
--- a/win/C#/Properties/AssemblyInfo.cs
+++ b/win/C#/Properties/AssemblyInfo.cs
@@ -1,4 +1,10 @@
-using System.Reflection;
+/* AssemblyInfo.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
+using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
@@ -7,7 +13,7 @@ using System.Resources;
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Handbrake")]
-[assembly: AssemblyDescription("DVD Like Source to MPEG-4 converter")]
+[assembly: AssemblyDescription("GPL'd DVD Like Source to MPEG-4 converter")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Handbrake")]
[assembly: AssemblyProduct("Handbrake")]
diff --git a/win/C#/Properties/Resources.Designer.cs b/win/C#/Properties/Resources.Designer.cs
index 94b7cc47e..0b717dcc4 100644
--- a/win/C#/Properties/Resources.Designer.cs
+++ b/win/C#/Properties/Resources.Designer.cs
@@ -1,4 +1,10 @@
-//------------------------------------------------------------------------------
+/* Resources.Designer.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
+//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1433
diff --git a/win/C#/Properties/Settings.Designer.cs b/win/C#/Properties/Settings.Designer.cs
index 607a238e5..a6190cca6 100644
--- a/win/C#/Properties/Settings.Designer.cs
+++ b/win/C#/Properties/Settings.Designer.cs
@@ -1,4 +1,10 @@
-//------------------------------------------------------------------------------
+/* Settings.Designer.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
+//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1433
diff --git a/win/C#/frmAbout.Designer.cs b/win/C#/frmAbout.Designer.cs
index 7e9ca1f3a..90240bc40 100644
--- a/win/C#/frmAbout.Designer.cs
+++ b/win/C#/frmAbout.Designer.cs
@@ -1,3 +1,9 @@
+/* frmAbout.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmAbout
diff --git a/win/C#/frmAbout.cs b/win/C#/frmAbout.cs
index ab1ed2656..b2df57ed4 100644
--- a/win/C#/frmAbout.cs
+++ b/win/C#/frmAbout.cs
@@ -1,3 +1,9 @@
+/* frmAbout.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmDownload.Designer.cs b/win/C#/frmDownload.Designer.cs
index 025582864..003c61514 100644
--- a/win/C#/frmDownload.Designer.cs
+++ b/win/C#/frmDownload.Designer.cs
@@ -1,3 +1,9 @@
+/* frmDownload.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmDownload
diff --git a/win/C#/frmDownload.cs b/win/C#/frmDownload.cs
index 4fdd10dc4..69c079ab9 100644
--- a/win/C#/frmDownload.cs
+++ b/win/C#/frmDownload.cs
@@ -1,3 +1,9 @@
+/* frmDownload.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmDvdInfo.Designer.cs b/win/C#/frmDvdInfo.Designer.cs
index 88f5cf81b..e9c3bea89 100644
--- a/win/C#/frmDvdInfo.Designer.cs
+++ b/win/C#/frmDvdInfo.Designer.cs
@@ -1,3 +1,9 @@
+/* frmDvdInfo.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmDvdInfo
diff --git a/win/C#/frmDvdInfo.cs b/win/C#/frmDvdInfo.cs
index ee3a4e5c0..60150419b 100644
--- a/win/C#/frmDvdInfo.cs
+++ b/win/C#/frmDvdInfo.cs
@@ -1,3 +1,9 @@
+/* frmDvdInfo.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmMain.Designer.cs b/win/C#/frmMain.Designer.cs
index a4762adad..9a4721b8d 100644
--- a/win/C#/frmMain.Designer.cs
+++ b/win/C#/frmMain.Designer.cs
@@ -1,3 +1,9 @@
+/* frmMain.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmMain
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 85b428b05..c5c2fdf14 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -1,3 +1,9 @@
+/* frmMain.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
diff --git a/win/C#/frmOptions.Designer.cs b/win/C#/frmOptions.Designer.cs
index b5eddd034..2268c95f8 100644
--- a/win/C#/frmOptions.Designer.cs
+++ b/win/C#/frmOptions.Designer.cs
@@ -1,3 +1,9 @@
+/* frmOptions.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmOptions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index 42e5b045e..fe681bdc1 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -1,3 +1,9 @@
+/* frmOptions.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmQueue.Designer.cs b/win/C#/frmQueue.Designer.cs
index aa0cec412..dfc5cea5e 100644
--- a/win/C#/frmQueue.Designer.cs
+++ b/win/C#/frmQueue.Designer.cs
@@ -1,3 +1,9 @@
+/* frmQueue.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmQueue
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs
index deb097227..61e07d349 100644
--- a/win/C#/frmQueue.cs
+++ b/win/C#/frmQueue.cs
@@ -1,3 +1,9 @@
+/* frmQueue.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmReadDVD.Designer.cs b/win/C#/frmReadDVD.Designer.cs
index 92b545943..903d7fc5b 100644
--- a/win/C#/frmReadDVD.Designer.cs
+++ b/win/C#/frmReadDVD.Designer.cs
@@ -1,3 +1,9 @@
+/* frmReadDVD.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmReadDVD
diff --git a/win/C#/frmReadDVD.cs b/win/C#/frmReadDVD.cs
index 6ab820507..d6da8fe43 100644
--- a/win/C#/frmReadDVD.cs
+++ b/win/C#/frmReadDVD.cs
@@ -1,3 +1,9 @@
+/* frmReadDVD.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmSplashScreen.Designer.cs b/win/C#/frmSplashScreen.Designer.cs
index d8231703c..caf36fcc9 100644
--- a/win/C#/frmSplashScreen.Designer.cs
+++ b/win/C#/frmSplashScreen.Designer.cs
@@ -1,3 +1,9 @@
+/* frmSplashScreen.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmSplashScreen
diff --git a/win/C#/frmSplashScreen.cs b/win/C#/frmSplashScreen.cs
index f29cfde09..a60703b34 100644
--- a/win/C#/frmSplashScreen.cs
+++ b/win/C#/frmSplashScreen.cs
@@ -1,3 +1,9 @@
+/* frmSplashScreen.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.ComponentModel;
diff --git a/win/C#/frmUpdater.Designer.cs b/win/C#/frmUpdater.Designer.cs
index 8897f5bda..a8ddbac5d 100644
--- a/win/C#/frmUpdater.Designer.cs
+++ b/win/C#/frmUpdater.Designer.cs
@@ -1,3 +1,9 @@
+/* frmUpdater.Designer.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
namespace Handbrake
{
partial class frmUpdater
diff --git a/win/C#/frmUpdater.cs b/win/C#/frmUpdater.cs
index 05598b3c0..9180f6dc3 100644
--- a/win/C#/frmUpdater.cs
+++ b/win/C#/frmUpdater.cs
@@ -1,3 +1,9 @@
+/* frmUpdater.cs $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Windows.Forms;
using System.IO;