From efdea5005320afcbe788a7e94337857626848b16 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Fri, 24 Oct 2025 03:43:52 -0400 Subject: [PATCH 1/2] Update issue templates --- .github/ISSUE_TEMPLATE/bug.yml | 1 + .github/ISSUE_TEMPLATE/config.yml | 4 ++++ .github/ISSUE_TEMPLATE/documentation.yml | 1 + 3 files changed, 6 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index ae5d17d4..ad187f0e 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -19,5 +19,6 @@ body: id: steps attributes: label: What's wrong? + description: Describe the issue, include steps to recreate it if possible, and attach the output of `omarchy-debug` if possible validations: required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 3ba13e0c..76a5936c 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1 +1,5 @@ blank_issues_enabled: false +contact_links: + - name: 🛟 Community Support + url: https://omarchy.org/discord + about: Need help? Join our Discord community for support with any issues. GitHub issues should be used for verified bugs, documentation, and enhancement proposals only. diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml index 33edaeab..263ae5ef 100644 --- a/.github/ISSUE_TEMPLATE/documentation.yml +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -11,5 +11,6 @@ body: id: steps attributes: label: What correction or addition do we need? + description: Please provide reference links and specifics of what should be updated validations: required: true From 63d4482e8cd910faf4d7650a3284a3ae3a8f9e99 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Fri, 24 Oct 2025 04:01:07 -0400 Subject: [PATCH 2/2] Hotfix: Prevent error when no orphans exist --- bin/omarchy-update-system-pkgs | 2 +- version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-update-system-pkgs b/bin/omarchy-update-system-pkgs index b1928696..197a9330 100755 --- a/bin/omarchy-update-system-pkgs +++ b/bin/omarchy-update-system-pkgs @@ -23,7 +23,7 @@ if pacman -Qem >/dev/null; then fi fi -orphans=$(pacman -Qtdq) +orphans=$(pacman -Qtdq || true) if [[ -n $orphans ]]; then echo -e "\e[32m\nRemove orphan system packages\e[0m" for pkg in $orphans; do diff --git a/version b/version index ef538c28..ff365e06 100644 --- a/version +++ b/version @@ -1 +1 @@ -3.1.2 +3.1.3