diff --git a/VERSION b/VERSION index 7dff5b8..f477849 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.1 \ No newline at end of file +0.2.2 \ No newline at end of file diff --git a/android-app/app/build.gradle.kts b/android-app/app/build.gradle.kts index 7494511..9b7ffc0 100644 --- a/android-app/app/build.gradle.kts +++ b/android-app/app/build.gradle.kts @@ -34,8 +34,8 @@ android { applicationId = "io.github.mkckr0.audio_share_app" minSdk = 23 targetSdk = 35 - versionCode = 2001 - versionName = "0.2.1" + versionCode = 2002 + versionName = "0.2.2" base.archivesName = "${rootProject.name}-$versionName" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/metadata/en-US/changelogs/2002.txt b/metadata/en-US/changelogs/2002.txt new file mode 100644 index 0000000..27a531b --- /dev/null +++ b/metadata/en-US/changelogs/2002.txt @@ -0,0 +1,4 @@ +- Fix stuck when there are more than 2 channels #102 #99 +- Fix the state doesn't work when AudioShareServer.exe starts +- Fix encoding error for server log on Windows #104 +- Fix crash when some device doesn't have PKEY_Device_FriendlyName #103. Now they will have the default name "[Speakers]" \ No newline at end of file diff --git a/server-core/CMakeLists.txt b/server-core/CMakeLists.txt index be2685a..055c1f6 100644 --- a/server-core/CMakeLists.txt +++ b/server-core/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.20.0) project(audio-share - VERSION 0.2.1 + VERSION 0.2.2 HOMEPAGE_URL "https://github.com/mkckr0/audio-share" ) diff --git a/server-mfc/audio-share-server/AudioShareServer.rc b/server-mfc/audio-share-server/AudioShareServer.rc index 1b92c3c..dcf1173 100644 --- a/server-mfc/audio-share-server/AudioShareServer.rc +++ b/server-mfc/audio-share-server/AudioShareServer.rc @@ -158,8 +158,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,2,1,0 - PRODUCTVERSION 0,2,1,0 + FILEVERSION 0,2,2,0 + PRODUCTVERSION 0,2,2,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -175,11 +175,11 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "FileDescription", "Audio Share Server" - VALUE "FileVersion", "0.2.1.0" + VALUE "FileVersion", "0.2.2.0" VALUE "LegalCopyright", "Copyright © 2022-2024 mkckr0. All rights reserved." VALUE "OriginalFilename", "AudioShareServer.exe" VALUE "ProductName", "Audio Share Server" - VALUE "ProductVersion", "0.2.1" + VALUE "ProductVersion", "0.2.2" END END BLOCK "VarFileInfo"