Skip to content

Commit 31cce36

Browse files
authored
Merge pull request #320 from SebastianRzk/dev
4.3.9 (2026-01-30)
2 parents ef7745f + 5a45736 commit 31cce36

File tree

12 files changed

+536
-18
lines changed

12 files changed

+536
-18
lines changed

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Sebastian Ruziczka <aur@sebastianruziczka.de>
22
pkgname=budgetbutlerweb-desktop
33
_pkgnameshort=budgetbutlerweb
4-
pkgver=4.3.8
4+
pkgver=4.3.9
55
pkgrel=1
66
pkgdesc="Simple and fast household book with offline and online functionality in German."
77
arch=("x86_64")

application-wrapper/BudgetButlerWeb/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

application-wrapper/BudgetButlerWeb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "budgetbutlerweb",
33
"productName": "budgetbutlerweb",
4-
"version": "4.3.8",
4+
"version": "4.3.9",
55
"description": "My Electron application description",
66
"main": ".webpack/main",
77
"scripts": {

butler_offline/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

butler_offline/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "budgetbutlerweboffline"
3-
version = "4.3.8"
3+
version = "4.3.9"
44
edition = "2021"
55

66
[dependencies]

butler_online/budgetbutler/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

butler_online/budgetbutler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "budgetbutler",
3-
"version": "4.3.8",
3+
"version": "4.3.9",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

butler_online/site.conf

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
resolver 127.0.0.11 valid=2s;
2+
3+
upstream api_server {
4+
zone backends 64k;
5+
server budget-butler-api:8080 resolve;
6+
}
7+
18
server {
29

310
server_tokens off;
@@ -13,6 +20,6 @@ server {
1320
location /api {
1421
expires -1;
1522
add_header 'Cache-Control' 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
16-
proxy_pass http://budget-butler-api:8080;
23+
proxy_pass http://api_server;
1724
}
1825
}

0 commit comments

Comments
 (0)