Browse Source

prep for release v25.1.0 [no ci]

pull/1964/head v25.1.0
Jason Dove 7 months ago
parent
commit
57b590cd0f
No known key found for this signature in database
  1. 4
      .github/workflows/ci.yml
  2. 2
      .github/workflows/release.yml
  3. 2
      CHANGELOG.md
  4. 2
      ErsatzTV/Pages/Index.razor
  5. 1
      ErsatzTV/Startup.cs

4
.github/workflows/ci.yml

@ -19,14 +19,14 @@ jobs: @@ -19,14 +19,14 @@ jobs:
tag=$(git describe --tags --abbrev=0)
tag2="${tag:1}"
short=$(git rev-parse --short HEAD)
final="${tag2/beta/$short}"
final="${tag2}-${short}"
echo "GIT_TAG=${final}" >> $GITHUB_ENV
- name: Extract Artifacts Version
shell: bash
run: |
tag=$(git describe --tags --abbrev=0)
short=$(git rev-parse --short HEAD)
final="${tag/beta/$short}"
final="${tag}-${short}"
echo "ARTIFACTS_VERSION=${final}" >> $GITHUB_ENV
echo "INFO_VERSION=${tag:1}" >> $GITHUB_ENV
outputs:

2
.github/workflows/release.yml

@ -16,7 +16,7 @@ jobs: @@ -16,7 +16,7 @@ jobs:
run: |
tag=$(git describe --tags --abbrev=0)
echo "GIT_TAG=${tag:1}" >> $GITHUB_ENV
echo "DOCKER_TAG=${tag/-beta/}" >> $GITHUB_ENV
echo "DOCKER_TAG=${tag}" >> $GITHUB_ENV
- name: Extract Artifacts Version
shell: bash
run: |

2
CHANGELOG.md

@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
## [25.1.0] - 2025-01-10
### Added
- Add `Reset All Playouts` button to top of playouts page
- Add `rewind_on_reset` option to `wait_until` YAML playout instruction

2
ErsatzTV/Pages/Index.razor

@ -161,7 +161,7 @@ @@ -161,7 +161,7 @@
if (version != "develop")
{
string gitHubVersion = version.Split("-").Head() + "-beta";
string gitHubVersion = version.Split("-").Head();
if (!gitHubVersion.StartsWith("v"))
{
gitHubVersion = $"v{gitHubVersion}";

1
ErsatzTV/Startup.cs

@ -325,7 +325,6 @@ public class Startup @@ -325,7 +325,6 @@ public class Startup
Assembly.GetEntryAssembly()?.GetCustomAttribute<AssemblyInformationalVersionAttribute>()
?.InformationalVersion ?? "unknown");
Log.Logger.Warning("This is beta software and may be unstable");
Log.Logger.Warning(
"Give feedback at {GitHub} or {Discord}",
"https://github.com/ErsatzTV/ErsatzTV",

Loading…
Cancel
Save