You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: .github/actions/add_pr_to_smackore_board/action.yml
+15-13
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
name: 'Add PR to Smackore board, if author is from community'
2
-
description: 'Adds PR to "New issues by community" column in Smackore project board, if PR author is from outside Membrane Team.'
2
+
description: '(disabled due to github-side bug) Adds PR to "New issues by community" column in Smackore project board, if PR author is from outside Membrane Team.'
3
3
inputs:
4
4
GITHUB_TOKEN:
5
5
description: 'GitHub token'
@@ -19,21 +19,23 @@ runs:
19
19
repository: membraneframework/membrane_core
20
20
- name: Maybe add PR to board and set ticket status
Copy file name to clipboardexpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,16 @@
1
1
# Changelog
2
2
3
+
## 1.1.0-rc0
4
+
* Deprecate `handle_spec_started/3` callback in Bins and Pipelines. [#708](https://github.com/membraneframework/membrane_core/pull/708)
5
+
* Handle buffers from input pads having `flow_control: :auto` only if demand on all output pads having `flow_control: :auto` is positive. [#693](https://github.com/membraneframework/membrane_core/pull/693)
6
+
3
7
## 1.0.1
4
8
* Specify the order in which state fields will be printed in the error logs. [#614](https://github.com/membraneframework/membrane_core/pull/614)
* Log messages in the default handle_info implementation [#680](https://github.com/membraneframework/membrane_core/pull/680)
7
11
* Fix typespecs in Membrane.UtilitySupervisor [#681](https://github.com/membraneframework/membrane_core/pull/681)
8
12
* Improve callback return types and group actions types [#702](https://github.com/membraneframework/membrane_core/pull/702)
13
+
* Add `crash_reason` to `handle_crash_group_down/3` callback context in bins and pipelines. [#720](https://github.com/membraneframework/membrane_core/pull/720)
9
14
10
15
## 1.0.0
11
16
* Introduce `:remove_link` action in pipelines and bins.
This is an [Elixir](elixir-lang.org) snippet, that streams an mp3 via HTTP and plays it on your speaker. Here's how to run it:
56
-
- Install [libmad](https://github.com/markjeee/libmad) and [portaudio](https://github.com/PortAudio/portaudio). Membrane uses these libs to decode the mp3 and to access your speaker, respectively. You can use these commands:
57
-
- On Mac OS: `brew install libmad portaudio pkg-config`
58
-
- On Debian: `apt install libmad0-dev portaudio19-dev`
59
-
60
56
- Option 1: Click the button below:
61
57
62
58
[](https://livebook.dev/run?url=https%3A%2F%2Fgithub.com%2Fmembraneframework%2Fmembrane_core%2Fblob%2Fmaster%2Fexample.livemd)
@@ -96,7 +92,7 @@ Apart from plugins, Membrane has stream formats, which live in `membrane_X_forma
96
92
The API for creating pipelines (and custom elements too) is provided by [membrane_core](https://github.com/membraneframework/membrane_core). To install it, add the following line to your `deps` in `mix.exs` and run `mix deps.get`
0 commit comments