Skip to content

Commit

Permalink
Release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GloriousEggroll committed Oct 12, 2024
1 parent 582b83b commit cd0b27e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-umu-ubuntu-noble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: apt install -y dh-make dpkg-dev

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

- name: Install apt build dependencies
run: apt build-dep -y ./
Expand Down
6 changes: 3 additions & 3 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
umu-launcher (1.1.1-2) noble; urgency=medium
umu-launcher (1.1.2-1) noble; urgency=medium

* 1.1.1 Release.
* 1.1.2 Release.

-- Tom Crider <[email protected]> Fri, 03 Oct 2024 03:31:24 -0700
-- Tom Crider <[email protected]> Sat, 12 Oct 2024 05:49:24 -0700
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ modules:
sources:
- type: git
url: https://github.com/Open-Wine-Components/umu-launcher.git
tag: 1.1.1
tag: 1.1.2
modules:
# --- packaging ---
- name: packaging
Expand Down
2 changes: 1 addition & 1 deletion packaging/nix/umu-launcher.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{pyth1 ,python3Packages , umu-launcher, pkgs, ...}:
python3Packages.buildPythonPackage {
name = "umu-launcher";
version = "1.1.1";
version = "1.1.2";
src = umu-launcher;
pyproject = false;
depsBuildBuild = [
Expand Down
13 changes: 10 additions & 3 deletions packaging/rpm/umu-launcher.spec
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
%define commit 12ebba1bea5006aaa0493d4d9e5d1ba1fe434ac1
%define tag 1.1.1
# Define the manual commit as a fallback
%define manual_commit b34df64f3a7e85e2ac589f0f910e6873e7038635

# Optionally define the tag
%define tag 1.1.2
# Check if tag is defined and get the commit hash for the tag, otherwise use manual commit
%{!?tag: %global commit %{manual_commit}}
%{?tag: %global commit %(git rev-list -n 1 %{tag} 2>/dev/null || echo %{manual_commit})}

%global shortcommit %(c=%{commit}; echo ${c:0:7})

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

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

Name: umu-launcher
Version: 1.1.1
Version: 1.1.2
Release: %{rel_build}
Summary: A tool for launching non-steam games with proton

Expand Down
4 changes: 2 additions & 2 deletions packaging/snap/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: umu-launcher
version: '1.1.1' # You can set this to the appropriate version
version: '1.1.2' # You can set this to the appropriate version
summary: UMU Launcher
description: |
UMU Launcher is a tool for managing and launching applications.
Expand Down Expand Up @@ -171,7 +171,7 @@ parts:
umu-run:
plugin: dump
source: https://github.com/Open-Wine-Components/umu-launcher.git
source-tag: 1.1.1
source-tag: 1.1.2
build-packages:
- git
- make
Expand Down
2 changes: 1 addition & 1 deletion umu/umu_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def _install_umu(
log.debug("Removing: %s", var)
# Remove the variable directory to avoid Steam Linux Runtime
# related errors when creating it. Supposedly, it only happens
# when going from umu-launcher 0.1-RC4 -> 1.1.1
# when going from umu-launcher 0.1-RC4 -> 1.1.1+
# See https://github.com/Open-Wine-Components/umu-launcher/issues/213#issue-2576708738
thread_pool.submit(rmtree, str(var))

Expand Down

0 comments on commit cd0b27e

Please sign in to comment.