Skip to content

Commit

Permalink
Version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
VoidXH committed Oct 30, 2022
1 parent b3bf904 commit cca6fea
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cavern.Format/Cavern.Format.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Version>1.5</Version>
<Version>1.6</Version>
<Authors>VoidX</Authors>
<Description>Audio format support of the Cavern spatial audio engine.</Description>
<Copyright>Copyright © Bence Sgánetz 2016-2022</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Cavern.QuickEQ/Cavern.QuickEQ.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Version>1.5</Version>
<Version>1.6</Version>
<Authors>VoidX</Authors>
<Description>Measurement and equalization tools for the Cavern spatial audio engine.</Description>
<Copyright>Copyright © Bence Sgánetz 2016-2022</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Cavern/Cavern.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Version>1.5.0.1</Version>
<Version>1.6</Version>
<Authors>VoidX</Authors>
<Description>Object-based 3D audio rendering and (up)mixing engine.</Description>
<Copyright>Copyright © Bence Sgánetz 2016-2022</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Cavern/Listener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ float[] Frame() {
/// Version and creator information.
/// </summary>
/// <remarks>Hardcoded, because version reading is unsupported for .NET Standard projects</remarks>
public const string Info = "Cavern v1.5 by VoidX (cavern.sbence.hu)";
public const string Info = "Cavern v1.6 by VoidX (cavern.sbence.hu)";

/// <summary>
/// Default sample rate.
Expand Down
3 changes: 2 additions & 1 deletion CavernSamples/CavernizeGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Shapes;
using System.Windows.Shell;

using Cavern;
using Cavern.Format.Common;
Expand All @@ -19,7 +21,6 @@

using Path = System.IO.Path;
using Track = CavernizeGUI.Elements.Track;
using System.Windows.Shell;

namespace CavernizeGUI {
public partial class MainWindow : Window {
Expand Down
2 changes: 1 addition & 1 deletion CavernSamples/CavernizeGUI/Tools/UpdateCheck.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static async void CheckForUpdate(DateTime lastCheck, Action onChecked) {
/// <summary>
/// The current revision number. If the received revision is newer, an &quot;update available&quot; message is shown.
/// </summary>
const int thisRevision = 2;
const int thisRevision = 3;

/// <summary>
/// The page where the new version can be downloaded.
Expand Down

0 comments on commit cca6fea

Please sign in to comment.