verision update, fix findobj missing hdrs, fix colorpicker handle_new_color callback
authorGood Guy <good1.2guy@gmail.com>
Sun, 30 Jun 2019 18:32:12 +0000 (12:32 -0600)
committerGood Guy <good1.2guy@gmail.com>
Sun, 30 Jun 2019 18:32:12 +0000 (12:32 -0600)
cinelerra-5.1/blds/PKGBUILD
cinelerra-5.1/blds/cinelerra.spec
cinelerra-5.1/blds/debian/changelog
cinelerra-5.1/blds/debian/control
cinelerra-5.1/cinelerra/colorpicker.C
cinelerra-5.1/msg/txt
cinelerra-5.1/plugins/findobj/findobjwindow.C

index 591776544bd37c18db441258f18285f307cb0e69..61f62ce1e52fb519a0e7190d1324465a68db5291 100644 (file)
@@ -1,7 +1,7 @@
 # Maintainer: goodguy <lists.cinelerra-gg.org>
 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"
index 17afff0518debbf4024ba27e14055ef8a1d05adf..90e64c127e6e22b01edde355f3a137e7a9262444 100644 (file)
@@ -1,4 +1,4 @@
-%define ver 20190531
+%define ver 20190630
 %define cin cinelerra
 Summary: Multimedia Editing and construction
 
index 4bb5684d4c2734e7b506aa78bc64bc68384a2062..2f1e51f974b29ea951ec8d1c2208c176d7a31fc9 100644 (file)
@@ -1,4 +1,4 @@
-cin (1:5.1.20190531) unstable; urgency=low
+cin (1:5.1.20190630) unstable; urgency=low
 
   [ guy goode ]
 
index 9f6ba6ae94d9054280b27b7b8cb2c8823aed0827..899d9a605d3762fe680bba6d2026d21273f4804b 100644 (file)
@@ -1,7 +1,7 @@
 Source: cin
 Section: video
 Priority: optional
-Standards-Version: 5.1.20190531
+Standards-Version: 5.1.20190630
 Maintainer: mailing list <cin@lists.cinelerra-gg.org>
 Homepage: https://www.cinelerra-gg.org/
 Build-Depends:
index b910b9f4cab42dc2d5ce6a201815b4be97ee5396..9a995958c27377fd0c3a1762ddb5af763ea831e4 100644 (file)
@@ -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)
index 5e5f96e2f25bccd07ddce9016441684957eef4c3..edb45636480525be4ad1d0695ece7fc7cae08e80 100644 (file)
@@ -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.
index 95d68bddfbba23cb1f4799f5e814a1ee1b71f92c..e1ed25c5b0e6f18ad8f056ee0ade9f68f9e0617f 100644 (file)
@@ -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"