diff options
author | sr55 <[email protected]> | 2007-10-04 22:33:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-10-04 22:33:58 +0000 |
commit | 1ef4964589e409da57703fe68a202993b60315ac (patch) | |
tree | d248b9463bb662f92635dc665469730a3039de46 /win/C#/Program.cs | |
parent | e20b60acb5d0fd0eec5c28b631c0f61286ee5961 (diff) |
WinGui:
-Code to expire development builds
-New show/hide options for the new preset system.
-Few bug fixes.
-Updated Installer
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1000 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Program.cs')
-rw-r--r-- | win/C#/Program.cs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/win/C#/Program.cs b/win/C#/Program.cs index 87fad342d..07c99e4ce 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -23,15 +23,9 @@ namespace Handbrake [STAThread]
static void Main()
{
-
- /* Some Code to allow development builds to expire.
- *
- * long start = DateTime.Now.Ticks;
- * 633286573227430160 today was long end = DateTime.Now.AddDays(31).Ticks;
- * if (start > 633286573227430160) { MessageBox.Show("Sorry, this Handbrake has expired"); return; }
- *
- */
-
+ // 633265950858281250 = 16:52 28-Sep-07 //864000000000 nanoseconds per day
+ //long start = DateTime.Now.Ticks;
+ //if (start > 633274593039531250) {MessageBox.Show("Sorry, This development build of Handbrake has expired."); return; } // Will Expire Oct 8th
// Check the system meets the system requirements.
Boolean launch = true;
|