Skip to content

Commit

Permalink
Release 1.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emanueltilly committed Feb 20, 2021
1 parent f6404a0 commit 3722879
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 17 deletions.
54 changes: 41 additions & 13 deletions ShotLog/Form1.Designer.cs

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

16 changes: 16 additions & 0 deletions ShotLog/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
Expand Down Expand Up @@ -392,6 +393,11 @@ private void DeleteSelectedRow()

}

private void OpenInBrowser(string sourceUrl)
{
Process.Start(sourceUrl);
}

private void SaveProjectToolStripMenuItem_Click(object sender, EventArgs e)
{
SaveProject();
Expand Down Expand Up @@ -556,5 +562,15 @@ private void DeleteRowButton_Click(object sender, EventArgs e)
{
DeleteSelectedRow();
}

private void GithubButton_Click(object sender, EventArgs e)
{
OpenInBrowser("https://github.com/emanueltilly/shotlog");
}

private void AboutButton_Click(object sender, EventArgs e)
{
MessageBox.Show("ShotLog\n\nVersion 1.0.0.0\n\nLicensed under the Apache 2.0 license.", "ShotLog", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
4 changes: 2 additions & 2 deletions ShotLog/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ShotLog")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("Logging application for film and photograph with features added for broadcast and shootout applications.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ShotLog")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyCopyright("Apache 2.0")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
28 changes: 26 additions & 2 deletions ShotLog/ShotLog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -21,10 +22,15 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<SupportUrl>https://github.com/emanueltilly/shotlog</SupportUrl>
<ErrorReportUrl>https://github.com/emanueltilly/shotlog</ErrorReportUrl>
<TargetCulture>en</TargetCulture>
<ProductName>ShotLog</ProductName>
<ApplicationRevision>1</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand All @@ -49,6 +55,18 @@
<PropertyGroup>
<ApplicationIcon>Icons\clapper.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>2642788BC1941AEEFC465EC7F273641C87FC3FDE</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>ShotLog_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="CsvHelper, Version=23.0.0.0, Culture=neutral, PublicKeyToken=8c4959082be5c823, processorArchitecture=MSIL">
<HintPath>packages\CsvHelper.23.0.0\lib\net45\CsvHelper.dll</HintPath>
Expand Down Expand Up @@ -122,6 +140,7 @@
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<None Include="ShotLog_TemporaryKey.pfx" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
Expand All @@ -131,6 +150,11 @@
<Content Include="Icons\clapper.png" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
Expand Down

0 comments on commit 3722879

Please sign in to comment.