From: Good Guy Date: Sun, 30 Jun 2019 18:32:12 +0000 (-0600) Subject: verision update, fix findobj missing hdrs, fix colorpicker handle_new_color callback X-Git-Tag: 2019-08~26 X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=commitdiff_plain;h=827586949547b489a6a842729ad01a983f3eb051;ds=sidebyside verision update, fix findobj missing hdrs, fix colorpicker handle_new_color callback --- diff --git a/cinelerra-5.1/blds/PKGBUILD b/cinelerra-5.1/blds/PKGBUILD index 59177654..61f62ce1 100644 --- a/cinelerra-5.1/blds/PKGBUILD +++ b/cinelerra-5.1/blds/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: goodguy pkgname=cin pkgver=5.1 -pkgrel=20190531 +pkgrel=20190630 pkgdesc="Cinelerra git://git.cinelerra-gg.org/goodguy/cinelerra.git ($pkgrel)" arch=('x86_64') url="https://www.cinelerra-gg.org" diff --git a/cinelerra-5.1/blds/cinelerra.spec b/cinelerra-5.1/blds/cinelerra.spec index 17afff05..90e64c12 100644 --- a/cinelerra-5.1/blds/cinelerra.spec +++ b/cinelerra-5.1/blds/cinelerra.spec @@ -1,4 +1,4 @@ -%define ver 20190531 +%define ver 20190630 %define cin cinelerra Summary: Multimedia Editing and construction diff --git a/cinelerra-5.1/blds/debian/changelog b/cinelerra-5.1/blds/debian/changelog index 4bb5684d..2f1e51f9 100644 --- a/cinelerra-5.1/blds/debian/changelog +++ b/cinelerra-5.1/blds/debian/changelog @@ -1,4 +1,4 @@ -cin (1:5.1.20190531) unstable; urgency=low +cin (1:5.1.20190630) unstable; urgency=low [ guy goode ] diff --git a/cinelerra-5.1/blds/debian/control b/cinelerra-5.1/blds/debian/control index 9f6ba6ae..899d9a60 100644 --- a/cinelerra-5.1/blds/debian/control +++ b/cinelerra-5.1/blds/debian/control @@ -1,7 +1,7 @@ Source: cin Section: video Priority: optional -Standards-Version: 5.1.20190531 +Standards-Version: 5.1.20190630 Maintainer: mailing list Homepage: https://www.cinelerra-gg.org/ Build-Depends: diff --git a/cinelerra-5.1/cinelerra/colorpicker.C b/cinelerra-5.1/cinelerra/colorpicker.C index b910b9f4..9a995958 100644 --- a/cinelerra-5.1/cinelerra/colorpicker.C +++ b/cinelerra-5.1/cinelerra/colorpicker.C @@ -1276,7 +1276,6 @@ void ColorButtonPicker::update(int color, int alpha) int ColorButtonPicker::handle_new_color(int color, int alpha) { update(color, alpha); - color_button->handle_new_color(color, alpha); return 1; } @@ -1290,6 +1289,7 @@ void ColorButtonPicker::update_gui() void ColorButtonPicker::update_gui(int color, int alpha) { ColorPicker::update_gui(color, alpha); + color_button->handle_new_color(color, alpha); } ColorButtonThread::ColorButtonThread(ColorButton *color_button) diff --git a/cinelerra-5.1/msg/txt b/cinelerra-5.1/msg/txt index 5e5f96e2..edb45636 100644 --- a/cinelerra-5.1/msg/txt +++ b/cinelerra-5.1/msg/txt @@ -8,6 +8,12 @@ Cinfinity icons selected in Preferences Sam (CC BY 3.0, Cakewalk and Neophyte themes by Olaf Wolff (CC BY 4.0, https://creativecommons.org/licenses/by/4.0/) . +June 2019 New Features of note: + Hardware acceleration Nvenc for Nvidia boards rendering in. + More masking improvements to include tracks, solo, & gangs. + Cuda capability optional if do your own builds. + Gradient plugin improved for OpenGL + color picker. + Blade cute/Hard edges is now less intrusive. May 2019 New Features of note: Masking enhancements added to include Rotate and Scale. Some encode hardware acceleration for vaapi graphics boards. diff --git a/cinelerra-5.1/plugins/findobj/findobjwindow.C b/cinelerra-5.1/plugins/findobj/findobjwindow.C index 95d68bdd..e1ed25c5 100644 --- a/cinelerra-5.1/plugins/findobj/findobjwindow.C +++ b/cinelerra-5.1/plugins/findobj/findobjwindow.C @@ -22,6 +22,8 @@ #include "bcdisplayinfo.h" #include "clip.h" #include "dragcheckbox.h" +#include "edl.h" +#include "edlsession.h" #include "language.h" #include "findobj.h" #include "findobjwindow.h"