OpenSSF Scorecard / Scorecard analysis (push) Waiting to run
CI / Build & test (Node 20) (push) Canceled after 0s
CI / Build & test (Node 24) (push) Canceled after 0s
CI / Build & test (push) Canceled after 0s
CodeQL / Analyze (javascript-typescript) (push) Canceled after 0s
Security / Secret scan (gitleaks) (push) Canceled after 0s
Security / Dependency scan (OSV-Scanner) (push) Canceled after 0s
Security / IaC/config scan (Trivy) (push) Canceled after 0s
Security / License compliance scan (Trivy) (push) Canceled after 0s
The system balloon carries the OS notification sound, which does not belong to this app, and it only fired while the window was out of focus — with the app focused nothing appeared at all. Notifications now surface inside the window, carry the same synthesised timbre as the rest of the app's sounds, and clicking one opens the channel. The native balloon is kept for when the window is not visible, since an in-app card nobody can see is no notification, but it is now silent: the app plays its own effect instead. A focused window is notified only about other channels — announcing the conversation someone is already reading is noise. Also fixes the Gitea publish cleanup, which silently deleted nothing: it interpolated an Actions expression inside a bash , and when the pattern did not match, the loop passed over every asset. The release ended with two latest.yml files and the updater served the older one, reporting 1.1.0 as current — an update that exists but is never offered, with no error anywhere. The filter is plain bash now, logs what it found, and the job fails if more than one latest.yml survives. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Geradores dos efeitos sonoros
Os .ogg em packages/web/public/sounds/ para call e transmissão são
sintetizados por estes scripts — nenhum arquivo de terceiros, nenhuma questão
de licença num repositório público.
Os parâmetros não foram escolhidos a gosto: saíram da medição de dois sons de referência fornecidos pelo dono da instância (análise de envelope, picos espectrais e tempo de decaimento). O timbre resultante é fundamental + oitava quase na mesma intensidade, com pouco acima disso:
| Harmônico | Proporção medida |
|---|---|
| 1x (fundamental) | 1.00 |
| 2x (oitava) | 0.85 |
| 3x | 0.10 |
| 4x | 0.02 |
Decaimento a 1/e: ~0,19 s. Sem reverberação.
| Script | Gera | Notas |
|---|---|---|
build.py |
user_join, user_leave |
C4→G4 subindo / D4→G3 descendo |
stream.py |
stream_user_joined, stream_user_left |
nota única (G4 / G3), ~55% do volume |
started4.py |
stream_started |
acorde de dó + golpe grave + sopro de ar |
ended.py |
stream_ended |
arpejo descendo, resolve na raiz grave |
Para regerar: python3 <script>.py produz .wav, depois converter com
ffmpeg -i X.wav -c:a libvorbis -q:a 5 -ar 48000 X.ogg.
Ajustes comuns: HARM muda o timbre, tau a duração, step a velocidade do
arpejo, e o alvo em write() o volume (pico RMS).