Skip to content

Commit

Permalink
Changes in publishing settings
Browse files Browse the repository at this point in the history
  • Loading branch information
NickeManarin committed Dec 21, 2021
1 parent cb4681f commit 6563151
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 10 deletions.
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,16 @@
/GifRecorder.v12.suo
/.vs
/GifRecorder
/ScreenToGif/ScreenToGif.csproj.user
/GifRecorder.v12-Notebook-Nicke.suo
/GifRecorder.suo
/GifRecorder.sln.DotSettings.user
/GifRecorder.sdf
/GifRecorder.sln.DotSettings
ScreenToGif/Util/Secret.cs
/ScreenToGif/Util/Secret.cs

/Other/Translator/Translator.csproj.user
/ScreenToGif.UWP
/packages
obj
bin
/ScreenToGif.backup
/log.txt
/ScreenToGif/Properties/PublishProfiles/Publish as x86.pubxml.user
/ScreenToGif/Properties/PublishProfiles/Publish as x64.pubxml.user
/ScreenToGif/Properties/PublishProfiles/Publish as ARM.pubxml.user
*.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>ARM64</Platform>
<PublishDir>bin\Publish\Contained\arm64</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>False</PublishSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>x64</Platform>
<PublishDir>bin\Publish\Contained\x64</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>False</PublishSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>x86</Platform>
<PublishDir>bin\Publish\Contained\x86</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>False</PublishSingleFile>
<PublishReadyToRun>True</PublishReadyToRun>
</PropertyGroup>
</Project>
6 changes: 3 additions & 3 deletions ScreenToGif/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ _VS 2022 and .NET 6 or newer required._
## What's new? (Version 2.35)

• Migration to .NET 6 and project restructuring.
• Smooth loop: Creates a smooth loop by analyzing frames, comparing with the start one.
• Smooth loop: Creates a smooth loop by analyzing frames, which is done by comparing to the first/starting one.

### Fixed:

♦ Reduced the change for a crash when stopping the recording when using DirectX.
♦ Discarding when in manual or interaction capture modes, but cancelling in the recorder was creating a block scenario.
♦ Reduced the chance for a crash when stopping a recording (with DirectX).
♦ Discarding when in manual or interaction capture modes could cause a block scenario.

### Known Bugs:

Expand Down

0 comments on commit 6563151

Please sign in to comment.