Sunday, February 15, 2026
apps@conference.yunohost.org
February
Mon Tue Wed Thu Fri Sat Sun
            1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
             

[00:53:31] <Yunohost Git/Infra notifications> Autoupdater just ran, here are the results:

- 30 pending update PRs
- 17 new apps PRs: bentopdf, copyparty, filebrowser, firefly-iii, firefly-iii-di, freescout, invoiceninja5, jackett, jellyseerr, mitra, olivetin, piefed, psitransfer, pterodactyl, rallly, streams, tandoor
- 8 failed apps updates: adminer, arn_messager, gogs, homebox, memos, passed, planka, seaweedfs

See the full log here: https://paste.yunohost.org/raw/akizezefus
Autoupdate dashboard: https://apps.yunohost.org/dash?filter=autoupdate
[11:11:25] <Yunohost Git/Infra notifications> [jellyfin_ynh] x​abirequejo closed [issue #217](https://github.com/YunoHost-Apps/jellyfin_ynh/issues/217): Freshly installed, 502 bad gateway
[11:11:25] <Yunohost Git/Infra notifications> [jellyfin_ynh] x​abirequejo [commented](https://github.com/YunoHost-Apps/jellyfin_ynh/issues/217#issuecomment-3904230808) on [issue #217](https://github.com/YunoHost-Apps/jellyfin_ynh/issues/217) Freshly installed, 502 bad gateway: Thanks. I ended up reinstalling the whole OS again but good to know.
[13:38:18] <Yunohost Git/Infra notifications> [apps] o​tm33GH opened [pull request #3352](https://github.com/YunoHost/apps/pull/3352): Add Baserow
[15:16:27] <Yunohost Git/Infra notifications> [apps] T​hovi98 [commented](https://github.com/YunoHost/apps/pull/3352#issuecomment-3904662989) on [issue #3352](https://github.com/YunoHost/apps/pull/3352) Add Baserow: Thanks Would you like to transfer the repo to the YunoHost-Apps org?
[18:17:30] <m606> Here is what contains the `client` folder for instance:
```
vite/
_app/
fonts/
android-chrome-192x192.png
android-chrome-256x256.png
apple-touch-icon.png
browserconfig.xml
favicon.ico
Favicon.png
Favicon-16x16.png
Favicon-32x32.png
meta.png
mstile-150x150.png
robots.txt
safari-pinned-tab.svg
service-worker.js
site.webmanifest
```
the built test archive can be downloaded there (requires admin rights on the repo though: https://github.com/YunoHost-Apps/geoquest_ynh/releases/download/untagged-66c9fdaa5dc0b4af68b2/geoquest_v1.0-ed107dec_ynh.zip)
[18:34:21] <Yunohost Git/Infra notifications> Job [#28084](https://ci-apps.yunohost.org/ci/job/28084) for mitra failed miserably :(
[18:38:53] <m606> Hello, would anyone here be more comfortable with Vite & Svelte-kit frameworks than I am?
I am trying to upgrade the package geoquest_ynh.
1. Which [Svelte adapter](https://svelte.dev/docs/kit/adapters) to choose? Upstream build is done with Cloudflare adapter. For YNH package, I am not sure whether static or node adapter should be chosen (I am unsure whether the app classifies as static or with server-side rendering (SSR).
1. When building the app with static adapter, I get a `output` folder containing `client` and `server` folders, which each contains various files, but no HTML. What is supposed to be the entry point to the app ? Upstream is running`vite preview` (which starts a local webserver at a given port): https://vite.dev/guide/static-deploy.html#testing-the-app-locally. However official Vite doc seems to refer to this as a way to "test" (they don't seem to provide other instructions to deploy on a self-hosted server or VPS). Would that be fine using this here? Or should nginx be used directly?
[20:34:14] <Yunohost Git/Infra notifications> App breezewiki stays broken (level 0) in job [#28092](https://ci-apps.yunohost.org/ci/job/28092)
[21:13:13] <eric_G> [bentoPDF](https://github.com/YunoHost-Apps/bentopdf_ynh) is driving me nuts... If someone feels like giving an hand to polish install, help is welcome
[22:11:04] <m606> what about using prebuilt binaries? https://github.com/alam00000/bentopdf?tab=readme-ov-file#-self-hosting-locally
[22:15:13] <m606> let me try a branch
[22:18:35] <Yunohost Git/Infra notifications> [penpot_ynh] o​rhtej2 pushed to testing: v2.13.2 ([740cc0ae](https://github.com/YunoHost-Apps/penpot_ynh/commit/740cc0ae0d73df0fa7d82b435297e97500ab57a3))
[22:18:36] <Yunohost Git/Infra notifications> [penpot_ynh] o​rhtej2 pushed to testing: fixup ([0fda09e4](https://github.com/YunoHost-Apps/penpot_ynh/commit/0fda09e4d439f8d31549b0cc60931979480aa3e6))
[22:23:59] <orhtej2> VSCodeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
[22:25:21] <orhtej2> seriously, which part of 'publish a new branch do a different remote' is hard to follow
[22:25:30] <orhtej2> rather than 'stomp a protected ref'
[22:55:05] <Klodd> > rather than 'stomp a protected ref'

eric_G (@ericg:matrix.org) I had a look, there are several issues with the codebase
1. the author uses // (protocol relative URLs) everywhere, nginx doesn't like it for a reason I do not know. I managed to get around this by adding
sub_filter '"//' '"/';
sub_filter 'url(//' 'url(/';
sub_filter_once off;
sub_filter_types *;
to nginx.conf

2. many files have the wrong permissions, I needed to do a bunch of chmod 644 on files with the wrong permission. (in particular in images workers and locales folders to restore basic functionality)

Some stuff still doesn't work, but I see that many files within folders don't have the 644 permission. I don't have time to investigate more.
[22:55:43] <Klodd> I think what m606 (@m606:matrix.org) suggested might be a better approach
[23:03:33] <Yunohost Git/Infra notifications> [mastodon_ynh] e​rikmakela opened [issue #554](https://github.com/YunoHost-Apps/mastodon_ynh/issues/554): Reproducible - 401 access token is invalid
[23:05:09] <Klodd> m606 (@m606:matrix.org) you probably meant "dist-*.zip" instead of "dist-.*zip"
[23:15:43] <m606> @notklodd:matrix.org would you know - for Vite apps, we have no choice but to run a local web server ? https://github.com/alam00000/bentopdf?tab=readme-ov-file#:~:text=Start%20a%20local%20server
Nginx cannot do the job alone ?
[23:21:27] <m606> forget that, was just a wrong nginx config
[23:28:07] <Yunohost Git/Infra notifications> [mastodon_ynh] e​rikmakela edited [issue #554](https://github.com/YunoHost-Apps/mastodon_ynh/issues/554): Reproducible - 401 access token is invalid
[23:54:59] <Yunohost Git/Infra notifications> App gitlab goes down from level 8 to 3 in job [#28088](https://ci-apps.yunohost.org/ci/job/28088)