1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
|
lives (2.10.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/: Bump debhelper compat to 11.
* debian/control: Bump Standards-Version.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 20 Sep 2018 20:56:15 +0200
lives (2.8.9-1) unstable; urgency=medium
* Team upload.
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field
* d/control: Set Vcs-* to salsa.debian.org
* d/changelog: Remove trailing whitespaces
[ Felipe Sateler ]
* Change maintainer address to debian-multimedia@lists.debian.org
[ Sebastian Ramacher ]
* New upstream release.
- Fix compatibility with ffmpeg 4.0. (Closes: #888348)
* debian/rules: Bump Standards-Version.
* debian/: Fix Python dependencies.
-- Sebastian Ramacher <sramacher@debian.org> Tue, 17 Apr 2018 02:56:35 +0200
lives (2.8.7-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control: Bump Standards-Version.
-- Sebastian Ramacher <sramacher@debian.org> Mon, 28 Aug 2017 21:33:55 +0200
lives (2.8.6-1) unstable; urgency=medium
* Team upload.
* New upstream release.
- Fix build with GCC 7. (Closes: #853520)
* debian/control: Removed B-D on glee-dev. Support was removed upstream.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 15 Jun 2017 12:41:36 +0200
lives (2.8.4-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/copyright: Update copyright years.
* debian/{control,compat,rules}: Bump debhelper compat to 10.
* debian/control:
- Remove unused B-Ds: libdirectfb-dev, libaa1-dev, lib4l-dev,
libvorbis-dev, libxv-dev.
- Remove Recommends on libraries
- Add B-D on dh-python for dh_python.
-- Sebastian Ramacher <sramacher@debian.org> Sun, 19 Feb 2017 22:20:05 +0100
lives (2.8.3-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control: Remove obsolete Breaks + Replaces already satisfied in
jessie.
-- Sebastian Ramacher <sramacher@debian.org> Sat, 07 Jan 2017 14:40:53 +0100
lives (2.8.1-1) unstable; urgency=medium
* Team upload.
* New upstream release.
- Do not generate empty audio files when encoding. (Closes: #810146)
- No longer create world-writeable directories. (Closes: #798043)
- Fix use of temporary files in smogrify. (Closes: #756565)
* debian/control:
- Remove Harry Rickards from Uploaders. Thanks for maintaining lives,
Harry. (Closes: #843605)
- Disable libschroedinger. Thanks to Andreas Cadhalpun. (Closes: #845364)
-- Sebastian Ramacher <sramacher@debian.org> Tue, 22 Nov 2016 21:30:46 +0100
lives (2.8.0-1) unstable; urgency=medium
* New upstream release
[ Sebastian Ramacher ]
* Remove debian/patch/ffmpeg3.0.patch, included upstream
[ Alessio Treglia ]
* Refresh patchset
* Bump Standards
-- Alessio Treglia <alessio@debian.org> Sun, 04 Sep 2016 17:04:11 +0100
lives (2.6.0-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* debian/control: Bump Standards-Version.
* debian/patch/ffmpeg3.0.patch: Apply upstream patch to fix build with
ffmpeg 3.0. (Closes: #803839)
-- Sebastian Ramacher <sramacher@debian.org> Tue, 08 Mar 2016 22:08:54 +0100
lives (2.4.8-1) unstable; urgency=medium
* Team upload.
* New upstream release. (Closes: #810874) (LP: #1491727)
- Fix crash on startup. (Closes: #791491)
* Drop repack scripts, no longer needed.
* Migrate to automatic debug packages.
* debian/control:
- Update Homepage.
- Update Vcs-*.
* debian/watch: Update download location. (Closes: #810876)
* debian/patches:
- 01-cdda2wav_to_icedax.patch: No longer needed since cdda2wav and icedax
are both supported.
- 03-libav10.patch, 04-gtk-3.16.patch, 05-gcc-5.patch,
9990-buildsystem.patch: Removed, included upstream.
- 04-underlinking.patch: Fix various cases of underlinking.
* debian/libweed0.symbols: Add new symbols.
* debian/lives.menu: Removed (command-in-menu-file-and-desktop-file).
* debian/rules: Update code to remove unwanted directories.
-- Sebastian Ramacher <sramacher@debian.org> Thu, 28 Jan 2016 21:00:21 +0100
lives (2.4.0~ds0-1) unstable; urgency=medium
[ Alessio Treglia ]
* New upstream release:
- Implement workaround for expose event problems in gtk+ 3.10.
- Fix threading crash in multitrack.
- Fix invalid saving of layouts in multitrack.
- Fix sizes of scrolled windows inside dialog boxes (regression).
- Fix timeline start position for gtkgrid widget in multitrack.
- Fix "fade background mode" (b) so it looks nice again.
- Stability fix for expose event during startup.
- Stability fix for mkv_decoder with broken end frames.
- Implement C++ language bindings (liblives).
- Fixes for several smaller issues (Thomas Berger).
- Code cleanup / reformat.
- Updated translations to UK English, French, Galician, German,
Russian and Simplified Chinese.
* Fix build system race that broke parallel building.
Thanks to Colin Watson for patch. (Closes: #778649, #732205)
* Fix upstream Makefile to prevent FTBFS.
* Refresh patches.
* Drop dependency on libiol. (Closes: #789573)
[ Sebastian Ramacher ]
* debian/control:
- Bump Standards-Version to 3.9.6.
- Drop M-A: same from from lives-dbg to fix
dependency-is-not-multi-archified.
* debian/patches:
- 04-gtk-3.16.patch: Apply upstream patch to fix build with GTK+ 3.16.
(Closes: #789858)
- 05-gcc-5.patch: Apply upstream patch to fix build with GCC 5. (Closes:
#777984)
* debian/libweed0.symbols: Mark weed_get_value as optional. It is defined as
inline and is no longer emitted by gcc 5.
-- Sebastian Ramacher <sramacher@debian.org> Sat, 11 Jul 2015 17:49:29 +0200
lives (2.2.8~ds0-1) unstable; urgency=medium
[ Alessio Treglia ]
* Imported Upstream version 2.2.8~ds0
- Fix crash in Insert Frames (regression).
- Compilation fix for gtk+ 2.x
- Compilation fixes for freeBSD
- Add check for avformat_close_input in libav
- Fix crash in projectM plugin.
- Fix regression in x264_encoder.
- Fix audio codec bug in mencoder_encoder.
- Fix crash in "Show Details" after encoding failure.
- Fix regression in "Insert Silence" for clips with no existing
audio.
- Check for avconv properly for Ubuntu in ffmpeg_encoder.
- Update dirac / multi_encoder to encode to dirac/vorbis/mkv.
- Add lossless dirac encoding.
- Updates to fix lives_mkv_encoder.
* Imported Upstream version 2.2.7~ds0 (LP: #1404877):
- Add support for audio triggered generators.
- Add support for projectM (milkdrop) generators.
- Improvements to openGL playback plugin.
- Add permanent inputs in jack and pulse audio when
handling external audio.
- Fix bug in chroma_blend transition.
- Further code cleanup.
- Fix text width for "show VJ keys" window.
- Remove unnecessary deinterlacing from threaded player.
- Added OSC commands /clip/selection/rte_apply, /clip/undo
and /clip/redo.
- Add libvisual plugins to correct submenu (regression).
- Minor fixes for the rfx builder window.
- Minor fixes for merge in clip editor.
* Refresh patches.
[ Sebastian Ramacher ]
* Replace libdirac-dev with libschroedinger-dev for dirac support.
(Closes: #761013)
-- Alessio Treglia <alessio@debian.org> Sat, 14 Feb 2015 11:56:05 +0000
lives (2.2.6~ds0-1) unstable; urgency=medium
* Imported Upstream version 2.2.6~ds0
* Git refresh patches.
-- Alessio Treglia <alessio@debian.org> Thu, 18 Sep 2014 10:10:00 +0100
lives (2.2.5~ds0-1) unstable; urgency=medium
* New upstream release.
* Refresh patchset.
-- Alessio Treglia <alessio@debian.org> Sun, 06 Jul 2014 12:13:08 +0100
lives (2.2.4~ds0-3) unstable; urgency=medium
* Team upload.
* debian/patches/03-libav10.patch: Fix some more issues when built against
libav10. (Closes: #739327)
-- Sebastian Ramacher <sramacher@debian.org> Tue, 13 May 2014 13:32:38 +0200
lives (2.2.4~ds0-2) unstable; urgency=medium
* Rewrite debian/copyright. (Closes: #742679)
-- Alessio Treglia <alessio@debian.org> Sun, 04 May 2014 02:28:07 +0100
lives (2.2.4~ds0-1) unstable; urgency=low
* Upload to unstable.
* New upstream release.
* Refresh patchset in debian/patches/:
- Drop 99-reload_osc.patch, applied upstream.
- Drop 99-workaround_av_find_stream_info.patch, applied upstream.
* Downgrade build-deps on libav to let it build on unstable.
-- Alessio Treglia <alessio@debian.org> Tue, 22 Apr 2014 11:24:47 +0100
lives (2.2.2~ds0-4) experimental; urgency=low
* Team upload.
* Compile against libav10 (Closes: #739327)
-- Reinhard Tartler <siretart@tauware.de> Fri, 04 Apr 2014 21:47:42 -0400
lives (2.2.2~ds0-4~exp1) experimental; urgency=low
* Split lives's binary and plugins.
* Introduce multi-arch.
* Port plugins to Python 3.
* Drop Python 2 support.
-- Alessio Treglia <alessio@debian.org> Thu, 13 Mar 2014 09:00:35 +0000
lives (2.2.2~ds0-3) unstable; urgency=medium
* debian/patches/99-workaround_av_find_stream_info.patch:
- Replace dirty workaround with proper patch cherry-picked from
upstream's SVN (see #741132).
* debian/patches/99-reload_osc.patch:
- Prevent crash when reloading OSC devices.
-- Alessio Treglia <alessio@debian.org> Tue, 11 Mar 2014 14:32:01 +0000
lives (2.2.2~ds0-2) unstable; urgency=low
* Fix catastrophic crash in 2.2.2. (Closes: #741132)
-- Alessio Treglia <alessio@debian.org> Mon, 10 Mar 2014 17:10:34 +0000
lives (2.2.2~ds0-1) unstable; urgency=low
* New upstream bugfix release.
* Refresh patches.
* Refresh debian/*'s copyright holders.
-- Alessio Treglia <alessio@debian.org> Sat, 08 Mar 2014 15:06:43 +0000
lives (2.2.0~ds0-1) unstable; urgency=low
* New upstream release:
- Add new avformat_decoder.
- Optimisations for handling larger clips.
- Use threading for pulling frames from video clips.
- Much faster loading/saving of layouts in multitrack.
- Fix crash in swscale when frame width is not multiple of 4.
- Fix crash (regression) setting parameters in multitrack.
- Fix breakage in multiple image loading.
- Fix opening preview for quick opening clips.
- Fix bug in "delete frames" for virtual clips.
- Fix audio encoding in "Encode Selection"
- Fixes for letterbox mode playback.
- Compilation fixes for Debian Sid.
- Various improvements to rte window.
- Add "randomiser" data processing plugin.
- Improvements to colour correction and tvpic effects.
- Fix jack transport during playback (regression).
- Fix for saving data connection mappings.
- Implement multiple inputs per output in the data connector.
- Optimised thread locking between audio and video effects threads.
- Fix problems with setting defaults for colour values.
- Decoder plugin fixes for ffmpeg 2.2 (needs further testing).
- Preserve clip comments and renamed clip names between restarts.
- Small fixes for rfx_builder window.
- Minor GUI improvements.
- Add initial translation to Piemontese. (Simon Uslengh).
- Updated translations to UK English, German, Russian and Ukranian.
* Refresh patches, remove 03-libav9.patch as it is applied upstream.
-- Alessio Treglia <alessio@debian.org> Mon, 02 Dec 2013 09:34:40 +0000
lives (2.0.6~ds0-2) unstable; urgency=low
* Team upload.
* Further porting to libav 9. (Closes: #729344)
- debian/patches/03-libav9.patch: Use patch from upstream to fix compilation
issues with libav9.
- debian/control: Add dh-autoreconf and autoconf-archive to Build-Depends
instead of autoconf-dev.
- debian/rules: Use dh-autoreconf to rebuild configure.
* debian/control:
- Bump Standards-Version to 3.9.5.
- Remove ffmpeg from Suggests. (Closes: #691434)
- Add libfftw3-dev to Build-Depends to build beat detector plugin.
(Closes: #726193)
* debian/rules: Remove executable bit from txt files in
usr/lib/lives/plugins/effects/realtime/weed/data/fourKlives/songs.
-- Sebastian Ramacher <sramacher@debian.org> Fri, 29 Nov 2013 22:26:44 +0100
lives (2.0.6~ds0-1) unstable; urgency=low
* New upstream release.
* Promote youtube-dl to Recommends.
* Refresh patches.
-- Alessio Treglia <alessio@debian.org> Tue, 08 Oct 2013 10:10:27 +0100
lives (2.0.5~ds0-2) unstable; urgency=low
* Team upload.
* debian/patches/03-libav9.patch: Fix compilation with libav 9. Thanks to
Moritz Muehlenhoff for the inital patch. (Closes: #720805)
* debian/control: Bump debhelper in Build-Depends to >= 8.1 for
*-{arch,indep} support (required by Standards-Version 3.9.4)
-- Sebastian Ramacher <sramacher@debian.org> Tue, 27 Aug 2013 18:18:51 +0200
lives (2.0.5~ds0-1) unstable; urgency=low
* New upstream release.
* Refresh 01-cdda2wav_to_icedax.patch.
-- Alessio Treglia <alessio@debian.org> Sat, 29 Jun 2013 23:03:39 +0100
lives (2.0.4~ds0-1) unstable; urgency=low
* Upload to unstable.
* New upstream bugfix release:
- Fix regressions in Paste as New, Fade Audio In/Out, load images.
- Fix occasional crash in load new audio.
- Fix bug affecting resizing some webcam frames.
- Fix rowstride errors in effecTV plugins.
- Add revTV effect.
* Refresh patches.
* Update libweed0's symbols file.
* Remove obsolete DM-Upload-Allowed: yes field.
-- Alessio Treglia <alessio@debian.org> Mon, 06 May 2013 08:24:00 +0200
lives (2.0.3~ds0-1) experimental; urgency=low
* New upstream release.
-- Alessio Treglia <alessio@debian.org> Wed, 10 Apr 2013 16:31:03 +0100
lives (2.0.2~ds0-1) experimental; urgency=low
* New upstream release:
- Fix crash in recording external audio with pulse player (regression).
- Minor widget fixes with startup dialogs and labels (regression).
- Refactor timeline drawing in multitrack.
- Enable compilation with gtk+ 3.
- Implement new timeline widget for gtk+ 3.
- Prevent some audio being dropped when re-entering multitrack.
- Fixes for beat_detector plugin.
- Various optimisations and minor bugfixes.
- Updates to all language translations (added translator credits).
* Refresh patches.
* debian/control:
- Port to GTK+3.0.
- Fix Vcs canonical URL.
* debian/copyright: Refresh.
-- Alessio Treglia <alessio@debian.org> Sun, 07 Apr 2013 19:16:32 +0100
lives (1.8.2~ds0-1) experimental; urgency=low
* New upstream release.
* Drop 11-format_security.patch, applied upstream.
* Bump Standards.
-- Alessio Treglia <alessio@debian.org> Mon, 28 Jan 2013 14:29:18 +0000
lives (1.8.0~ds0-1) experimental; urgency=low
* New upstream release:
- Fix breakage in multitrack effects (regression).
- Fix crash when re-entering multitrack mode (regression).
- Fix a crash in text parameter entry (regression).
- Add support for compound filters.
- Add new realtime effect - shift.
- Add new data processing filters: alpha_means, data_processing.
- Add new compound effect - image_stabilizer (requires openCV).
* Demote youtube-dl to Suggests. (LP: #1060158)
* Cherry-pick 11-format_security.patch from upstream trunk to prevent
FTBFS with -Wformat -Werror=format-security.
* Refresh patches.
-- Alessio Treglia <alessio@debian.org> Sat, 29 Dec 2012 23:46:21 +0000
lives (1.6.4~ds1-1) experimental; urgency=low
* New upstream bugfix release.
* Remove debian/patches/03-fix_startup_with_jack.patch, applied upstream.
* Refresh other patches.
* debian/control:
- Build-Depends on libmjpegtools-dev.
- Promote mencoder to Recommends.
- Promote python to Depends.
* debian/README.Debian:
- transcode and mencoder are now available in Debian.
-- Alessio Treglia <alessio@debian.org> Wed, 22 Aug 2012 14:58:39 +0200
lives (1.6.2~ds1-2) unstable; urgency=low
* Really set JACK as audio backend when Pulse is not
available. (Closes: #664523)
-- Alessio Treglia <alessio@debian.org> Sun, 08 Jul 2012 11:31:59 +0200
lives (1.6.2~ds1-1) unstable; urgency=low
* New upstream bugfix release:
- Clean up timer code.
- Show more accurate progress for rendering after recording.
- Call init triggers for rendered transitions.
- Fix triggers for rendered effects (regression).
- Fix regression in file open preview.
- Add workaround for breakage in mplayer/ffmpeg (see
http://bugzilla.mplayerhq.hu/show_bug.cgi?id=2071)
- Fix hang in Preferences open when image type is set to
jpeg (regression).
- Fix regression in undo cut.
- Fix regression for pad audio.
- Quick opening of mpegts files.
- Faster backup/restore.
- Enable exchange of layouts between 32 bit and 64 bit systems.
- Add support for video analyser plugins.
- Add support for data processing plugins.
- Add support for audio generator plugins.
* Refresh patches.
* Enable hardening flags.
* Add ${perl:Depends},${python:Depends} to lives-data's Depends field.
* Remove static libraries.
* Update debian/copyright.
* Update changelog.
* Bump Standards.
-- Alessio Treglia <alessio@debian.org> Tue, 26 Jun 2012 09:20:52 +0200
lives (1.6.1~ds1-1) unstable; urgency=low
* New upstream release:
- Add (experimental) openGL playback plugin.
- Optimise playback by tweaking audio settings.
- Fix regression in backup.
- Fix floating point fps bug for mkv decoder.
- Fix external window capture to work with Compiz.
- Minor GUI fixes.
- Implement recording of external audio during playback.
- Prevent clip names getting squashed in sets.
- Further code cleanup.
- Updated translations to Ukranian, Finnish and UK English.
* Replace hurd-i386 with hurd-any.
* Blacklist frei0r on armhf.
* Add youtube-dl to Recommends of lives.
* Add experimental support for GLee.
* Refresh patches.
* Remove 91-lives_160_ftbfs.patch, applied upstream.
-- Alessio Treglia <alessio@debian.org> Sat, 04 Feb 2012 17:46:58 +0100
lives (1.6.0~ds1-4) unstable; urgency=low
* Fix small typo in upstream patch.
-- Alessio Treglia <alessio@debian.org> Fri, 03 Feb 2012 12:55:01 +0100
lives (1.6.0~ds1-3) unstable; urgency=low
* Add libweed-dbg to lives-dbg's Depends field.
* Second attempt to fix FTBFS on kfreebsd.
-- Alessio Treglia <alessio@debian.org> Fri, 03 Feb 2012 11:00:21 +0100
lives (1.6.0~ds1-2) unstable; urgency=low
* Attempt to fix FTBFS on kfreebsd.
-- Alessio Treglia <alessio@debian.org> Thu, 02 Feb 2012 00:22:33 +0100
lives (1.6.0~ds1-1) unstable; urgency=low
* New upstream stable release.
* Add mechanism to repack upstream tarball to strip out VCS directories.
* Drop 11-weed_headers.patch, applied upstream.
-- Alessio Treglia <alessio@debian.org> Fri, 27 Jan 2012 09:51:19 +0100
lives (1.4.9-2) unstable; urgency=low
* Build-depend on libxv-dev (Closes: #652822).
-- Alessio Treglia <alessio@debian.org> Thu, 05 Jan 2012 12:29:18 +0100
lives (1.4.9-1) unstable; urgency=low
* New upstream release.
* Refresh patches.
-- Alessio Treglia <alessio@debian.org> Fri, 16 Dec 2011 09:52:11 +0100
lives (1.4.8-1) unstable; urgency=low
* New upstream release.
* Build-depend on libswscale-dev.
* Drop 03-libav.patch, applied upstream.
* Take patch 11-weed_headers.patch from upstream trunk to prevent it
FTBFS due to the misplacement of libweed's header files (shortly, it
failed to build when libweed was not system-wide available).
* Refresh patches.
-- Alessio Treglia <alessio@debian.org> Sun, 04 Dec 2011 21:24:07 +0100
lives (1.4.7-1) unstable; urgency=low
* New upstream release (LP: #878233):
- Instant opening of asf (wmv) files.
- Fix broken opening of float and reverse endian audio. *
- Implement enable/disable of individual decoder plugins in Preferences.
- Complete translation to Japanese.
- Updated translations to Ukranian, Spanish and Polish.
* wrap-and-sort -a -b -s
-- Alessio Treglia <alessio@debian.org> Sat, 22 Oct 2011 11:17:51 +0200
lives (1.4.6-1) unstable; urgency=low
* New upstream bugfix release (LP: #836520):
- Fix hang when applying effect to a single frame in a virtual clip.
- Fix decoding for some ogg/theora files with broken keyframes.
- Add several new OMC commands.
- Compatibility fixes for frei0r 1.2.
- Various minor fixes.
-- Alessio Treglia <alessio@debian.org> Tue, 30 Aug 2011 10:06:07 +0200
lives (1.4.5-2) unstable; urgency=low
* Add build-dep on libunicap2-dev (LP: #821791) to enable live v4l-capable
devices.
* Add missing build-dep on libavformat-dev.
-- Alessio Treglia <alessio@debian.org> Sat, 06 Aug 2011 11:52:14 +0200
lives (1.4.5-1) unstable; urgency=low
* New upstream release:
- Add -tmpdir startup option.
- Stop PAL formats reverting to NTSC in x264 encoder.
- Fix bug to add fewer blank lines to ~/.lives file.
- Do not show "Loaded subtitles" message when subtitles are not loaded.
- Instant opening of some .flv files.
- Move correct pointer (start or end) when the timeline is clicked in
longer files.
- Add video fade in/out effect.
- Fix frames being cut after applying effects in virtual clips.
- Clean up code for rendered effects post-processing.
- Clean up code for dynamic menu building.
- Front end stability fixes.
- Mouse scroll now switches clips in the play window too.
* Enable parallel builds.
* Replace negated list of architectures with linux-any (Closes: #634372);
use kfreebsd-any when other Linux archs are blacklisted.
-- Alessio Treglia <alessio@debian.org> Tue, 26 Jul 2011 10:58:21 +0200
lives (1.4.4-1) unstable; urgency=low
* New upstream release:
- Fix compilation problem for missing linux/videodev.h
- Fix important bug with audio shifting when leaving/re-entering
multitrack mode. *
- Add support for spacial multithreading in effects plugins.
- Fix antialias option in Preferences (regression). *
- Fix buttons in Frame Calculator (regression). *
- Fix updating of parameters with fileread textfields. *
- Add new oggstream playback plugin.
- Add new realtime effects: RGB_delay, YUV_delay and mask_overlay.
- Updated translations to Brazilian Portuguese, German, Japanese
and Ukranian.
* Refresh patches.
* Remove 03-v4l1-videodev.patch as it is no longer needed.
* Remove useless debian/patches/removepy.diff.
-- Alessio Treglia <alessio@debian.org> Mon, 20 Jun 2011 12:05:30 +0200
lives (1.4.2-2) unstable; urgency=low
* Blacklist libv4l-dev on hurd,kfreebsd-* since it is not available on
these architectures.
* debian/{control,rules}:
- Switch to dh_python2.
* debian/control:
- Fix lintian's description-synopsis-starts-with-article warning.
- Update Standards-Version to 3.9.2.
-- Alessio Treglia <alessio@debian.org> Tue, 26 Apr 2011 12:48:35 +0200
lives (1.4.2-1) unstable; urgency=low
* New upstream release.
* Rely on libv4l-dev to provide V4L1 support.
* Build-Depends on libv4l-dev.
* Refresh 01-cdda2wav_to_icedax.patch.
-- Alessio Treglia <alessio@debian.org> Wed, 30 Mar 2011 09:38:01 +0200
lives (1.4.1-1) unstable; urgency=low
* New upstream release.
* Needs GTK+2.0 2.16 or higher, bump build-dependency properly,
* Refresh 01-cdda2wav_to_icedax.patch patch.
* Refresh 02-drop_py3_multiencoder.patch patch.
* Remove svn control directories.
* Prune empty directories.
-- Alessio Treglia <alessio@debian.org> Thu, 24 Feb 2011 14:09:51 +0100
lives (1.3.10-3) unstable; urgency=low
* Upload to unstable.
-- Alessio Treglia <alessio@debian.org> Tue, 08 Feb 2011 23:56:31 +0100
lives (1.3.10-2) experimental; urgency=low
* Add -DBG packages.
-- Alessio Treglia <alessio@debian.org> Thu, 20 Jan 2011 16:22:27 +0100
lives (1.3.10-1) experimental; urgency=low
* New upstream release:
- Fix regression in multitrack effects rendering.
- Updated translation to Ukranian.
-- Alessio Treglia <alessio@debian.org> Mon, 20 Sep 2010 15:18:35 +0200
lives (1.3.9-1) experimental; urgency=low
* Yet-another-upstream-bugfix-release to fix a startup bug.
-- Alessio Treglia <alessio@debian.org> Thu, 16 Sep 2010 11:15:15 +0200
lives (1.3.8-1) experimental; urgency=low
* New upstream release:
- Fix possible crash on startup bug; this regression affects
release 1.3.7 on Ubuntu maverick only (LP: #638869).
- Further audio insert/delete optimisations.
- Fix bug - audio rendering can be affected by preview.
- Quantise audio rendering to output frame rate.
* Refresh 01-cdda2wav_to_icedax.patch patch.
* Remove 11-svn_rev715.patch patch, applied upstream.
* Remove 12-svn_rev716.patch patch, applied upstream.
* Remove 13-svn_rev718.patch patch, applied upstream.
* Add debian/source/local-options to de-apply patches after
running git-buildpackage.
-- Alessio Treglia <alessio@debian.org> Wed, 15 Sep 2010 17:26:17 +0200
lives (1.3.7-1) experimental; urgency=low
* New upstream release:
- Version 1.3.7 (13 Sep 2010)
+ Fix regression in Insert Silence.
+ Optimise audio insert/delete.
+ Updated translation to Estonian.
- Version 1.3.6 (11 Sep 2010)
+ Fix crash when setting custom encoding variables [regression].
+ Display correct output format/audio format when encoding [regression].
+ Fix breakage in yuv4mpeg stream loader [regression].
+ Fix frame loss in undo resample [regression].
+ Fix for insert with downsampling [regression].
+ Allow cancel in Paste as New.
+ Add -nothreaddialog startup option.
* Refresh 01-cdda2wav_to_icedax.patch patch.
* debian/patches/11-svn_rev715.patch:
- Fix rendering after preview.
* debian/patches/12-svn_rev716.patch:
- Quantise audio rendering to op frame rate.
* debian/patches/13-svn_rev718.patch:
- Small fix for 'nervous' key.
- Add key to show sync stats.
* debian/rules:
- Improve the grepping of the 'Version' field, otherwise it may fail
to build with unusual changelog entries.
-- Alessio Treglia <alessio@debian.org> Wed, 15 Sep 2010 10:01:06 +0200
lives (1.3.5-2) experimental; urgency=low
* Rename cdda2wav_to_icedax.diff patch.
* Drop Python3 version of multiencoder plugin (LP: #632833).
-- Alessio Treglia <alessio@debian.org> Fri, 10 Sep 2010 13:33:11 +0200
lives (1.3.5-1) experimental; urgency=low
* New upstream release.
* Update debian/gbp.conf
* Bump Standards.
* Refresh debian/patches/cdda2wav_to_icedax.diff patch.
* Remove debian/patches/10-missing_include.patch patch, applied
upstream.
-- Alessio Treglia <alessio@debian.org> Fri, 10 Sep 2010 09:26:32 +0200
lives (1.3.4-1) unstable; urgency=low
* New upstream release:
- Minor a/v sync fix.
- Add more formats to x264 encoder (needs testing).
- Add experimental webm encoding support in ffmpeg_encoder.
- Fix crash when right clicking in mt with no clips loaded.
- Const correctness in code (A. Penkov)
- Fix possible crash in rendered generators, and add them to crash
recovery.
- Thread context fix for gtk+ 2.22 and higher.
- Fix startup mplayer png/alpha test.
- Fix end image size problem (regression).
- Updates to decoder plugins (make threadsafe).
- Add plugin decoder support for ogg/dirac files.
- Faster seeking in ogg/theora files.
- Apply theming to the Prefences dialog (A. Kolga)
- Move weed palette definitions into weed-palettes.c
- Code cleanup - use enums instead of #defines where possible.
- Add new scribbler plugin (Penkov)
- Initial translation to Croatian.
- Updated translations to Hebrew, Polish, Turkish, Russian and Italian.
* Change my email address
* Update debian/copyright.
* Add menu file provided by Sérgio Cipolla (Closes: #587647).
* Bump Standards.
* Suggest mencoder,mjpegtools.
* Add .gitignore file.
* Refresh cdda2wav_to_icedax.diff patch.
* Drop removepy.diff, upstream has renamed *.py files.
* Drop pgrep_pkill_remove.diff patch since p{grep,kill} checks have
been removed from configure{,.in}.
* Continue dropping Python 3 modules.
* Switch to format 3.0 (quilt).
* Don't rename marcos-encoders:
- They have been renamed by upstream.
- Rename manpages.
- Update debian/lives-data.manpages file.
* Adjust versioned debhelper build-dependency.
* Use autotools_dev addon.
* Build-depend on libvorbis-dev to provide Vorbis support.
* debian/watch: Point to bzip2-ed tarball.
* Add patch to fix FTBFS due to a missing #include statement.
* debian/copyright:
- Fix copyright-refers-to-deprecated-bsd-license-file lintian warning.
* Remove .la files, it's a release goal for squeeze.
* Move all doc files provided by upstream under /usr/share/doc/lives.
-- Alessio Treglia <alessio@debian.org> Tue, 06 Jul 2010 12:00:11 +0200
lives (1.3.3-2) unstable; urgency=low
[ Harry Rickards ]
* Added a patch that removes the buildtime checks for the runtime
dependencies pgrep and pkill from configure and configure.in
* Added procps to runtime dependencies
[ Alessio Treglia ]
* Improve packages description.
-- Alessio Treglia <quadrispro@ubuntu.com> Tue, 11 May 2010 20:06:42 +0200
lives (1.3.3-1) unstable; urgency=low
[ Harry Rickards ]
* Removed three patches that were integrated into upstream. Fixes build
problem in 1.3.3-1
* Fixed the hyphen-used-as-minus-signs in build-lives-rfx-plugin.1
* Added Alexej Kolga (new upstream author) to debian/copyright file.
* Added /usr/bin/build-lives-rfx-plugin and /usr/bin/build-lives-rfx-
plugin-multi to debian/lives-data.install as they weren't present in
the build .debs. Also added the manpages.
* Imported Upstream version 1.3.3
[ Alessio Treglia ]
* Add Forwarded field into debian/patches/removepy.diff patch.
-- Alessio Treglia <quadrispro@ubuntu.com> Mon, 10 May 2010 23:15:53 +0200
lives (1.3.2-3) unstable; urgency=low
[ Harry ]
* Added two patches from upstream, fixing a crash in effect previews
and an 'Are you sure' prompt
[ Alessio Treglia ]
* Set pkg format to 1.0.
-- Alessio Treglia <quadrispro@ubuntu.com> Tue, 27 Apr 2010 11:48:16 +0200
lives (1.3.2-2) unstable; urgency=low
[ Harry Rickards ]
* Added patch from upstream that fixes the mipsel build.
* Added packaging exception for frei0r-plugins-dev so package builds
on sparc64
[ Alessio Treglia ]
* debian/patches/makefile_am.diff: Add patch tags as per DEP-3.
-- Alessio Treglia <quadrispro@ubuntu.com> Sun, 11 Apr 2010 12:40:32 +0200
lives (1.3.2-1) unstable; urgency=low
[ Harry Rickards ]
* Updated packaging exceptions so package builds on avr32, m68k and
sparc64.
[ Alessio Treglia ]
* New upstream release.
* Refresh debian/patches/cdda2wav_to_icedax.diff patch.
* debian/patches/removepy.diff.
- Refresh.
- Correct a small typo.
-- Alessio Treglia <quadrispro@ubuntu.com> Sun, 21 Mar 2010 23:08:46 +0100
lives (1.2.1-1) unstable; urgency=low
* New upstream release.
* debian/lives.1: Fix hyphen-used-as-minus-sign lintian warning.
* Bump Standards.
* Update debian/copyright.
* Refresh all patches, drop imageloading.diff, applied by upstream.
-- Alessio Treglia <quadrispro@ubuntu.com> Sun, 28 Feb 2010 12:24:13 +0100
lives (1.1.8-2) unstable; urgency=low
[ Harry Rickards ]
* Changed maintainer to Debian Multimedia Maintainers
* Started using git
* Moved dirac_encoder to lives_dirac_encoder (Closes: #564665)
* Made removepy patch have DEP-3 compliant header
* Removed the old VCS tags for SVN
* Added myself to Uploaders:
* Moved from dpatch to quilt
* Added VCS-Git and VCS-Browser tags
* Added upstream patch that fixes image loading. Will be released
upstream in 1.1.9
* Removed frei0r-plugins-dev for powerpc
* Removed unnecessary build-depends on python
* Removed libdirac-encoder0 and libdirac-decoder0 as they should
be pulled in via shlibs.
* Updated to use Debian fork of cdda2wav, icedax.
* Added more detail to debian/README.source and updated for quilt
* Added debian/README.Debian giving details about transcode,
mencoder and mjpegtools
* Added theora and ogg to Recommends: in debian/control so users at
least have ogg and theora to encode in
[ Alessio Treglia ]
* debian/rules:
- Don't include quilt.make rules file, it's unnecessary.
- Adjust clean target properly.
* debian/control:
- Set debhelper build-dependency version to 7.0.50~ (to make backporters'
life easy).
- Bump-up quilt to (at least) 0.46-7~.
- Add myself to the Uploaders field.
- Replace libjack0.100.0-dev with libjack-dev.
- Drop unnecessary dependencies already provided by shlibs files.
- Small corrections to the runtime packages description.
* debian/patches/removepy.diff:
- Converted to quilt format.
* Remove debian/LiVES.desktop, the same file is already provided by
upstream.
[ Reinhard Tartler ]
* use multiline depends for lives' recommends field
-- Harry Rickards <hrickards@l33tmyst.com> Mon, 11 Jan 2010 18:55:23 +0000
lives (1.1.8-1) unstable; urgency=low
* New upstream release (LP: #503348)
-- Harry Rickards <hrickards@l33tmyst.com> Wed, 06 Jan 2010 10:27:56 +0000
lives (1.1.7-1) unstable; urgency=low
* Added marcos-encoders (Closes: #562515) and added a patch to make this work
* Because of the patch added dpatch to debian/rules and debian/control
* New upstream release (Closes: #555563)
* Added dirac and ffmpeg to debian/control for marcos-encoders
* Set default dpkg flags to none (LP: #481085)
-- Harry Rickards <hrickards@l33tmyst.com> Mon, 28 Dec 2009 09:03:12 +0000
lives (1.1.6-1) unstable; urgency=low
* New upstream release
* Unupdated debian/rules for dpatch
* Removed patch for fixing the bug because in upstream now
-- Harry Rickards <hrickards@l33tmyst.com> Mon, 16 Nov 2009 16:27:02 +0000
lives (1.1.5-2) unstable; urgency=low
* Removed the -present bit in debian/copyright
* Added patch for fixing a bug that causes a crash on playback with pulse
* Updated debian/rules for dpatch
-- Harry Rickards <hrickards@l33tmyst.com> Fri, 30 Oct 2009 15:10:15 +0000
lives (1.1.5-1) unstable; urgency=low
* New upstream version.
* Fixed copyright to include myself
* Added old previously-removed changelog entries
-- Harry Rickards <hrickards@l33tmyst.com> Tue, 27 Oct 2009 16:55:59 +0000
lives (1.1.4-1) unstable; urgency=low
* New upstream version
* Removed SaveFileName patch from debian/patches as it's now integrated
in upstream
* Added ogmtools to debian/control to Depends:
* Removed libdirectfb-dev from Build-Depends: for hurd-i386 because it needs
porting.
* Changed section from graphics to video to fix override disparity (video was
only added as a section recently)
* Updated descriptions
-- Harry Rickards <hrickards@l33tmyst.com> Sat, 17 Oct 2009 07:36:38 +0100
lives (1.1.3-1) unstable; urgency=low
* New upstream version
* Updated gtk version required to 2.14 or higher
* Changed depends in debian/control for libweed-dev depending libweed0
to equal source version
* Added libpulse-dev to Build-Depends:
* Added libpulse0 to Depends
* Added SaveFileName patch to debian/patches on upstream advice
-- Harry Rickards <hrickards@l33tmyst.com> Mon, 28 Sep 2009 16:30:05 +0000
lives (1.1.2-2) unstable; urgency=low
* Fixed FTBFS because of forgotten ! in debian/control (Closes: #546305)
* Changed x11utils to x11-utils
-- Harry Rickards <hrickards@l33tmyst.com> Sat, 12 Sep 2009 16:07:46 +0100
lives (1.1.2-1) unstable; urgency=low
* New upstream version
* Added build dependency on libasound2-dev per upstream advice
* Added dependency on libasound2 per upstream advice
-- Harry Rickards <hrickards@l33tmyst.com> Sat, 12 Sep 2009 09:42:10 +0100
lives (1.0.0-6) unstable; urgency=low
* Removed libsox-dev from Build-Depends per upstream request
* Removed frei0r for arm
* Removed frei0r for powerpc as frei0r isn't endian safe
-- Harry Rickards <hrickards@l33tmyst.com> Fri, 28 Aug 2009 17:13:12 +0100
lives (1.0.0-5) unstable; urgency=low
* Removed the bit about PATH from debian/wrapper/lives
* Removed duplicate entry of Niels Elburg from debian/copyright
* Added the right dependencies taken from the packaging notes
* Fixed debian/watch to not think pre-release versions are newer than
release ones
* Replaced automake1.10 with automake
* Made frei0r-plugins-dev and frei0r-plugins not for kfreebsd
* Made libavc1394, libavc1394-dev, libraw1394 and libraw1394-dev not for
kfreebsd
* Added SVN and VCS Browser URL's to debian/control
* Made the end of the smogrify manpage a bit more formal
* Removed the autogen.sh bit from debian/rules as it doesn't seem to work
Seeing as autogen.sh doesn't seem to be needed dh must do all the stuff
automatically
* Removed the shard library depends from Depends
-- Harry Rickards <hrickards@l33tmyst.com> Fri, 21 Aug 2009 16:30:14 +0100
lives (1.0.0-4) unstable; urgency=low
* Updated policy version
* Listed the libOSC authors
* Added the libOSC license to debian/copyright
* Listed the intl/ authors
* Added the licenses for lives-plugins/icons/
* Listed the authors for lives-plugins/icons/
-- Harry Rickards <hrickards@l33tmyst.com> Fri, 21 Aug 2009 09:29:30 +0100
lives (1.0.0-3) unstable; urgency=low
* Changed debian/rules to use dh(1)
-- Harry Rickards <hrickards@l33tmyst.com> Thu, 30 Jul 2009 12:19:01 +0100
lives (1.0.0-2) unstable; urgency=low
* libweed0 dependency for lives is now versioned
* Used -s for debhelper instead of -a
-- Harry Rickards <hrickards@l33tmyst.com> Wed, 29 Jul 2009 14:39:22 +0100
lives (1.0.0-1) unstable; urgency=low
* Taken over the package after asking upstream what I could do to help with
the packaging. Gürkan doesn't have a problem with this.
-- Harry Rickards <hrickards@l33tmyst.com> Sun, 26 Jul 2009 09:24:42 +0100
lives (0.9.9.7-1) unstable; urgency=low
* Initial release. (Closes: #247337)
-- Gürkan Sengün <gurkan@phys.ethz.ch> Tue, 07 Apr 2009 09:34:16 +0100
|