Skip to content

Commit

Permalink
added version string, and less KM-specific paths in ini
Browse files Browse the repository at this point in the history
  • Loading branch information
peeveen committed Jan 29, 2022
1 parent a507fbd commit a3be407
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 4 deletions.
6 changes: 3 additions & 3 deletions gen_autoDJ.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#

# Path to the list of tracks. One track per line, full path.
TracksFilePath=C:\Users\steve\AppData\Roaming\FullHouse Entertainment\KaraokeManager\KaraokeManager.backgroundMusic.txt
TracksFilePath=C:\your\path\backgroundMusic.txt

# Path to the list of KaraokeManager requested tracks. One track per line, full path.
RequestedTracksFilePath=C:\Users\steve\AppData\Roaming\FullHouse Entertainment\KaraokeManager\KaraokeManager.musicRequests.txt
# Path to the list of requests tracks. One track per line, full path.
RequestedTracksFilePath=C:\your\path\requests.txt

# Amplitude threshold (0-32767) for the start point of a track.
# All tracks are normalized before this analysis takes place.
Expand Down
41 changes: 40 additions & 1 deletion gen_autoDJ.rc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,46 @@ END

// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
IDI_APPICON ICON "winampIcon.ico"
IDI_APPICON ICON "winampIcon.ico"


/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,1
PRODUCTVERSION 1,0,0,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904b0"
BEGIN
VALUE "CompanyName", "FullHouse Entertainment"
VALUE "FileDescription", "AutoDJ plugin for Winamp"
VALUE "FileVersion", "1.0.0.1"
VALUE "InternalName", "gen_autoDJ.dll"
VALUE "LegalCopyright", "Copyright FullHouse Entertainment (C) 2022"
VALUE "OriginalFilename", "gen_autoDJ.dll"
VALUE "ProductName", "AutoDJ"
VALUE "ProductVersion", "1.0.0.1"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x809, 1200
END
END

#endif // English (United Kingdom) resources
/////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit a3be407

Please sign in to comment.