release: 0.3.5

This commit is contained in:
Stéphane Cerveau 2024-01-05 15:36:00 +01:00
parent d32c75b639
commit 88afa4a99e
8 changed files with 20 additions and 11 deletions

2
Cargo.lock generated
View file

@ -536,7 +536,7 @@ dependencies = [
[[package]]
name = "gst-pipeline-studio"
version = "0.3.4"
version = "0.3.5"
dependencies = [
"anyhow",
"chrono",

View file

@ -1,6 +1,6 @@
[package]
name = "gst-pipeline-studio"
version = "0.3.4"
version = "0.3.5"
edition = "2018"
rust-version = "1.70.0"

View file

@ -112,8 +112,16 @@
- [x] Fix the maximize call with MacOS
- [x] Fix the default size at GTK save/load state
## 0.3.4
## 0.3.4
### app
### app
- [x] Fix first run when application folder has not been created, fixes #23
- [x] Fix windows installer to bring share folder and let filesrc work properly, fixes #24
- [x] Fix windows installer to bring share folder and let filesrc work properly, fixes #24
## 0.3.5
### app
- [x] logs: receive multiple log sources such as GST logs and messages.
- [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

View file

@ -14,14 +14,12 @@
- [ ] Control the connection between element
- [ ] unable to connect element with incompatible caps.
- [ ] Implement graph dot render/load
- [ ] Add probes on each pad to monitor the pipeline
- [ ] Render a media file
- [ ] 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)
- [ ] Settings: add a log level selection
- [ ] 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.

View file

@ -1 +1 @@
0.3.4
0.3.5

View file

@ -31,7 +31,10 @@
<description>
<p>Welcome to GstPipelineStudio</p>
<ul>
<li>Support a new websocket service</li>
<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>
</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.4 is out, checkout the <a
<h2>GstPipelineStudio 0.3.5 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>

View file

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