This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/.eslintrc.js b/.eslintrc.js | |
index e6eb64a..9aa4cd2 100644 | |
--- a/.eslintrc.js | |
+++ b/.eslintrc.js | |
@@ -4,13 +4,16 @@ module.exports = { | |
ecmaVersion: 6, | |
sourceType: "module", | |
ecmaFeatures: { | |
+ "jsx": true, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/local/owr_video_renderer.c b/local/owr_video_renderer.c | |
index 8f1ab14..8bd5a36 100644 | |
--- a/local/owr_video_renderer.c | |
+++ b/local/owr_video_renderer.c | |
@@ -387,14 +387,25 @@ static GstElement *owr_video_renderer_get_element(OwrMediaRenderer *renderer, gu | |
} | |
/** | |
- * owr_video_renderer_set_request_context_callback: Configure the GClosure to | |
- * invoke when a GL context is required by the GStreamer pipeline running the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filebeat.yml configuration file (note: the various /rootfs are mounted into the container from the host as read-only volumes): | |
--- | |
filebeat.prospectors: | |
- input_type: log | |
paths: | |
- /rootfs/var/log/*.log | |
- /rootfs/var/log/*/*.log | |
- input_type: log | |
paths: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From d9dfc2fe3983325e8752ef739a48c72bc75099f5 Mon Sep 17 00:00:00 2001 | |
From: Robert Swain <[email protected]> | |
Date: Thu, 17 Dec 2015 21:32:53 +0100 | |
Subject: [PATCH] Add support for iOS 9.2 | |
--- | |
cerbero/enums.py | 1 + | |
config/ios.config | 5 +++-- | |
2 files changed, 4 insertions(+), 2 deletions(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From c981f8885b2b3e9fde1b217369f7cae57d5dffe1 Mon Sep 17 00:00:00 2001 | |
From: Robert Swain <[email protected]> | |
Date: Mon, 14 Sep 2015 20:46:19 +0200 | |
Subject: [PATCH 1/2] Add support for OS X 10.11 El Capitan | |
--- | |
cerbero/enums.py | 1 + | |
cerbero/utils/__init__.py | 4 +++- | |
config/darwin.config | 1 + | |
3 files changed, 5 insertions(+), 1 deletion(-) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Merge GitHub pull request on top of the `master` branch | |
mpr = "!f() { \ | |
if [ $(printf \"%s\" \"$1\" | grep '^[0-9]\\+$' > /dev/null; printf $?) -eq 0 ]; then \ | |
git fetch origin refs/pull/$1/head:pr/$1 && \ | |
git rebase master pr/$1 && \ | |
git checkout master && \ | |
git merge --ff-only pr/$1 && \ | |
git branch -D pr/$1; \ | |
fi \ | |
}; f" |
NewerOlder