update version to 0.3.6

This commit is contained in:
Stéphane Cerveau 2024-10-10 15:39:10 -04:00
parent c236903665
commit 1d2a5702eb
8 changed files with 23 additions and 16 deletions

2
Cargo.lock generated
View file

@ -607,7 +607,7 @@ dependencies = [
[[package]]
name = "gst-pipeline-studio"
version = "0.3.5"
version = "0.3.6"
dependencies = [
"anyhow",
"async-channel",

View file

@ -1,8 +1,8 @@
[package]
name = "gst-pipeline-studio"
version = "0.3.5"
version = "0.3.6"
edition = "2018"
rust-version = "1.70.0"
rust-version = "1.81.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View file

@ -125,3 +125,13 @@
- [x] settings: add a log level selection
- [x] rename gst_pipeline_studio to gst-pipeline-studio
- [x] can open a pipeline from the command line
## 0.3.6
### app
- [x] gtk: 4.13.9
- [x] gstreamer: 1.24
- [x] graphview: can now zoom on graph
- [x] add duplicate node
- [x] app: enhance element uri handler
- [x] macos: installer with gstreamer 1.24

View file

@ -4,7 +4,6 @@
- [ ] create a crate for graphview/node/port
### GStreamer:
- [ ] Implement pipeline unit test
@ -19,13 +18,9 @@
- [ ] Offer compatible element to a pad (autorender)
- [ ] Display tags/meta/message detected
- [ ] Change TreeView to ListView
- [ ] Implement zoom on the view (https://gitlab.gnome.org/World/obfuscate/-/blob/master/src/widgets/drawing_area.rs)
- [ ] reopen the last log on prematured exit (crash)
- [ ] Play/pause should be prevented until the pipeline is ready
- [ ] Filter the elements by class/rank etc.
- [ ] double click on node/pad open the properties
## bugs

View file

@ -1 +1 @@
0.3.5
0.3.6

View file

@ -31,10 +31,12 @@
<description>
<p>Welcome to GstPipelineStudio</p>
<ul>
<li>logs: receive multiple log sources such as GST logs and messages.</li>
<li>settings: add a log level selection</li>
<li>rename gst_pipeline_studio to gst-pipeline-studio</li>
<li>can open a pipeline from the command line</li>
<li>gtk: 4.13.9</li>
<li>gstreamer: 1.24</li>
<li>graphview: can now zoom on graph</li>
<li>add duplicate node</li>
<li>app: enhance element uri handler</li>
<li>macos: installer with gstreamer 1.24</li>
</ul>
</description>
</release>

View file

@ -13,7 +13,7 @@
<p>GstPipelineStudio aims to provide a graphical user interface to the GStreamer framework. From a first
step in the framework with a simple pipeline to a complex pipeline debugging, the tool provides a
friendly interface to add elements to a pipeline and debug it.</p>
<h2>GstPipelineStudio 0.3.5 is out, checkout the <a
<h2>GstPipelineStudio 0.3.6 is out, checkout the <a
href="https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio/-/blob/main/ChangeLog.md?ref_type=heads#anchor-033">
Release Notes</a> !
<br>
@ -44,7 +44,7 @@
</h2>
</body>
<footer class="site-footer">
<p>&copy; GstPipelineStudio, 2023</p>
<p>&copy; GstPipelineStudio, 2024</p>
<p><a href="https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio">Website source</a></p>
</footer>

View file

@ -1,5 +1,5 @@
project('gst-pipeline-studio',
version: '0.3.5',
version: '0.3.6',
meson_version: '>= 0.63.0',
default_options: [ 'warning_level=2',
],