Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
gstreamer-rs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Zeeshan Ali
gstreamer-rs
Commits
2364bbe8
Commit
2364bbe8
authored
Nov 11, 2017
by
Sebastian Dröge
🍵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update version to 0.8.2 and update changelog
parent
c232e192
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
76 additions
and
6 deletions
+76
-6
examples/Cargo.toml
examples/Cargo.toml
+1
-1
gstreamer-app/CHANGELOG.md
gstreamer-app/CHANGELOG.md
+14
-0
gstreamer-app/Cargo.toml
gstreamer-app/Cargo.toml
+1
-1
gstreamer-audio/CHANGELOG.md
gstreamer-audio/CHANGELOG.md
+14
-0
gstreamer-audio/Cargo.toml
gstreamer-audio/Cargo.toml
+1
-1
gstreamer-player/CHANGELOG.md
gstreamer-player/CHANGELOG.md
+14
-0
gstreamer-player/Cargo.toml
gstreamer-player/Cargo.toml
+1
-1
gstreamer-video/CHANGELOG.md
gstreamer-video/CHANGELOG.md
+14
-0
gstreamer-video/Cargo.toml
gstreamer-video/Cargo.toml
+1
-1
gstreamer/CHANGELOG.md
gstreamer/CHANGELOG.md
+14
-0
gstreamer/Cargo.toml
gstreamer/Cargo.toml
+1
-1
No files found.
examples/Cargo.toml
View file @
2364bbe8
[package]
name
=
"examples"
version
=
"0.8.
1
"
version
=
"0.8.
2
"
authors
=
[
"Sebastian Dröge <sebastian@centricular.com>"
]
[dependencies]
...
...
gstreamer-app/CHANGELOG.md
View file @
2364bbe8
...
...
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
,
specifically the
[
variant used by Rust
](
http://doc.crates.io/manifest.html#the-version-field
)
.
## [0.8.2] - 2017-11-11
### Fixed
-
Implement StaticType of BufferRef instead of Buffer. Buffer aka
GstRc
<BufferRef>
already implements StaticType if BufferRef does, and
without this it was not possible to use Buffers in GValues.
-
Free memory of the appsink/appsrc callbacks with the correct type. It was
crashing because of using the wrong type before.
-
Fix documentation URLs in Cargo.toml.
### Added
-
Installation instructions and links to documentation for getting started to
README.md.
## [0.8.1] - 2017-09-15
### Added
-
Implement Send+Sync for Query, Message and Event, and their corresponding
...
...
gstreamer-app/Cargo.toml
View file @
2364bbe8
[package]
name
=
"gstreamer-app"
version
=
"0.8.
1
"
version
=
"0.8.
2
"
authors
=
[
"Sebastian Dröge <sebastian@centricular.com>"
]
categories
=
[
"api-bindings"
,
"multimedia"
]
description
=
"Rust bindings for GStreamer App library"
...
...
gstreamer-audio/CHANGELOG.md
View file @
2364bbe8
...
...
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
,
specifically the
[
variant used by Rust
](
http://doc.crates.io/manifest.html#the-version-field
)
.
## [0.8.2] - 2017-11-11
### Fixed
-
Implement StaticType of BufferRef instead of Buffer. Buffer aka
GstRc
<BufferRef>
already implements StaticType if BufferRef does, and
without this it was not possible to use Buffers in GValues.
-
Free memory of the appsink/appsrc callbacks with the correct type. It was
crashing because of using the wrong type before.
-
Fix documentation URLs in Cargo.toml.
### Added
-
Installation instructions and links to documentation for getting started to
README.md.
## [0.8.1] - 2017-09-15
### Added
-
Implement Send+Sync for Query, Message and Event, and their corresponding
...
...
gstreamer-audio/Cargo.toml
View file @
2364bbe8
[package]
name
=
"gstreamer-audio"
version
=
"0.8.
1
"
version
=
"0.8.
2
"
authors
=
[
"Sebastian Dröge <sebastian@centricular.com>"
]
categories
=
[
"api-bindings"
,
"multimedia"
]
description
=
"Rust bindings for GStreamer Audio library"
...
...
gstreamer-player/CHANGELOG.md
View file @
2364bbe8
...
...
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
,
specifically the
[
variant used by Rust
](
http://doc.crates.io/manifest.html#the-version-field
)
.
## [0.8.2] - 2017-11-11
### Fixed
-
Implement StaticType of BufferRef instead of Buffer. Buffer aka
GstRc
<BufferRef>
already implements StaticType if BufferRef does, and
without this it was not possible to use Buffers in GValues.
-
Free memory of the appsink/appsrc callbacks with the correct type. It was
crashing because of using the wrong type before.
-
Fix documentation URLs in Cargo.toml.
### Added
-
Installation instructions and links to documentation for getting started to
README.md.
## [0.8.1] - 2017-09-15
### Added
-
Implement Send+Sync for Query, Message and Event, and their corresponding
...
...
gstreamer-player/Cargo.toml
View file @
2364bbe8
[package]
name
=
"gstreamer-player"
version
=
"0.8.
1
"
version
=
"0.8.
2
"
authors
=
[
"Sebastian Dröge <sebastian@centricular.com>"
]
categories
=
[
"api-bindings"
,
"multimedia"
]
description
=
"Rust bindings for GStreamer Player library"
...
...
gstreamer-video/CHANGELOG.md
View file @
2364bbe8
...
...
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
,
specifically the
[
variant used by Rust
](
http://doc.crates.io/manifest.html#the-version-field
)
.
## [0.8.2] - 2017-11-11
### Fixed
-
Implement StaticType of BufferRef instead of Buffer. Buffer aka
GstRc
<BufferRef>
already implements StaticType if BufferRef does, and
without this it was not possible to use Buffers in GValues.
-
Free memory of the appsink/appsrc callbacks with the correct type. It was
crashing because of using the wrong type before.
-
Fix documentation URLs in Cargo.toml.
### Added
-
Installation instructions and links to documentation for getting started to
README.md.
## [0.8.1] - 2017-09-15
### Added
-
Implement Send+Sync for Query, Message and Event, and their corresponding
...
...
gstreamer-video/Cargo.toml
View file @
2364bbe8
[package]
name
=
"gstreamer-video"
version
=
"0.8.
1
"
version
=
"0.8.
2
"
authors
=
[
"Sebastian Dröge <sebastian@centricular.com>"
]
categories
=
[
"api-bindings"
,
"multimedia"
]
description
=
"Rust bindings for GStreamer Video library"
...
...
gstreamer/CHANGELOG.md
View file @
2364bbe8
...
...
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
,
specifically the
[
variant used by Rust
](
http://doc.crates.io/manifest.html#the-version-field
)
.
## [0.8.2] - 2017-11-11
### Fixed
-
Implement StaticType of BufferRef instead of Buffer. Buffer aka
GstRc
<BufferRef>
already implements StaticType if BufferRef does, and
without this it was not possible to use Buffers in GValues.
-
Free memory of the appsink/appsrc callbacks with the correct type. It was
crashing because of using the wrong type before.
-
Fix documentation URLs in Cargo.toml.
### Added
-
Installation instructions and links to documentation for getting started to
README.md.
## [0.8.1] - 2017-09-15
### Added
-
Implement Send+Sync for Query, Message and Event, and their corresponding
...
...
gstreamer/Cargo.toml
View file @
2364bbe8
[package]
name
=
"gstreamer"
version
=
"0.8.
1
"
version
=
"0.8.
2
"
authors
=
[
"Sebastian Dröge <sebastian@centricular.com>"
]
categories
=
[
"api-bindings"
,
"multimedia"
]
description
=
"Rust bindings for GStreamer"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment