mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-12-18 14:06:30 +00:00
version: prepare v0.3.1
This commit is contained in:
parent
38928e07b8
commit
5c9a273fcc
6 changed files with 16 additions and 11 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -526,7 +526,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gst_pipeline_studio"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures-channel",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "gst_pipeline_studio"
|
||||
version = "0.3.0"
|
||||
version = "0.3.1"
|
||||
edition = "2018"
|
||||
rust-version = "1.70.0"
|
||||
|
||||
|
|
10
ChangeLog.md
10
ChangeLog.md
|
@ -85,9 +85,6 @@
|
|||
- [x] Update node description on property removal
|
||||
|
||||
## 0.3.0
|
||||
### app
|
||||
- [x] handle the caps setter element
|
||||
- [x] Add multiple graphviews with tabs.
|
||||
|
||||
### CI/Infra
|
||||
- [x] Create a macos installer
|
||||
|
@ -97,4 +94,9 @@
|
|||
- [x] set/get the file format version
|
||||
|
||||
### GStreamer
|
||||
- [x] Display GStreamer version in the about dialog
|
||||
- [x] Display GStreamer version in the about dialog
|
||||
|
||||
## 0.3.1
|
||||
### app
|
||||
- [x] Add multiple graphviews with tabs.
|
||||
- [x] handle the caps setter element
|
||||
|
|
|
@ -16,9 +16,10 @@ $heatToolPath = Join-Path $wixFolder -ChildPath heat.exe
|
|||
|
||||
$GPSUpgradeCode = "9B87C8FF-599C-4F20-914E-AF5E68CB3DC0"
|
||||
$GPSVersion = $(git describe --always --abbrev=0)
|
||||
Write-Output "Version:"
|
||||
Write-Output $GPSVersion
|
||||
$GPSVersion = "0.3.1"
|
||||
Write-Output $GPSVersion
|
||||
$GPSVersion = "0.3.0"
|
||||
|
||||
try
|
||||
{
|
||||
Push-Location $PSScriptRoot
|
||||
|
@ -58,7 +59,7 @@ try
|
|||
throw "Compilation of $wxsFileName failed with exit code $LASTEXITCODE"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$AllArgs = $obj_files + @('-out', $msiFileName)
|
||||
|
||||
& $lightToolPath $AllArgs -ext WixUIExtension
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('gst_pipeline_studio',
|
||||
version: '0.3.0',
|
||||
version: '0.3.1',
|
||||
meson_version: '>= 0.50.0',
|
||||
default_options: [ 'warning_level=2',
|
||||
],
|
||||
|
|
|
@ -3,9 +3,11 @@
|
|||
- Update to the given version:
|
||||
- meson.build
|
||||
- cargo.toml
|
||||
- installer/wix/build_installer.ps1
|
||||
|
||||
- create a tag on gitlab
|
||||
- meson builddir -Dbuildtype=release
|
||||
- ninja -C buiddir dist
|
||||
- ninja -C builddir dist
|
||||
- upload the package and the sha256 to gitlab for Flatpak in the release notes
|
||||
|
||||
# flathub
|
||||
|
|
Loading…
Reference in a new issue