Skip to content

Commit

Permalink
v0.8.1.115 release
Browse files Browse the repository at this point in the history
v0.8.1.115
- [x] Improved usability (#6)
- [x] Added ability to export synchronized file with `FFmpeg` (#7)
- [x] Fixed multiple instances run (#11)
- [x] Fixed progress display (while matching files) (#17)
  • Loading branch information
osmanovv committed Aug 9, 2020
1 parent 7aa82d0 commit 0d4d8ef
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
9 changes: 7 additions & 2 deletions auxmic.ui/About.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Window x:Class="auxmic.ui.About"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="About auxmic" Height="200" Width="300" ResizeMode="NoResize" WindowStyle="ToolWindow" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
Title="About auxmic" Height="220" Width="320" ResizeMode="NoResize" WindowStyle="ToolWindow" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
<Window.Resources>

<Style x:Key="main_window">
Expand Down Expand Up @@ -78,7 +78,12 @@
[email protected]
</Hyperlink>
</TextBlock>
<!--<Separator DockPanel.Dock="Top"/>-->
<TextBlock DockPanel.Dock="Top" Padding="1" Margin="1">
<Hyperlink Foreground="#4ca1e4" NavigateUri="https://github.com/osmanovv/auxmic" RequestNavigate="Hyperlink_RequestNavigate">
GitHub
</Hyperlink>
</TextBlock>
<Separator DockPanel.Dock="Top"/>
</DockPanel>
</Border>

Expand Down
6 changes: 3 additions & 3 deletions auxmic.ui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyTitle("auxmic.ui")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Vladislav Osmanov")]
[assembly: AssemblyCompany("auxmic")]
[assembly: AssemblyProduct("auxmic")]
[assembly: AssemblyCopyright("Copyright © 2014-2020 Vladislav Osmanov")]
[assembly: AssemblyTrademark("")]
Expand Down Expand Up @@ -54,6 +54,6 @@

// см. http://stackoverflow.com/questions/12176/svn-revision-version-in-net-assembly-w-out-cc-net
// http://www.codeproject.com/Articles/27874/Use-Subversion-Revision-Numbers-in-your-Visual-Stu
[assembly: AssemblyVersion("0.8.0.103")]
[assembly: AssemblyFileVersion("0.8.0.103")]
[assembly: AssemblyVersion("0.8.1.115")]
[assembly: AssemblyFileVersion("0.8.1.115")]
//[assembly: AssemblyInformationalVersion("Build date: 2017-01-26 21:02:40; Revision date: 2017-01-21 16:04:51; Revision(s) in working copy: 95:97; WARNING working copy had uncommitted modifications.")]
2 changes: 1 addition & 1 deletion auxmic.ui/auxmic.ui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
Expand Down
6 changes: 3 additions & 3 deletions auxmic/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Vladislav Osmanov")]
[assembly: AssemblyProduct("auxmic")]
[assembly: AssemblyCopyright("Copyright © 2014-2019 Vladislav Osmanov")]
[assembly: AssemblyCopyright("Copyright © 2014-2020 Vladislav Osmanov")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,7 +32,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.8.0.0")]
[assembly: AssemblyFileVersion("0.8.0.0")]
[assembly: AssemblyVersion("0.8.1.0")]
[assembly: AssemblyFileVersion("0.8.1.0")]

[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("TestProject")]
2 changes: 1 addition & 1 deletion auxmic/auxmic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
Expand Down
9 changes: 8 additions & 1 deletion auxmic/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
auxmic
http://auxmic.com

Copyright © 2014-2017 Vladislav Osmanov
Copyright © 2014-2020 Vladislav Osmanov
[email protected]


Expand All @@ -13,6 +13,13 @@ The only purpose is to help you synchronize audio from external microphone with

RELEASE NOTES
-------------
auxmic v0.8.1.115 [2020-08-09]

+ Improved usability (#6)
+ Added ability to export synchronized file with `FFmpeg` (#7)
+ Fixed multiple instances run (#11)
+ Fixed progress display (while matching files) (#17)

auxmic v0.8.0.103 [2020-06-05]

+ Fixed crash on processing files with the same names (but different extensions) #1
Expand Down

0 comments on commit 0d4d8ef

Please sign in to comment.