summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2012-09-25 15:10:43 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2012-09-25 16:32:38 -0400
commit501ef7d6ad4ff3cb724ab4ea43e466796eb66c9a (patch)
treedd45196b37f7f5ab7ae049d378883afb30510ce5
parentdfcbd4cbcf111d6cfe6c174c4fdb5a9235062cf9 (diff)
downloadfarstream-501ef7d6ad4ff3cb724ab4ea43e466796eb66c9a.tar.gz
Version 0.2.00.2.0
-rw-r--r--NEWS13
-rw-r--r--README22
-rw-r--r--configure.ac8
3 files changed, 25 insertions, 18 deletions
diff --git a/NEWS b/NEWS
index 138df6c0..617d59fe 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,18 @@
+farstream 0.2.0 (September 25, 2012)
+=====================================
+
+- Official GStreamer 1.0 release
+- Ported python example to GStreamer 1.0 and GTK+ 3
+- Use GLib 2.32 APIs
+- Made API more introspection friendly
+- Ignore Error messages from the decoders
+- Prefer Opus and VP8
+- Various bug fixes
+
farstream 0.1.91 (September 13, 2012)
=====================================
-- Port to GStreamer 1.0
+- Port to GStreamer 1.0 API
farstream 0.1.2 (March 23, 2012)
================================
diff --git a/README b/README
index da693ec9..bc85ecde 100644
--- a/README
+++ b/README
@@ -15,29 +15,25 @@ Requirements
============
Build time:
- - gstreamer 0.10.36
- - gst-plugins-base 0.10.36
- - Python 2.4
- - libnice 0.1.0
+ - gstreamer 1.0.0
+ - gst-plugins-base 1.0.0
- glib 2.32
+ - libnice 0.1.3
+ - gobject-introspection 0.10.1
For UPnP support:
- GUPnP-IGD
-For the python module:
- - PyGObject 2.16
- - gst-python 0.10.10
-
Run time for the RTP plugin:
All of the build time requirements (except gtk-doc) plus
- - gst-plugins-good 0.10.29
- - gst-plugins-bad 0.10.23
+ - gst-plugins-good 1.0.0
+ - gst-plugins-bad 1.0.0
Run time for the MSN plugin:
- - gst-plugins-bad 0.10.17
+ - gst-plugins-bad 1.0.0
For the GUI example:
- - PyGTK 2.10
+ - Gtk 3.0
-The tests require gst-check (which requires check)
+The tests require gst-check and GStreamer 1.0.1
Building the documentation requires gtk-doc 1.8
diff --git a/configure.ac b/configure.ac
index 3f180a48..9685424f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf
dnl releases only do -Wall, cvs and prerelease does -Werror too
dnl use a three digit version number for releases, and four for cvs/prerelease
-AC_INIT(Farstream, 0.1.91.1,
+AC_INIT(Farstream, 0.2.0,
https://bugs.freedesktop.org/enter_bug.cgi?product=Farstream,
farstream)
@@ -56,7 +56,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0
dnl sets FS_LT_LDFLAGS
-AS_LIBTOOL(FS, 1, 0, 0)
+AS_LIBTOOL(FS, 2, 0, 0)
dnl FIXME: this macro doesn't actually work;
dnl the generated libtool script has no support for the listed tags.
@@ -66,8 +66,8 @@ dnl AS_LIBTOOL_TAGS
AM_PROG_LIBTOOL
dnl *** required versions of GStreamer stuff ***
-GST_REQ=0.11.1
-GSTPB_REQ=0.11.1
+GST_REQ=1.0
+GSTPB_REQ=1.0
dnl *** autotools stuff ****