Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
ennerperez committed Dec 26, 2017
2 parents 9315828 + afcf906 commit 443ae43
Show file tree
Hide file tree
Showing 31 changed files with 1,675 additions and 463 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.9]
### Changed
- Code enhancements

### Fixed
- Update checker
- Minors bugs

### Added
- Gallery folder viewer

## [1.0.8]
### Changed
- Camera tile view fix
Expand Down
23 changes: 18 additions & 5 deletions CameraToolkit/CameraToolkit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -50,7 +50,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>App.ico</ApplicationIcon>
Expand All @@ -71,8 +71,8 @@
<HintPath>..\packages\AForge.Video.DirectShow.2.2.5\lib\AForge.Video.DirectShow.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Octokit, Version=0.28.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Octokit.0.28.0\lib\net45\Octokit.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -95,6 +95,12 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Controls\Gallery.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\Gallery.Designer.cs">
<DependentUpon>Gallery.cs</DependentUpon>
</Compile>
<Compile Include="Forms\FormAbout.cs">
<SubType>Form</SubType>
</Compile>
Expand All @@ -119,13 +125,20 @@
<DependentUpon>Messages.resx</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Toolkit.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Include="References.cs" />
<Compile Include="References\System.cs" />
<EmbeddedResource Include="Controls\Gallery.es.resx">
<DependentUpon>Gallery.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Controls\Gallery.resx">
<DependentUpon>Gallery.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Forms\FormAbout.es.resx">
<DependentUpon>FormAbout.cs</DependentUpon>
</EmbeddedResource>
Expand Down
206 changes: 206 additions & 0 deletions CameraToolkit/Controls/Gallery.Designer.cs

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

Loading

0 comments on commit 443ae43

Please sign in to comment.