Updated CHANGELOG for release, and tweaked the archive filenames.

This commit is contained in:
casey langen 2017-03-26 20:53:05 -07:00
parent 68a7e2994c
commit 9326b0723f
3 changed files with 7 additions and 7 deletions

View File

@ -9,8 +9,6 @@ user-facing:
* added jumping to album/artist/genre to the selected track context menu
* fixed a really old bug that could cause lists to automatically scroll to weird
places if the window or view is resized
* added localization support for "dimensions". this allows for per-locale sizing
of ui components
* directory browser now remembers which directories were previously selected,
making up navigation in the settings view smoother
* added a "list_header_highlighted_background" and
@ -23,6 +21,8 @@ low-level:
for pub/sub like functionality
* added some new SDK interface methods to ITrack and IMetadataMap for retrieving
values other than strings (uint64, int64, uint32, int32, double)
* added localization support for "dimensions". this allows for per-locale sizing
of ui components
* fixed some old bugs in Window.cpp that could cause visibility changed
notifications to be raised unnecessarily
* added a custom PDCurses/win32a patch to further reduce CPU load and context

View File

@ -30,6 +30,6 @@ strip bin/musikbox
strip bin/plugins/*.dylib
pushd bin/dist
tar cvf musikbox_macos_static_$VERSION.tar $DIRNAME
bzip2 musikbox_macos_static_$VERSION.tar
tar cvf musikbox_macos_$VERSION.tar $DIRNAME
bzip2 musikbox_macos_$VERSION.tar
popd

View File

@ -8,7 +8,7 @@ if [ -z "$VERSION" ]; then
fi
VANILLA="bin/dist/musikbox_win32_$VERSION"
MILKDROP="bin/dist/musikbox_with_milkdrop2_win32_$VERSION"
MILKDROP="bin/dist/musikbox_win32_with_milkdrop2_$VERSION"
rm -rf "$VANILLA"
rm -rf "$MILKDROP"
@ -35,6 +35,6 @@ cp bin/release/themes/*.json "$MILKDROP/themes"
cp bin/release/locales/*.json "$MILKDROP/locales"
cp -rfp bin/release/plugins/Milkdrop2 "$MILKDROP/plugins"
pushd $MILKDROP
7z a -tzip "musikbox_with_milkdrop2_win32_$VERSION.zip" ./* -mx=9
mv "musikbox_with_milkdrop2_win32_$VERSION.zip" ..
7z a -tzip "musikbox_win32_with_milkdrop2_$VERSION.zip" ./* -mx=9
mv "musikbox_win32_with_milkdrop2_$VERSION.zip" ..
popd