community-scripts-pr-app[bot]
4a98e86db1
Update CHANGELOG.md ( #15734 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-13 09:11:36 +00:00
community-scripts-pr-app[bot]
37b5242c21
Update CHANGELOG.md ( #15733 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-13 09:11:16 +00:00
Michel Roegl-Brunner
a1333222a8
fix(shinobi): remove obsolete --unsafe-perm npm flag ( #15730 )
...
Shinobi installs fail on Node.js 22 because npm 10 no longer accepts the
--unsafe-perm CLI flag during npm install.
2026-07-13 11:11:08 +02:00
Michel Roegl-Brunner
12949bce6c
fix(build.func): parse script status without jq dependency ( #15729 )
...
Replace jq-based PocketBase status parsing with sed/grep so disabled and deleted script checks work on hosts that do not have jq installed yet.
2026-07-13 11:10:49 +02:00
community-scripts-pr-app[bot]
fae0aacf6d
Update CHANGELOG.md ( #15731 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-13 09:05:39 +00:00
Tobias
fd20ed1bfc
reitti: update to v5 ( #15635 )
2026-07-13 11:05:11 +02:00
community-scripts-pr-app[bot]
eb3fb749df
Update CHANGELOG.md ( #15727 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-12
2026-07-12 21:22:59 +00:00
push-app-to-main[bot]
f7fdf419b1
AFFiNE ( #15690 )
2026-07-12 23:22:39 +02:00
community-scripts-pr-app[bot]
0a7bd0f37e
Update CHANGELOG.md ( #15724 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-12 16:24:42 +00:00
Copilot
48483c63b8
fix(immich): correct Python indentation error in ct/immich.sh heredoc patch ( #15723 )
...
* Initial plan
* fix: correct Python indentation in immich heredoc patch (ct/immich.sh)
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
2026-07-12 18:24:19 +02:00
community-scripts-pr-app[bot]
962c040f44
Update CHANGELOG.md ( #15721 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-12 15:49:09 +00:00
Chris
c0b2c906fa
Immich: Bump version to 3.0.2 ( #15668 )
...
* Immich: Bump version to 3.0.2
* Bump vchord to 1.1.1
* Add MickLesk HEIC patch
2026-07-12 17:48:43 +02:00
community-scripts-pr-app[bot]
96100474cc
Update CHANGELOG.md ( #15715 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11
2026-07-12 00:18:12 +00:00
community-scripts-pr-app[bot]
76335cefe8
Archive old changelog entries ( #15714 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-12 00:17:46 +00:00
community-scripts-pr-app[bot]
8fbb4b1988
Update CHANGELOG.md ( #15712 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11 20:15:36 +00:00
TowyTowy
c481c3e24e
fix(fileflows): install .NET 10 ASP.NET Core Runtime to match current release ( #15702 )
...
* fix(fileflows): install .NET 10 ASP.NET Core Runtime to match current release
FileFlows now ships its server/node binaries targeting .NET 10
(Microsoft.NETCore.App 10.0.0), but the install script still installs the
ASP.NET Core Runtime 8.0. On a fresh install the app therefore cannot start:
You must install or update .NET to run this application.
Framework: 'Microsoft.NETCore.App', version '10.0.0' (x64)
The following frameworks were found:
8.0.28 at [/usr/share/dotnet/shared/Microsoft.NETCore.App]
so "dotnet FileFlows.Server.dll --systemd install" fails with exit code 150
(service failed to start) and the container aborts (issue #15686 ).
Bump the runtime to 10.0 on both branches: aspnetcore-runtime-10.0 from
packages.microsoft.com on amd64 (the same repo and package already used by
igotify, rdtclient and technitiumdns) and dotnet-install --channel 10.0 on
arm64.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com >
* fix(fileflows): ensure current .NET runtime on update too
An existing install set up under an older .NET (e.g. aspnetcore-runtime-8.0)
would download a newer FileFlows on update but keep the old runtime, failing to
start with the same framework-not-found error. Mirror the runtime handling used
by technitiumdns/rdtclient in update_script.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com >
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
2026-07-11 22:15:12 +02:00
community-scripts-pr-app[bot]
dcd1eefdd4
Update CHANGELOG.md ( #15709 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11 18:07:32 +00:00
TowyTowy
f1b2bd0486
fix(adventurelog): allow pnpm build scripts so install/update doesn't abort ( #15681 )
...
AdventureLog's frontend install runs a bare `pnpm i`. On pnpm v10+, build
scripts of dependencies (esbuild, es5-ext, svelte-preprocess) are ignored by
default and pnpm aborts with ERR_PNPM_IGNORED_BUILDS (exit 1), so the install
never reaches `pnpm build`. The shipped frontend/pnpm-workspace.yaml already
pins esbuild, so those builds are expected to run.
Enable the builds for this app only by appending `dangerouslyAllowAllBuilds:
true` to the frontend's pnpm-workspace.yaml before `pnpm i`, in both the install
and update paths. The change is guarded so it is not duplicated on re-run, and
it is scoped to AdventureLog (which ships no onlyBuiltDependencies) to avoid the
global config conflict that a repo-wide setting would cause.
Fixes #15670
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
2026-07-11 20:07:05 +02:00
community-scripts-pr-app[bot]
42f6b3ccdd
Update CHANGELOG.md ( #15708 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11 18:00:59 +00:00
community-scripts-pr-app[bot]
ed9c80f805
Update CHANGELOG.md ( #15707 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11 18:00:51 +00:00
push-app-to-main[bot]
0906341e95
LocalAGI ( #15687 )
...
* Add localagi (ct)
* Refactor localagi.sh for better readability
Removed unnecessary blank lines and improved script readability.
---------
Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com>
Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com >
2026-07-11 20:00:36 +02:00
Slaviša Arežina
618d578c35
[tools.func]: Add function to handle deployment via GitLab release tags ( #15641 )
...
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* add gl tag handling funcs
---------
Co-authored-by: community-scripts-pr-app[bot] <189241966+community-scripts-pr-app[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11 20:00:29 +02:00
community-scripts-pr-app[bot]
f137f8c894
Update CHANGELOG.md ( #15699 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-11 08:49:21 +00:00
pumrum
98bedb6ccd
Fix spacing on VLAN Input Box in haos-vm.sh ( #15696 )
2026-07-11 10:48:55 +02:00
community-scripts-pr-app[bot]
b958252441
Update CHANGELOG.md ( #15692 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-10
2026-07-10 18:48:25 +00:00
wollew
92c4fb45a9
Adapt to new artifact filename format for pocket id ( #15689 )
...
* Adapt to new artifact filename format for pocket id
* adapt pocket id install to new artifact filename format as well
2026-07-10 20:47:58 +02:00
community-scripts-pr-app[bot]
f4e0111ac0
Update CHANGELOG.md ( #15680 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-10 08:57:54 +00:00
push-app-to-main[bot]
2e4558e262
Squid ( #15605 )
...
* Add squid (ct)
* Update ct/squid.sh
* Simplify squid.sh by removing proxy user instructions
Removed instructions for adding a proxy user inside the container.
---------
Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com>
Co-authored-by: Sam Heinz <sam@samheinz.com >
Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com >
2026-07-10 10:57:27 +02:00
community-scripts-pr-app[bot]
11139aede7
Update CHANGELOG.md ( #15679 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-10 08:54:13 +00:00
Slaviša Arežina
6716d8de84
Fireshare: Fix for install and upgrade to v1.7.3 ( #15673 )
...
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Fix install and upgrade to v1.7.3
---------
Co-authored-by: community-scripts-pr-app[bot] <189241966+community-scripts-pr-app[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-10 10:53:51 +02:00
community-scripts-pr-app[bot]
f1e952005e
Update CHANGELOG.md ( #15678 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-10 08:53:34 +00:00
Slaviša Arežina
89b671880a
Endurain: Fix update procedure ( #15674 )
...
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Update CHANGELOG.md (#15631 )
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
* Fixed update procedure
* ups
---------
Co-authored-by: community-scripts-pr-app[bot] <189241966+community-scripts-pr-app[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-10 10:53:04 +02:00
community-scripts-pr-app[bot]
25045ef344
Update CHANGELOG.md ( #15659 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-09
2026-07-09 01:29:01 +00:00
TowyTowy
bfab0dd034
fix(pihole): repair Unbound DNS-over-TLS (DoT) forwarding config ( #15654 )
...
When the optional Unbound install is chosen with DoT forwarding, the script
truncated (>) /etc/unbound/unbound.conf.d/pi-hole.conf and rewrote it starting
with an indented "tls-cert-bundle:" option that has no "server:" section header.
unbound-checkconf rejects this ("syntax error, is there no section start"), so
"systemctl restart unbound" exits 1 and the install aborts (line 153). The
overwrite also dropped the interface/port 5335 settings Pi-hole forwards to.
Append (>>) the DoT additions to the existing recursive server block instead,
under a proper "server:" section (unbound merges multiple server: clauses), so
the tls-cert-bundle and forward-zone are valid and the resolver keeps listening
on 127.0.0.1:5335. Recursive (non-DoT) mode is unchanged.
Co-authored-by: Claude Fable 5 <noreply@anthropic.com >
2026-07-09 11:28:40 +10:00
community-scripts-pr-app[bot]
f1adfc32d3
Update CHANGELOG.md ( #15657 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-08
2026-07-08 22:57:24 +00:00
Chris
11937bf5fa
Opencloud: Bump version to 7.2.1 ( #15655 )
2026-07-09 00:56:59 +02:00
community-scripts-pr-app[bot]
a6a8651000
Update CHANGELOG.md ( #15647 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-08 11:04:41 +00:00
CanbiZ (MickLesk)
6e55269d9f
BabyBuddy: Harden update script ( #15642 )
...
Ensure cleanup runs from `/opt/babybuddy` before deleting old files, add `--` to the removal command for safer argument handling, and run `manage.py makemigrations` before `migrate` so database updates are applied reliably during upgrades.
2026-07-08 21:04:13 +10:00
community-scripts-pr-app[bot]
e64f5a041d
Update CHANGELOG.md ( #15644 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-07
2026-07-07 20:46:17 +00:00
push-app-to-main[bot]
67e0c7e9f8
Forgejo-Runner ( #15046 )
2026-07-07 22:45:52 +02:00
community-scripts-pr-app[bot]
87f2189cbb
Update .app files ( #15636 )
...
Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com>
2026-07-06
2026-07-06 23:47:06 +02:00
community-scripts-pr-app[bot]
a9d71b7d23
Update CHANGELOG.md ( #15638 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-06 21:29:10 +00:00
Chris
2bf6c5e5da
Wizarr: Build JS and CSS static assets ( #15634 )
2026-07-06 23:28:48 +02:00
community-scripts-pr-app[bot]
3143d25caa
Update CHANGELOG.md ( #15637 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-06 21:28:09 +00:00
CanbiZ (MickLesk)
d9d724ce57
Remove: FlowiseAI ( #15624 )
2026-07-06 23:27:42 +02:00
community-scripts-pr-app[bot]
7a9726b1dd
Update CHANGELOG.md ( #15633 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-06 19:15:29 +00:00
Slaviša Arežina
0102d5bd83
fix alignment in various ct end messages ( #15632 )
2026-07-06 21:15:04 +02:00
community-scripts-pr-app[bot]
8d288ffee3
Update CHANGELOG.md ( #15631 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-06 18:19:14 +00:00
community-scripts-pr-app[bot]
e00df4fd6e
Update CHANGELOG.md ( #15630 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-06 18:18:57 +00:00
Slaviša Arežina
fe7de5e26c
Update URL format in rustdeskserver.sh ( #15626 )
2026-07-06 20:18:45 +02:00