Skip to content

Commit cd0b27e

Browse files
Release 1.1.2
1 parent 582b83b commit cd0b27e

File tree

7 files changed

+19
-12
lines changed

7 files changed

+19
-12
lines changed

.github/workflows/build-umu-ubuntu-noble.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: apt install -y dh-make dpkg-dev
2828

2929
- name: Setup dh_make quilt files
30-
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.1 || true
30+
run: LOGNAME=root dh_make --createorig -y -l -p umu-launcher_1.1.2 || true
3131

3232
- name: Install apt build dependencies
3333
run: apt build-dep -y ./

packaging/deb/debian/changelog

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
umu-launcher (1.1.1-2) noble; urgency=medium
1+
umu-launcher (1.1.2-1) noble; urgency=medium
22

3-
* 1.1.1 Release.
3+
* 1.1.2 Release.
44

5-
-- Tom Crider <[email protected]> Fri, 03 Oct 2024 03:31:24 -0700
5+
-- Tom Crider <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700

packaging/flatpak/org.openwinecomponents.umu.umu-launcher.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ modules:
360360
sources:
361361
- type: git
362362
url: https://github.com/Open-Wine-Components/umu-launcher.git
363-
tag: 1.1.1
363+
tag: 1.1.2
364364
modules:
365365
# --- packaging ---
366366
- name: packaging

packaging/nix/umu-launcher.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{pyth1 ,python3Packages , umu-launcher, pkgs, ...}:
22
python3Packages.buildPythonPackage {
33
name = "umu-launcher";
4-
version = "1.1.1";
4+
version = "1.1.2";
55
src = umu-launcher;
66
pyproject = false;
77
depsBuildBuild = [

packaging/rpm/umu-launcher.spec

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
1-
%define commit 12ebba1bea5006aaa0493d4d9e5d1ba1fe434ac1
2-
%define tag 1.1.1
1+
# Define the manual commit as a fallback
2+
%define manual_commit b34df64f3a7e85e2ac589f0f910e6873e7038635
3+
4+
# Optionally define the tag
5+
%define tag 1.1.2
6+
# Check if tag is defined and get the commit hash for the tag, otherwise use manual commit
7+
%{!?tag: %global commit %{manual_commit}}
8+
%{?tag: %global commit %(git rev-list -n 1 %{tag} 2>/dev/null || echo %{manual_commit})}
9+
310
%global shortcommit %(c=%{commit}; echo ${c:0:7})
411

512
%global build_timestamp %(date +"%Y%m%d")
613

714
%global rel_build 1.%{build_timestamp}.%{shortcommit}%{?dist}
815

916
Name: umu-launcher
10-
Version: 1.1.1
17+
Version: 1.1.2
1118
Release: %{rel_build}
1219
Summary: A tool for launching non-steam games with proton
1320

packaging/snap/snap/snapcraft.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: umu-launcher
2-
version: '1.1.1' # You can set this to the appropriate version
2+
version: '1.1.2' # You can set this to the appropriate version
33
summary: UMU Launcher
44
description: |
55
UMU Launcher is a tool for managing and launching applications.
@@ -171,7 +171,7 @@ parts:
171171
umu-run:
172172
plugin: dump
173173
source: https://github.com/Open-Wine-Components/umu-launcher.git
174-
source-tag: 1.1.1
174+
source-tag: 1.1.2
175175
build-packages:
176176
- git
177177
- make

umu/umu_runtime.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def _install_umu(
175175
log.debug("Removing: %s", var)
176176
# Remove the variable directory to avoid Steam Linux Runtime
177177
# related errors when creating it. Supposedly, it only happens
178-
# when going from umu-launcher 0.1-RC4 -> 1.1.1
178+
# when going from umu-launcher 0.1-RC4 -> 1.1.1+
179179
# See https://github.com/Open-Wine-Components/umu-launcher/issues/213#issue-2576708738
180180
thread_pool.submit(rmtree, str(var))
181181

0 commit comments

Comments
 (0)