forked from pool/audacity
Accepting request 684189 from multimedia:apps
- Update to release 2.3.1 and remove incorporated patch 0001-Fix-bug-1992.patch. OBS-URL: https://build.opensuse.org/request/show/684189 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/audacity?expand=0&rev=81
This commit is contained in:
commit
b1c63c0a16
@ -1,25 +0,0 @@
|
||||
From a17af37c1ef9a4611add492d8ba02d1dfb270210 Mon Sep 17 00:00:00 2001
|
||||
From: Steve Daulton <stevedaulton@gmail.com>
|
||||
Date: Tue, 2 Oct 2018 22:40:10 +0100
|
||||
Subject: [PATCH] Fix bug 1992
|
||||
|
||||
---
|
||||
src/Menus.cpp | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: audacity-Audacity-2.3.0/src/Menus.cpp
|
||||
===================================================================
|
||||
--- audacity-Audacity-2.3.0.orig/src/Menus.cpp 2018-09-20 16:35:07.000000000 +0200
|
||||
+++ audacity-Audacity-2.3.0/src/Menus.cpp 2018-10-03 16:36:27.684154542 +0200
|
||||
@@ -4572,7 +4572,10 @@ bool AudacityProject::DoEffect(const Plu
|
||||
TrackListIterator iter(GetTracks());
|
||||
Track *t = iter.First();
|
||||
wxWindow *focus = wxWindow::FindFocus();
|
||||
- auto parent = focus->GetParent();
|
||||
+ wxWindow *parent;
|
||||
+ if (focus != nullptr) {
|
||||
+ parent = focus->GetParent();
|
||||
+ }
|
||||
|
||||
bool success = false;
|
||||
auto cleanup = finally( [&] {
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:37127f68dceeb5da08d008ec9373a65e2d5d0a9b937c808a5d7c3b88aa9e275e
|
||||
size 27479664
|
3
Audacity-2.3.1.tar.gz
Normal file
3
Audacity-2.3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ef1c06f9cdc2ee3d315b8e575dc2bea5b372f4f415f3dc6570c3cfca0f93321
|
||||
size 27618480
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 11 14:01:22 UTC 2019 - plater <davejplater@gmail.com>
|
||||
|
||||
- Update to release 2.3.1 and remove incorporated patch:
|
||||
0001-Fix-bug-1992.patch.
|
||||
- Upstream changes:
|
||||
Over 20 bugs fixed since 2.3.0, including:
|
||||
A crashing bug on Linux that made Audacity 2.3.0. unsuitable for
|
||||
Linux.
|
||||
Problems with Change Pitch, including not remembering parameter
|
||||
values.
|
||||
Options and preferences:
|
||||
Microfades are now an opt-in feature. They were always on in
|
||||
2.3.0.
|
||||
The advanced vertical zooming option is now available in the
|
||||
View->Zoom menu.
|
||||
Regular interval labels now support range labels.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 3 14:39:52 UTC 2018 - davejplater@gmail.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package audacity
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -23,7 +23,7 @@
|
||||
%endif
|
||||
|
||||
Name: audacity
|
||||
Version: 2.3.0
|
||||
Version: 2.3.1
|
||||
Release: 0
|
||||
Summary: A Multi Track Digital Audio Editor
|
||||
License: GPL-2.0-or-later
|
||||
@ -40,7 +40,6 @@ Patch1: audacity-flacversion.patch
|
||||
Patch2: audacity-misc-errors.patch
|
||||
# PATCH-FIX-UPSTREAM audacity-no_return_in_nonvoid.patch
|
||||
Patch3: audacity-no_return_in_nonvoid.patch
|
||||
Patch4: 0001-Fix-bug-1992.patch
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: cmake
|
||||
@ -107,7 +106,6 @@ physical memory size can be edited.
|
||||
%patch1 -p0
|
||||
%patch3 -p0
|
||||
%patch2
|
||||
%patch4 -p1
|
||||
|
||||
cp -f %{SOURCE1} LICENSE_NYQUIST.txt
|
||||
# Make sure we use the system versions.
|
||||
|
Loading…
Reference in New Issue
Block a user