Skip to content
This repository has been archived by the owner on Oct 25, 2020. It is now read-only.

Commit

Permalink
1.0 release (cleaned up)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Gordeev committed Oct 25, 2020
0 parents commit f6e87db
Show file tree
Hide file tree
Showing 43 changed files with 5,447 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
################################################################################
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
################################################################################

/.vs/MotionDecoder/v16/Server/sqlite3
/.vs
/MovementDecoder/bin/Debug
/MovementDecoder/obj
/packages
/MotionDecoder/bin/Debug
/MotionDecoder/obj
/MotionDecoder/bin/Release
Binary file not shown.
Binary file added Dependencies/Microsoft.DirectX.dll
Binary file not shown.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions MotionDecoder.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29509.3
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MotionDecoder", "MotionDecoder\MotionDecoder.csproj", "{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6D82605-6E5F-4FD6-AF07-CD4EC9DE5DC9}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DCDB3D43-4794-40E6-8A3B-788F864511C4}
EndGlobalSection
EndGlobal
54 changes: 54 additions & 0 deletions MotionDecoder/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="MotionDecoder.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="MovementDecoder.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
</startup>
<userSettings>
<MotionDecoder.Properties.Settings>
<setting name="filters" serializeAs="String">
<value>All video files|*.avi;*.mkv;*.mov;*.mp4;*.wmv;*.3gp; *.flv; *.,mpeg; *.ts; *.m2ts; *.rm; *.rmvb; *.ogm; *.webm|AVI|*.avi|MKV|*.mkv|MOV|*.mov|MP4|*.mp4|WMV|*.wmv|FLV|*.flv|MPEG|*.,mpeg|TS|*.ts|M2TS|*.m2ts|RM|*.rm|MVB|*.rmvb|OGM|*.ogm|WebM|*.webm|All files|*.*</value>
</setting>
<setting name="threshold" serializeAs="String">
<value>60</value>
</setting>
<setting name="duration" serializeAs="String">
<value>60</value>
</setting>
<setting name="volume" serializeAs="String">
<value>-1000</value>
</setting>
<setting name="showMessage" serializeAs="String">
<value>True</value>
</setting>
</MotionDecoder.Properties.Settings>
<MovementDecoder.Properties.Settings>
<setting name="filters" serializeAs="String">
<value>All video files|*.avi;*.mkv;*.mov;*.mp4;*.wmv;*.3gp; *.flv; *.,mpeg; *.ts; *.m2ts; *.rm; *.rmvb; *.ogm; *.webm|AVI|*.avi|MKV|*.mkv|MOV|*.mov|MP4|*.mp4|WMV|*.wmv|FLV|*.flv|MPEG|*.,mpeg|TS|*.ts|M2TS|*.m2ts|RM|*.rm|MVB|*.rmvb|OGM|*.ogm|WebM|*.webm|All files|*.*</value>
</setting>
<setting name="threshold" serializeAs="String">
<value>60</value>
</setting>
<setting name="duration" serializeAs="String">
<value>60</value>
</setting>
<setting name="volume" serializeAs="String">
<value>-1000</value>
</setting>
<setting name="showMessage" serializeAs="String">
<value>True</value>
</setting>
<setting name="videoPlayerSize" serializeAs="String">
<value>0, 0</value>
</setting>
<setting name="darkTheme" serializeAs="String">
<value>False</value>
</setting>
</MovementDecoder.Properties.Settings>
</userSettings>
</configuration>
97 changes: 97 additions & 0 deletions MotionDecoder/Forms/About/About.Designer.cs

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

14 changes: 14 additions & 0 deletions MotionDecoder/Forms/About/About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Diagnostics;
using System.Windows.Forms;

namespace MotionDecoder.Forms
{
public partial class About : Form
{
public About() =>
InitializeComponent();

void githubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) =>
Process.Start(githubLink.Text);
}
}
Loading

0 comments on commit f6e87db

Please sign in to comment.