Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.2.0

## What's new

## Fixes

## Changes

* Update tui-app to 0.3.0
* Update tui-server to 0.3.0

# 0.1.8

## What's new
Expand Down
4 changes: 4 additions & 0 deletions external/overlay/etc/nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ events {

http {
include mime.types;
types {
text/javascript js mjs;
}
default_type application/octet-stream;
sendfile on;

Expand Down Expand Up @@ -57,6 +60,7 @@ http {

location /_next/ {
root /usr/share/tui-app;
add_header Cache-Control "public, max-age=31536000, immutable";
try_files $uri $uri.html $uri/ =404;
}

Expand Down
3 changes: 2 additions & 1 deletion external/overlay/etc/s6/tui-server/run
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ done
logger -t tui-server "Starting tui-server..."

mkdir -p /root/data
mkdir -p /root/data/files
rm -f /tmp/tui-server.sock
exec /bin/tui-server -d /root/data/tui.db -u /tmp/tui-server.sock
exec /bin/tui-server -d /root/data/tui.db -f /root/data/files -u /tmp/tui-server.sock
2 changes: 1 addition & 1 deletion external/package/tui-app/tui-app.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
################################################################################

TUI_APP_VERSION = 0.2.0
TUI_APP_VERSION = 0.3.0
TUI_APP_SITE = https://github.com/tiny-webui/webapp.git
TUI_APP_SITE_METHOD = git
TUI_APP_GIT_SUBMODULES = YES
Expand Down
1 change: 1 addition & 0 deletions external/package/tui-server/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ config BR2_PACKAGE_TUI_SERVER
select BR2_PACKAGE_JS_STYLE_CO_ROUTINE
select BR2_PACKAGE_TINY_WEBSOCKET
select BR2_PACKAGE_ZSTD
select BR2_PACKAGE_XXHASH
help
Tiny WebUI server
4 changes: 2 additions & 2 deletions external/package/tui-server/tui-server.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
################################################################################


TUI_SERVER_VERSION = 0.2.0
TUI_SERVER_VERSION = 0.3.0
TUI_SERVER_SITE = https://github.com/tiny-webui/server.git
TUI_SERVER_SITE_METHOD = git
TUI_SERVER_INSTALL_STAGING = NO
TUI_SERVER_INSTALL_TARGET = YES
TUI_SERVER_DEPENDENCIES = libcurl sqlite util-linux libsodium-new json-for-modern-cpp tev-cpp js-style-co-routine tiny-websocket zstd
TUI_SERVER_DEPENDENCIES = libcurl sqlite util-linux libsodium-new json-for-modern-cpp tev-cpp js-style-co-routine tiny-websocket zstd xxhash

$(eval $(cmake-package))
Loading