Skip to content

Commit

Permalink
v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mkckr0 committed Nov 23, 2024
1 parent ca9196b commit 738c63a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.1
0.2.2
4 changes: 2 additions & 2 deletions android-app/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 4 additions & 0 deletions metadata/en-US/changelogs/2002.txt
Original file line number Diff line number Diff line change
@@ -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]"
2 changes: 1 addition & 1 deletion server-core/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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"
)

Expand Down
8 changes: 4 additions & 4 deletions server-mfc/audio-share-server/AudioShareServer.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 738c63a

Please sign in to comment.