Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add the following line to your `deps` in `mix.exs`. Run `mix deps.get`.
```elixir
def deps do
[
{:membrane_sdl_plugin, "~> 0.18.5"}
{:membrane_sdl_plugin, "~> 0.18.6"}
]
end
```
Expand Down
3 changes: 2 additions & 1 deletion bundlex.exs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ defmodule Membrane.SDL.BundlexProject do
sources: ["player.c"],
os_deps: [
sdl2: [
{:precompiled, Membrane.PrecompiledDependencyProvider.get_dependency_url(:sdl2),
{:precompiled,
Membrane.PrecompiledDependencyProvider.get_dependency_url(:sdl2, version: "2.32.10"),
"SDL2"},
{:pkg_config, "SDL2"},
{:pkg_config, "sdl2"}
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Membrane.SDL.Plugin.MixProject do
use Mix.Project

@version "0.18.5"
@version "0.18.6"
@github_url "https://github.com/membraneframework/membrane_sdl_plugin"

def project do
Expand Down Expand Up @@ -59,7 +59,7 @@ defmodule Membrane.SDL.Plugin.MixProject do
{:membrane_common_c, "~> 0.16.0"},
{:membrane_raw_video_format, "~> 0.4.0"},
{:bundlex, "~> 1.2"},
{:membrane_precompiled_dependency_provider, "~> 0.1.0"},
{:membrane_precompiled_dependency_provider, "~> 0.2.1"},
# Testing
{:membrane_h264_ffmpeg_plugin, "~> 0.32.0", only: :test},
{:membrane_h26x_plugin, "~> 0.10.0", only: :test},
Expand Down
Loading