Skip to content

Commit 0d4d8ef

Browse files
committed
v0.8.1.115 release
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)
1 parent 7aa82d0 commit 0d4d8ef

File tree

6 files changed

+23
-11
lines changed

6 files changed

+23
-11
lines changed

auxmic.ui/About.xaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Window x:Class="auxmic.ui.About"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
Title="About auxmic" Height="200" Width="300" ResizeMode="NoResize" WindowStyle="ToolWindow" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
4+
Title="About auxmic" Height="220" Width="320" ResizeMode="NoResize" WindowStyle="ToolWindow" WindowStartupLocation="CenterOwner" Loaded="Window_Loaded">
55
<Window.Resources>
66

77
<Style x:Key="main_window">
@@ -78,7 +78,12 @@
7878
7979
</Hyperlink>
8080
</TextBlock>
81-
<!--<Separator DockPanel.Dock="Top"/>-->
81+
<TextBlock DockPanel.Dock="Top" Padding="1" Margin="1">
82+
<Hyperlink Foreground="#4ca1e4" NavigateUri="https://github.com/osmanovv/auxmic" RequestNavigate="Hyperlink_RequestNavigate">
83+
GitHub
84+
</Hyperlink>
85+
</TextBlock>
86+
<Separator DockPanel.Dock="Top"/>
8287
</DockPanel>
8388
</Border>
8489

auxmic.ui/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyTitle("auxmic.ui")]
1111
[assembly: AssemblyDescription("")]
1212
[assembly: AssemblyConfiguration("")]
13-
[assembly: AssemblyCompany("Vladislav Osmanov")]
13+
[assembly: AssemblyCompany("auxmic")]
1414
[assembly: AssemblyProduct("auxmic")]
1515
[assembly: AssemblyCopyright("Copyright © 2014-2020 Vladislav Osmanov")]
1616
[assembly: AssemblyTrademark("")]
@@ -54,6 +54,6 @@
5454

5555
// см. http://stackoverflow.com/questions/12176/svn-revision-version-in-net-assembly-w-out-cc-net
5656
// http://www.codeproject.com/Articles/27874/Use-Subversion-Revision-Numbers-in-your-Visual-Stu
57-
[assembly: AssemblyVersion("0.8.0.103")]
58-
[assembly: AssemblyFileVersion("0.8.0.103")]
57+
[assembly: AssemblyVersion("0.8.1.115")]
58+
[assembly: AssemblyFileVersion("0.8.1.115")]
5959
//[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.")]

auxmic.ui/auxmic.ui.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</PropertyGroup>
3333
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
3434
<PlatformTarget>AnyCPU</PlatformTarget>
35-
<DebugType>pdbonly</DebugType>
35+
<DebugType>none</DebugType>
3636
<Optimize>true</Optimize>
3737
<OutputPath>bin\Release\</OutputPath>
3838
<DefineConstants>TRACE</DefineConstants>

auxmic/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Vladislav Osmanov")]
1212
[assembly: AssemblyProduct("auxmic")]
13-
[assembly: AssemblyCopyright("Copyright © 2014-2019 Vladislav Osmanov")]
13+
[assembly: AssemblyCopyright("Copyright © 2014-2020 Vladislav Osmanov")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

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

3838
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("TestProject")]

auxmic/auxmic.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</PropertyGroup>
4646
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
4747
<PlatformTarget>AnyCPU</PlatformTarget>
48-
<DebugType>pdbonly</DebugType>
48+
<DebugType>none</DebugType>
4949
<Optimize>true</Optimize>
5050
<OutputPath>bin\Release\</OutputPath>
5151
<DefineConstants>TRACE</DefineConstants>

auxmic/readme.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
auxmic
22
http://auxmic.com
33

4-
Copyright © 2014-2017 Vladislav Osmanov
4+
Copyright © 2014-2020 Vladislav Osmanov
55
66

77

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

1414
RELEASE NOTES
1515
-------------
16+
auxmic v0.8.1.115 [2020-08-09]
17+
18+
+ Improved usability (#6)
19+
+ Added ability to export synchronized file with `FFmpeg` (#7)
20+
+ Fixed multiple instances run (#11)
21+
+ Fixed progress display (while matching files) (#17)
22+
1623
auxmic v0.8.0.103 [2020-06-05]
1724

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

0 commit comments

Comments
 (0)