summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2019-10-20 05:39:00 +0200
committerJens Georg <mail@jensge.org>2019-10-20 05:39:00 +0200
commit8f127635751ab5f94657e352c8b95cc59ef5cdb7 (patch)
tree16c6248d51206e8ce8bdf4964051f8dbd0223c4d
parenta664e4310557fa053510633b5e48030a68113658 (diff)
downloadrygel-8f127635751ab5f94657e352c8b95cc59ef5cdb7.tar.gz
Prepare Rygel 0.38.2rygel-0.38.2
-rw-r--r--NEWS38
-rw-r--r--meson.build2
-rw-r--r--src/media-engines/simple/rygel-simple-data-source.vala4
3 files changed, 41 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 479140cd..d2d5c0eb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,41 @@
+0.38.2
+======
+
+Meson Build:
+ - Fix installation dir for presets
+ - Fix installation dir for icons
+ - Add option to disable introspection completely
+ - Add glib as a dependency to get --target-glib passed on
+ - Fix version string in pkg-config
+ - Generate libtool link flags into pkg-config files for
+ backward-compatibility
+ - Do not drop date from manpage
+
+All:
+ - Clean up code that caused unnecessary C code to be generated
+
+Core:
+ - Fix a potential fd leak
+
+Media Export:
+ - Drop NOENT XML parsing option
+ - Drop RECOVER XML parsing option
+
+GStreamer Media Engine:
+ - Link against -lm where necessary
+
+Simple Media Engine:
+ - Obey lseek return value
+ - Simplify code by using IOError.from_errno
+
+Documentation:
+ - Fix building the references using wong GUPnP version
+
+Examples:
+ - Fix unblacklisting in mx-info
+ - Add option to show blacklist in mx-info
+
+
0.38.1
======
- Several build fixes for recent vala
diff --git a/meson.build b/meson.build
index 5fd138af..73e1dabb 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('rygel', 'vala', 'c', version : '0.38.1')
+project('rygel', 'vala', 'c', version : '0.38.2')
vala = meson.get_compiler('vala')
# Check for the required vala version
diff --git a/src/media-engines/simple/rygel-simple-data-source.vala b/src/media-engines/simple/rygel-simple-data-source.vala
index f884e7fa..9f906411 100644
--- a/src/media-engines/simple/rygel-simple-data-source.vala
+++ b/src/media-engines/simple/rygel-simple-data-source.vala
@@ -25,10 +25,10 @@
/**
* A simple data source for use with the simple media engine (RygelSimpleMediaEngine).
*
- * This does not support time-base seeking with
+ * This does not support time-base seeking with
* rygel_data_source_start() because it does not
* use any multimedia framework. Therefore, calling start() with
- * RYGEL_HTTP_SEEK_TYPE_TIME will fail with a
+ * RYGEL_HTTP_SEEK_TYPE_TIME will fail with a
* RYGEL_DATA_SOURCE_ERROR_SEEK_FAILED GError code,
*/
internal class Rygel.SimpleDataSource : DataSource, Object {