From f968e618ac8ef8c7b15b446f1f242bd8d3c055a0 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 26 Jan 2019 18:42:20 -0600 Subject: [PATCH] Reenabled create and delete audio albums --- changelog.md | 2 ++ src/wxUI/mainWindow.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index bf6e1ae..497f639 100644 --- a/changelog.md +++ b/changelog.md @@ -18,6 +18,8 @@ * Now it is possible to remove friends directly from the friends buffer. There is a new option for this purpose in the context menu for the focused friend. After being removed, the person will be placed in the subscribers buffer. * Deleted posts will display an error message when trying to view details about those. Before, the dialog was created and left blank. * The audio search feature has received improvements: Now it is possible to indicate wether the search will be performed by title or artist, and select to sort the results by duration, popularity or date of addition to VK. +* Now it is possible to create and delete audio albums again. +* Fixed errors when moving songs to albums. Now everything works as expected. ## Changes in version 0.18 (21.01.2019) diff --git a/src/wxUI/mainWindow.py b/src/wxUI/mainWindow.py index 0fc6ef8..40e1f0d 100644 --- a/src/wxUI/mainWindow.py +++ b/src/wxUI/mainWindow.py @@ -8,11 +8,11 @@ class mainWindow(wx.Frame): mb = wx.MenuBar() app_ = wx.Menu() create = wx.Menu() -# self.audio_album = create.Append(wx.NewId(), _("Audio album")) + self.audio_album = create.Append(wx.NewId(), _("Audio album")) self.video_album = create.Append(wx.NewId(), _("Video album")) app_.Append(wx.NewId(), _("Create"), create) delete = wx.Menu() -# self.delete_audio_album = delete.Append(wx.NewId(), _("Audio album")) + self.delete_audio_album = delete.Append(wx.NewId(), _("Audio album")) self.delete_video_album = delete.Append(wx.NewId(), _("Video album")) app_.Append(wx.NewId(), _("Delete"), delete) self.settings_dialog = app_.Append(wx.NewId(), _("Preferences"))