Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package uwsm for openSUSE:Factory checked in at 2026-08-24 12:11:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/uwsm (Old) and /work/SRC/openSUSE:Factory/.uwsm.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "uwsm" Mon Aug 24 12:11:39 2026 rev:8 rq:1373289 version:0.26.7 Changes: -------- --- /work/SRC/openSUSE:Factory/uwsm/uwsm.changes 2026-06-30 15:12:44.558638767 +0200 +++ /work/SRC/openSUSE:Factory/.uwsm.new.1258/uwsm.changes 2026-08-24 12:17:01.171533522 +0200 @@ -1,0 +2,7 @@ +Mon Aug 24 01:23:10 UTC 2026 - Alexey Kolos <[email protected]> + +- Update to version 0.26.7: + * Correct spelling of 'high-priority' in README + * fix: Only append GenericName if it differs from Name + +------------------------------------------------------------------- Old: ---- uwsm-0.26.6.obscpio New: ---- uwsm-0.26.7.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ uwsm.spec ++++++ --- /var/tmp/diff_new_pack.49g8tG/_old 2026-08-24 12:17:01.904559630 +0200 +++ /var/tmp/diff_new_pack.49g8tG/_new 2026-08-24 12:17:01.906559701 +0200 @@ -17,7 +17,7 @@ Name: uwsm -Version: 0.26.6 +Version: 0.26.7 Release: 0 Summary: Universal Wayland Session Manager License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.49g8tG/_old 2026-08-24 12:17:01.970561980 +0200 +++ /var/tmp/diff_new_pack.49g8tG/_new 2026-08-24 12:17:01.975562158 +0200 @@ -2,7 +2,7 @@ <service name="obs_scm" mode="manual"> <param name="url">https://github.com/Vladimir-csp/uwsm.git</param> <param name="scm">git</param> - <param name="revision">v0.26.6</param> + <param name="revision">v0.26.7</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="changesgenerate">enable</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.49g8tG/_old 2026-08-24 12:17:02.018563690 +0200 +++ /var/tmp/diff_new_pack.49g8tG/_new 2026-08-24 12:17:02.023563868 +0200 @@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/Vladimir-csp/uwsm.git</param> - <param name="changesrevision">469a39a5436f6c1086b4904d42227c03aee2e394</param></service></servicedata> + <param name="changesrevision">ab5ec16d96ed1f77c3c7ff2e3f07ed42caf23f2d</param></service></servicedata> (No newline at EOF) ++++++ uwsm-0.26.6.obscpio -> uwsm-0.26.7.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uwsm-0.26.6/README.md new/uwsm-0.26.7/README.md --- old/uwsm-0.26.6/README.md 2026-06-28 20:39:25.000000000 +0200 +++ new/uwsm-0.26.7/README.md 2026-08-23 17:00:33.000000000 +0200 @@ -547,7 +547,7 @@ [documentation](https://systemd.io/DESKTOP_ENVIRONMENTS/#pre-defined-systemd-units) recommends launching apps as their own units (scopes or services). `app.slice` would be the default destination, `background.slice` and `session.slice` are -available for low-priority non-interactive tasks and high-prioirity +available for low-priority non-interactive tasks and high-priority responsiveness-aware tasks respectively, (see `man systemd.special`) `uwsm` provides a convenient way of handling this: special nested slices that diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uwsm-0.26.6/debian/changelog new/uwsm-0.26.7/debian/changelog --- old/uwsm-0.26.6/debian/changelog 2026-06-28 20:39:25.000000000 +0200 +++ new/uwsm-0.26.7/debian/changelog 2026-08-23 17:00:33.000000000 +0200 @@ -1,5 +1,5 @@ -uwsm (0.26.6-1~local0) UNRELEASED; urgency=medium +uwsm (0.26.7-1~local0) UNRELEASED; urgency=medium * Upstream build. - -- Vladimir-csp <[email protected]> Sun, 28 Jun 2026 21:39:25 +0300 + -- Vladimir-csp <[email protected]> Sun, 23 Aug 2026 18:00:33 +0300 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uwsm-0.26.6/uwsm/main.py new/uwsm-0.26.7/uwsm/main.py --- old/uwsm-0.26.6/uwsm/main.py 2026-06-28 20:39:25.000000000 +0200 +++ new/uwsm-0.26.7/uwsm/main.py 2026-08-23 17:00:33.000000000 +0200 @@ -3391,14 +3391,10 @@ # get localized entry name for description if no override if not unit_description: - unit_description = " - ".join( - n - for n in ( - entry_expand_str(entry.getName()), - entry_expand_str(entry.getGenericName()), - ) - if n - ) + unit_description = entry_expand_str(entry.getName()) + unit_description_append = entry_expand_str(entry.getGenericName()) + if unit_description_append and unit_description_append != unit_description: + unit_description = unit_description + " - " + unit_description_append # generate command and args according to entry cmd, cmd_args = gen_entry_args( diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/uwsm-0.26.6/version.sh new/uwsm-0.26.7/version.sh --- old/uwsm-0.26.6/version.sh 2026-06-28 20:39:25.000000000 +0200 +++ new/uwsm-0.26.7/version.sh 2026-08-23 17:00:33.000000000 +0200 @@ -4,7 +4,7 @@ # or prints back UWSM_VERSION env if set, # or prints a fallback version if not in git repo. -VERSION=0.26.6 +VERSION=0.26.7 set -e ++++++ uwsm.obsinfo ++++++ --- /var/tmp/diff_new_pack.49g8tG/_old 2026-08-24 12:17:02.351575551 +0200 +++ /var/tmp/diff_new_pack.49g8tG/_new 2026-08-24 12:17:02.362575942 +0200 @@ -1,5 +1,5 @@ name: uwsm -version: 0.26.6 -mtime: 1782671965 -commit: 469a39a5436f6c1086b4904d42227c03aee2e394 +version: 0.26.7 +mtime: 1787497233 +commit: ab5ec16d96ed1f77c3c7ff2e3f07ed42caf23f2d
