version update, docs Features5 msg/txt, shuttle tweaks for build
authorGood Guy <good1.2guy@gmail.com>
Thu, 31 Jan 2019 20:53:49 +0000 (13:53 -0700)
committerGood Guy <good1.2guy@gmail.com>
Thu, 31 Jan 2019 20:53:49 +0000 (13:53 -0700)
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/shuttle.C
cinelerra-5.1/cinelerra/shuttle.h
cinelerra-5.1/doc/99-ShuttlePRO.rules [new file with mode: 0644]
cinelerra-5.1/doc/Features5.pdf
cinelerra-5.1/msg/txt

index ddf2393b7f30c0d73f04101308353b551c5069aa..ac483e8d034d642d9b24a7225b3fa0f3290c66d0 100644 (file)
@@ -1,7 +1,7 @@
 # Maintainer: goodguy <lists.cinelerra-gg.org>
 pkgname=cin
 pkgver=5.1
 # Maintainer: goodguy <lists.cinelerra-gg.org>
 pkgname=cin
 pkgver=5.1
-pkgrel=20181231
+pkgrel=20190131
 pkgdesc="Cinelerra git://git.cinelerra-gg.org/goodguy/cinelerra.git ($pkgrel)"
 arch=('x86_64')
 url="https://www.cinelerra-gg.org"
 pkgdesc="Cinelerra git://git.cinelerra-gg.org/goodguy/cinelerra.git ($pkgrel)"
 arch=('x86_64')
 url="https://www.cinelerra-gg.org"
index edc24815cf69ce3d54e503413c83cdecabd17a29..0456616651ee4594e7d7465deab5d1ffd2f8d28e 100644 (file)
@@ -1,4 +1,4 @@
-%define ver 20181231
+%define ver 20190131
 %define cin cinelerra
 Summary: Multimedia Editing and construction
 
 %define cin cinelerra
 Summary: Multimedia Editing and construction
 
index a17371c8a2fcddd4149819bc3d9f1543b4955796..4afa68f57edbbacfa45be430d453becb5ad7387d 100644 (file)
@@ -1,4 +1,4 @@
-cin (1:5.1.20181231) unstable; urgency=low
+cin (1:5.1.20190131) unstable; urgency=low
 
   [ guy goode ]
 
 
   [ guy goode ]
 
index 2a0f24a055b1b8d89553ed52ca6d91936fc5b2bd..a82747713773ca31f717b03ebf4db55a643caf91 100644 (file)
@@ -1,7 +1,7 @@
 Source: cin
 Section: video
 Priority: optional
 Source: cin
 Section: video
 Priority: optional
-Standards-Version: 5.1.20181231
+Standards-Version: 5.1.20190131
 Maintainer: mailing list <cin@lists.cinelerra-gg.org>
 Homepage: https://www.cinelerra-gg.org/
 Build-Depends: nasm, yasm, g++, gdb, build-essential, e2fsprogs,
 Maintainer: mailing list <cin@lists.cinelerra-gg.org>
 Homepage: https://www.cinelerra-gg.org/
 Build-Depends: nasm, yasm, g++, gdb, build-essential, e2fsprogs,
index 627f162a8d6f0e71a5f65bfbc33940f1fa970208..4c440dbc0709f6e1a71451314e8dbef56869a07f 100644 (file)
@@ -2,9 +2,6 @@
 // Copyright 2013 Eric Messick (FixedImagePhoto.com/Contact)
 // reworked 2019 for cinelerra-gg by William Morrow
 
 // Copyright 2013 Eric Messick (FixedImagePhoto.com/Contact)
 // reworked 2019 for cinelerra-gg by William Morrow
 
-// keys.h collides with linux/input_events.h
-#define KEYS_H
-
 #include "arraylist.h"
 #include "cstrdup.h"
 #include "file.h"
 #include "arraylist.h"
 #include "cstrdup.h"
 #include "file.h"
 #include "linklist.h"
 #include "loadfile.h"
 #include "mainmenu.h"
 #include "linklist.h"
 #include "loadfile.h"
 #include "mainmenu.h"
-#include "mwindow.h"
 #include "shuttle.h"
 #include "thread.h"
 
 #include "shuttle.h"
 #include "thread.h"
 
+#include "mwindow.h"
+#include "mwindowgui.h"
+#include "awindow.h"
+#include "awindowgui.h"
+#include "cwindow.h"
+#include "cwindowgui.h"
+#include "vwindow.h"
+#include "vwindowgui.h"
+
+#include <stdio.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <string.h>
 #include <sys/time.h>
 #include <sys/time.h>
-#include <sys/types.h>
 #include <sys/stat.h>
 
 #include <X11/Xlib.h>
 #include <sys/stat.h>
 
 #include <X11/Xlib.h>
index 532a560926b585073a56d6311134a4f9dbcf34e6..b02a945bad211f8e29ac6109383d85c0647ed1ad 100644 (file)
@@ -7,28 +7,10 @@
 #include "shuttle.inc"
 #include "thread.h"
 
 #include "shuttle.inc"
 #include "thread.h"
 
-#include "mwindow.h"
-#include "mwindowgui.h"
-#include "awindow.h"
-#include "awindowgui.h"
-#include "cwindow.h"
-#include "cwindowgui.h"
-#include "vwindow.h"
-#include "vwindowgui.h"
-
-#include <stdio.h>
-#include <stdint.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <fcntl.h>
-#include <string.h>
-
 #include <linux/input.h>
 #include <linux/input.h>
-#include <linux/input-event-codes.h>
 #include <sys/types.h>
 #include <regex.h>
 
 #include <sys/types.h>
 #include <regex.h>
 
-
 // Copyright 2013 Eric Messick (FixedImagePhoto.com/Contact)
 // reworked 2019 for cinelerra-gg by William Morrow (aka goodguy)
 
 // Copyright 2013 Eric Messick (FixedImagePhoto.com/Contact)
 // reworked 2019 for cinelerra-gg by William Morrow (aka goodguy)
 
diff --git a/cinelerra-5.1/doc/99-ShuttlePRO.rules b/cinelerra-5.1/doc/99-ShuttlePRO.rules
new file mode 100644 (file)
index 0000000..2c7776c
--- /dev/null
@@ -0,0 +1,7 @@
+
+# Allows global read access to any ShuttlePRO device
+
+# install this file in /etc/udev/rules.d
+
+ATTRS{name}=="Contour Design ShuttlePRO v2" MODE="0644"
+ATTRS{name}=="Contour Design ShuttleXpress" MODE="0644"
index 8efdf113fe110cf0bfa6423a1494b8c74a9cf130..addeae358d114cca79d5f20ee360281a5f7e8b1c 100644 (file)
Binary files a/cinelerra-5.1/doc/Features5.pdf and b/cinelerra-5.1/doc/Features5.pdf differ
index 34099618701ab9afe02bf51372519007e4728b07..8def3c20b60049e0fc42965bd766de4451cfd467 100644 (file)
@@ -12,89 +12,46 @@ Cinfinity icons selected in Preferences Sam (CC BY 3.0,
 Neophyte theme selected in Preferences by Olaf Wolff (CC BY 4.0,
   https://creativecommons.org/licenses/by/4.0/)
 .
 Neophyte theme selected in Preferences by Olaf Wolff (CC BY 4.0,
   https://creativecommons.org/licenses/by/4.0/)
 .
-Dec 2018 New Features of note:
+January 2019 New Features of note:
+  Capability for Shuttle usage has been added.
+  Drag Handle management includes Slide and Edge too.
+  Updated x264 (now includes 10-bit and 8-bit) and x265.
+  Undo stack can now be dumped into the terminal windows.
+  23 more plugins have reset buttons included.
+.
+2018 New Features of note:
   Inter-View mode / Identifying Source Targets added.
   Cut and Paste behavior added; right mouse button on clip.
   Grouping and ungrouping possibilities in Arrow mode,
   Color titles and media with changable colors and alpha.
   Change thumbnail size, vicon memory usage and color mode.
   Preview window zoom scale for vicons in Resources window.
   Inter-View mode / Identifying Source Targets added.
   Cut and Paste behavior added; right mouse button on clip.
   Grouping and ungrouping possibilities in Arrow mode,
   Color titles and media with changable colors and alpha.
   Change thumbnail size, vicon memory usage and color mode.
   Preview window zoom scale for vicons in Resources window.
-  New improved drag arrow that does not block the media.
-Nov 2018 New features of note:
-  FFmpeg is now at version 4.1 with a few more plugins.
   Sketcher plugin newly added to "pencil in" lines/curves.
   Sketcher plugin newly added to "pencil in" lines/curves.
-  Delete shortcut in Resources to "remove from project".
   Window layout save and load feature added - total of 4.
   Window layout save and load feature added - total of 4.
-  Select asset popup in Resources to highlight used/unused.
-Oct 2018 New features of note:
   Title plugin has unlimited number of characters allowed.
   Histogram Bezier bug fixes and some improvements applied.
   Trim Feature enhancement with drag handle and split look.
   Title plugin has unlimited number of characters allowed.
   Histogram Bezier bug fixes and some improvements applied.
   Trim Feature enhancement with drag handle and split look.
-  Additional ffmpeg plugins available (FF icon for now).
   Dynamic keyframes implemented so can use large numbers.
   Color correction+others highlighted with expand subtrees.
   Dynamic keyframes implemented so can use large numbers.
   Color correction+others highlighted with expand subtrees.
-  Autos, like fade, allow for textbox input & tooltip values.
-.
-Sept 2018 New Features of note:
   Motion plugins now have more visible stippled lines.
   Motion plugins now have more visible stippled lines.
-  New Export Project option; h26x_mp3 audio format available,
-  Overlays Winow toggle on/off XYZ for Camera/Projector.
-  Patchbay Expander icon moved up to allow for better usage.
-.
-July/Aug 2018 New Features of note:
   Neophyte theme and German translations compliments of Olaf.
   Bins/Folders added for organizing media.
   Preview capability with Mouse Over and vicon tweaks.
   Neophyte theme and German translations compliments of Olaf.
   Bins/Folders added for organizing media.
   Preview capability with Mouse Over and vicon tweaks.
-  Numbers on the keypad can be used in dialog boxes.
-  OpenGL driver rework for fixes and/or improvement.
-  Proxy switcher added to ease going back and forth.
-  Single image proxy of scalar and non-scalar both work.
   Find in Resources, User title, and Show edit options added.
   Added Display packed icons and Display icon list in Resources.
   Find in Resources, User title, and Show edit options added.
   Added Display packed icons and Display icon list in Resources.
-.
-June/May 2018 New Features of note:
-  Proxy usage with multicams has been corrected.
   LV2 Audio plugins have been hooked in to include Calf, X42, +.
   LV2 Audio plugins have been hooked in to include Calf, X42, +.
-  Jpeg, libx265, and Dcraw have been upgraded.
   Unbundled build scripts are now available and tested a few.
   Unbundled build scripts are now available and tested a few.
-  FFmpeg plugins have had a slider bar added for easier use.
-.
-April 2018 New Features of note:
-  FFmpeg has been updated to V 4.0. Libx265 to 2.7.
   OpenCV FindObj updated and StyleObj, PuzzleObj added.
   OpenCV FindObj updated and StyleObj, PuzzleObj added.
-  Shortcuts F11-F12 in compositor / b for load backup.
-  Drag widget designed/added for future versatility.
-.
-March 2018 New Features of note:
-  Audio now is associated when in the Proxy folder.
   Perpetual Session preference and 1 extra backup.
   Speed automation will now update the track duration.
   Perpetual Session preference and 1 extra backup.
   Speed automation will now update the track duration.
-  Locking tracks in patchbay, highlites that scenario.
   Can now Paste Silence a single frame at hairline cursor.
   Can now Paste Silence a single frame at hairline cursor.
-  Load files from the Resources window now via "o".
-  SVG with Inkscape rewritten to not use Shell command.
-  Hyperlinks for the Table of Contents added to Features5.
-.
-February 2018 New Features of note:
-  Pulldown menus now stay until window or mouse change.
   Audio waveform partial image will show in the Viewer.
   Audio waveform partial image will show in the Viewer.
-  Adding a matched set of tracks is now available.
   Loop play added in Viewer and Compositor.
   Mouse play action implemented in Viewer/Compositor.
   Nested EDLs are now available and automatically render.
   Loop play added in Viewer and Compositor.
   Mouse play action implemented in Viewer/Compositor.
   Nested EDLs are now available and automatically render.
-  Audio plays the first few bars in the Resources window.
-  Third-party programs have been upgraded.
-  File size indicator in File Load has numeric options.
-  Shortcuts.html updated for some new or missing actions.
-  Clips in the Resources window show a png thumbnail.
-.
-January 2018 New Features of note:
-  Plugin names in EDL now all english & not translated.
   Raw Video (yuv/rgb) and raw audio available.
   Audio waveform icons, color coded, in Resources Media.
   Allowance for piped file usage has been added.
   Raw Video (yuv/rgb) and raw audio available.
   Audio waveform icons, color coded, in Resources Media.
   Allowance for piped file usage has been added.
-  Render Farm minor enhancements and bug fixes.
-  Pixels for Render Video and Samples/Quality for Audio.
   2 Pass option for VP9/webm added.
 .
 2017 New Features of note:
   2 Pass option for VP9/webm added.
 .
 2017 New Features of note: