diff --git a/NEWS b/NEWS index 0c0d6913afa9d2b6e4872f933fda1c6c55aec392..97561a0c1d9c389fa8d3edcba06661925af400ed 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +2018 August 29th - Pitivi 0.999 + + * Selecting a range of clips can be done by clicking followed by Shift+click + * The advanced settings of the h264 encoder allow specifying a Profile + * Rendering non-square pixels was broken and has been disabled + * The xges files have an icon associated + * The Save and Render buttons in the headerbar have been moved on the right side + * Lots of bug fixing + 2017 September 2nd - Pitivi 0.99 * Many performance improvements diff --git a/RELEASE b/RELEASE deleted file mode 100644 index 49822f2955ca3e13a827ad9f4e47a1f99f98c31e..0000000000000000000000000000000000000000 --- a/RELEASE +++ /dev/null @@ -1,74 +0,0 @@ -0.99 Release "Ocean Big Chair" ------------------------------- - -This is the ninth release for the new version of Pitivi based on GES, -the GStreamer Editing Services library. This is a bug-fix release, and -can be considered a release candidate for version 1.0. - -Many performance improvements have been made, and many bugs have been fixed. - - -== Requirements == - -For this release, we depend on GStreamer, Gst-Python, GES 1.12.3. - -We now use Gnome GSound instead of pycanberra. - -We now depend on gst-devtools for tests. - -We got rid of `configure` and `Makefile`, and now rely on Meson and Ninja. -See http://mesonbuild.com/Quick-guide.html for an intro. - -Refer to Pitivi's check.py for the dependencies' versions for this release. - -== Contributors for this release == - - 104 Thibault Saunier - 78 Alexandru Băluț - 14 Stefan Popa - 14 Suhas Nayak - 4 Naman Yadav - 3 Fabian Orccon - 2 Shivam Tripathi - 2 Umang Jain - 1 Aswin Mohan - 1 Dan Muntean - 1 Igor Gnatenko - 1 Michael Sheldon - 1 Rodolfo Ribeiro Gomes - 1 dg1727 - -Translations: - ca Jordi Mas - da Alan Mortensen - de Mario Blättermann, Wolfgang Stöggl - es Daniel Mustieles - hu Gábor Kelemen - id Andika Triwidada - lt Aurimas Černius - pl Piotr Drąg - pt_BR Rafael Fontenelle, Enrico Nicoletto - sk Dušan Kazik - sr Мирослав Николић - sv Josef Andersson, Anders Jonsson - uk Daniel Korostil - - -== Download == - - Pitivi source tarballs are available on the GNOME FTP servers: - http://ftp.gnome.org/pub/GNOME/sources/pitivi/0.99 - - See the website for the official build based on flatpak. - - -== Information and Feedback == - - * Information for users and developers can be found on http://www.pitivi.org - * Comments and feedback are welcome. - * Pitivi bug-tracker at https://phabricator.freedesktop.org/tag/pitivi/ - - -== Bugs Fixed == - -See https://phabricator.freedesktop.org/project/board/110/query/all/ diff --git a/data/org.pitivi.Pitivi.appdata.xml.in b/data/org.pitivi.Pitivi.appdata.xml.in index 4dc6fe8c08fbd979c00ae1ffb0d574d8c790cce0..0cac3df6d9528d4966b10d0790615e1a44b887a4 100644 --- a/data/org.pitivi.Pitivi.appdata.xml.in +++ b/data/org.pitivi.Pitivi.appdata.xml.in @@ -41,6 +41,21 @@ <_developer_name>The Pitivi Team + + +

+ This release includes bug fixes, small important features, and a feature removal. +

+
    +
  • Rendering non-square pixels was broken and has been disabled.
  • +
  • Selecting a range of clips can be done by clicking followed by Shift+click.
  • +
  • The advanced settings of the h264 encoder allow specifying a Profile.
  • +
  • The xges files have an icon associated.
  • +
  • The Save and Render buttons in the headerbar have been moved on the right side.
  • +
+
+
+

diff --git a/meson.build b/meson.build index 04560607adf309ca978670a7f4732f2f8222b08b..17a7312dae9ad63f83e314330e2732aa160e935e 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('pitivi', 'c', version : '0.99', meson_version : '>= 0.41.0') +project('pitivi', 'c', version : '0.999', meson_version : '>= 0.41.0') python = find_program('python3') intltool_merge = find_program('intltool-merge')