New commits:
commit d65804837e64adf20ef1e0587b36d065d0991300
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
SOURCE_URL[0]="https://github.com/hyprwm/${SPELL}/archive/refs/tags/v${VERSION}.tar.gz"
diff --git a/libs/hyprwire/HISTORY b/libs/hyprwire/HISTORY
index 530f35c..df78033 100644
--- a/libs/hyprwire/HISTORY
+++ b/libs/hyprwire/HISTORY
@@ -1,3 +1,7 @@
+2026-02-04 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 0.3.0
+ * UP_TRIGGERS: added generic trigger on major/minor version update
+
2025-12-06 Pavel Vinogradov <public AT sourcemage.org>
* CONFIGURE, DEPENDS, DETAILS, PREPARE: created a spell, version 0.2.1
diff --git a/libs/hyprwire/UP_TRIGGERS b/libs/hyprwire/UP_TRIGGERS
new file mode 100755
index 0000000..80847df
--- /dev/null
+++ b/libs/hyprwire/UP_TRIGGERS
@@ -0,0 +1,16 @@
+# up_trigger everything on major/minor version updates
+
+if spell_ok "${SPELL}"; then
+ local OLD_SPELL_VERSION="$(installed_version ${SPELL})" &&
+
+ if test "${VERSION%.?}" != "${OLD_SPELL_VERSION%.?}"; then
+ message "${MESSAGE_COLOR}This is a possibly incompatible update of
${SPELL}..." &&
+ message "Figuring out what spells need to be recast, this may take a
while.${DEFAULT_COLOR}" &&
+
+ local dependees="$(show_up_depends ${SPELL} 1)" &&
+
+ for each in ${dependees}; do
+ up_trigger "${each}" cast_self
+ done
+ fi
+fi
[[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (d65804837e64adf20ef1e0587b36d065d0991300),
Pavel Vinogradov, 02/04/2026