Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
pitivi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Millan Castro
pitivi
Commits
f48f3a6d
Commit
f48f3a6d
authored
Sep 02, 2017
by
Alexandru Băluț
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release 0.99
parent
b0e947b3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
25 deletions
+42
-25
NEWS
NEWS
+5
-0
RELEASE
RELEASE
+34
-22
meson.build
meson.build
+2
-2
pitivi/check.py
pitivi/check.py
+1
-1
No files found.
NEWS
View file @
f48f3a6d
2017 September 2nd - Pitivi 0.99
* Many performance improvements
* Lots of bug fixing
2016 December 5th - Pitivi 0.98
2016 December 5th - Pitivi 0.98
* Customizable keyboard shortcuts
* Customizable keyboard shortcuts
...
...
RELEASE
View file @
f48f3a6d
0.9
8 Release
0.9
9 Release "Ocean Big Chair"
------------
------------
------------------
This is the eighth release for the new version of Pitivi based on GES,
This is the ninth release for the new version of Pitivi based on GES,
the GStreamer Editing Services library. This is mainly a bug-fix release.
the GStreamer Editing Services library. This is a bug-fix release, and
can be considered a release candidate for version 1.0.
Users can now customize the keyboard shortcuts
.
Many performance improvements have been made, and many bugs have been fixed
.
== Requirements ==
== Requirements ==
For this release, we depend on GStreamer, Gst-Python, GES 1.1
0.2
.
For this release, we depend on GStreamer, Gst-Python, GES 1.1
2.3
.
The gnome-desktop optional dependency is not used anymore
.
We now use Gnome GSound instead of pycanberra
.
We now use nose2 instead of nosetests for "make check".
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.
Refer to Pitivi's check.py for the dependencies' versions for this release.
See also http://wiki.pitivi.org/wiki/Dependencies for additional tips.
== Contributors for this release ==
== Contributors for this release ==
152 Alexandru Băluț
104 Thibault Saunier
19 Thibault Saunier
78 Alexandru Băluț
2 Jakub Brindza
14 Stefan Popa
1 Piotr Drąg
14 Suhas Nayak
1 Sebastian Dröge
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:
Translations:
ca Jordi Mas
ca Jordi Mas
cs Marek Černocký
da Alan Mortensen
de Mario Blättermann
de Mario Blättermann
, Wolfgang Stöggl
es Daniel Mustieles
es Daniel Mustieles
fr Claude Paroz
hu Gábor Kelemen
hu Balázs Meskó
id Andika Triwidada
lt Aurimas Černius
lt Aurimas Černius
pl Piotr Drąg
pl Piotr Drąg
pt_BR Rafael Fontenelle
pt_BR Rafael Fontenelle, Enrico Nicoletto
pt Tiago Santos
sk Dušan Kazik
sk Dušan Kazik
sr Мирослав Николић
sr Мирослав Николић
sv Josef Andersson, Anders Jonsson
uk Daniel Korostil
uk Daniel Korostil
== Download ==
== Download ==
Pitivi source tarballs are available on the GNOME FTP servers:
Pitivi source tarballs are available on the GNOME FTP servers:
http://ftp.gnome.org/pub/GNOME/sources/pitivi/0.9
8
http://ftp.gnome.org/pub/GNOME/sources/pitivi/0.9
9
See the website for the official build based on flatpak.
See the website for the official build based on flatpak.
...
@@ -60,4 +72,4 @@ Translations:
...
@@ -60,4 +72,4 @@ Translations:
== Bugs Fixed ==
== Bugs Fixed ==
See https://phabricator.freedesktop.org/project/board/1
08
/query/all/
See https://phabricator.freedesktop.org/project/board/1
10
/query/all/
meson.build
View file @
f48f3a6d
project('pitivi', 'c', version : '0.9
8
', meson_version : '>= 0.41.0')
project('pitivi', 'c', version : '0.9
9
', meson_version : '>= 0.41.0')
python = find_program('python3')
python = find_program('python3')
intltool_merge = find_program('intltool-merge')
intltool_merge = find_program('intltool-merge')
...
@@ -6,7 +6,7 @@ itstool = find_program('itstool')
...
@@ -6,7 +6,7 @@ itstool = find_program('itstool')
msgfmt = find_program('msgfmt')
msgfmt = find_program('msgfmt')
python_dep = dependency('python3', version : '>= 3.3')
python_dep = dependency('python3', version : '>= 3.3')
gst_dep = dependency('gstreamer-1.0', version : '>= 1.12.
2
')
gst_dep = dependency('gstreamer-1.0', version : '>= 1.12.
3
')
cairo_dep = dependency('cairo')
cairo_dep = dependency('cairo')
pycairo_dep = dependency('py3cairo')
pycairo_dep = dependency('py3cairo')
...
...
pitivi/check.py
View file @
f48f3a6d
...
@@ -387,7 +387,7 @@ def initialize_modules():
...
@@ -387,7 +387,7 @@ def initialize_modules():
# a specific version requirement, they have the "None" value.
# a specific version requirement, they have the "None" value.
GST_API_VERSION
=
"1.0"
GST_API_VERSION
=
"1.0"
GST_VERSION
=
"1.12.
2
"
GST_VERSION
=
"1.12.
3
"
GTK_API_VERSION
=
"3.0"
GTK_API_VERSION
=
"3.0"
GLIB_API_VERSION
=
"2.0"
GLIB_API_VERSION
=
"2.0"
HARD_DEPENDENCIES
=
[
GICheck
(
"3.20.0"
),
HARD_DEPENDENCIES
=
[
GICheck
(
"3.20.0"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment