Skip to content

Commit

Permalink
Prepare v0.912
Browse files Browse the repository at this point in the history
  • Loading branch information
RamonUnch authored Apr 7, 2022
1 parent 4da923a commit a964e03
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions in_opus.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ void config(HWND hwndParent)
void about(HWND hwndParent)
{
MessageBox(hwndParent,
"OPUS File Player v0.911, by Raymond Gillibert (*.opus, *.opu files).\n"
"OPUS File Player v0.912, by Raymond Gillibert (*.opus, *.opu files).\n"
"Using libopus 1.3.1, libogg 1.3.2 and libopusfile 0.12.\n"
"You can write me at raymond_gillibert@yahoo.fr if necessary."
, "About Winamp OPUS Player",MB_OK);
Expand Down Expand Up @@ -1009,7 +1009,7 @@ DWORD WINAPI DecodeThread(LPVOID b)
In_Module mod =
{
IN_VER, // defined in IN2.H
"OPUS Player v0.911 by Raymond",
"OPUS Player v0.912 by Raymond",
0, // hMainWindow (filled in by winamp)
0, // hDllInstance (filled in by winamp)
"OPUS\0OPUS Audio File (*.OPUS)\0OPU\0Opus Audio File (*.OPU)\0",
Expand Down
3 changes: 3 additions & 0 deletions in_opus.txt
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ FORMAT_TITLE=0 then only the filename willbe displayed in the playmist.
If you prefer to see the filename only set FORMAT_TITLE=0 in the [IN_OPUS]
section of the Winamp.ini file.

* Now on Winamp5.5+, the Unified tags dialog will be used by default.
You can always set UNIFIED_DIALOG=0 if you prefer the old style.

* Fixed small potential memort leek.

* FIXED: Local codepage will be used for display in non when unicode is not
Expand Down
6 changes: 3 additions & 3 deletions resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ END
//
// Version
//
#define OPUS_VERSION 0,9,1,1
#define OPUS_VERSION 0,9,1,2

VS_VERSION_INFO VERSIONINFO
FILEVERSION OPUS_VERSION
Expand All @@ -71,12 +71,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Gillibert Software"
VALUE "FileDescription", "Opus File decoder plugin for Winamp 2+"
VALUE "FileVersion", "0,9,1,1"
VALUE "FileVersion", "0,9,1,2"
VALUE "InternalName", "in_opus.dll"
VALUE "LegalCopyright", "De mes deux"
VALUE "OriginalFilename", "in_opus.dll"
VALUE "ProductName", "Opus input plugin"
VALUE "ProductVersion", "0,9,1,1"
VALUE "ProductVersion", "0,9,1,2"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit a964e03

Please sign in to comment.