From a89fbda0273adae692bff101bcdffcbcc553b9be Mon Sep 17 00:00:00 2001 From: Stellae <80097964+StellaeAlis@users.noreply.github.com> Date: Mon, 26 Jan 2026 10:29:20 +0000 Subject: [PATCH] fix: review requests --- ct/writefreely.sh | 1 - frontend/public/json/writefreely.json | 2 +- install/writefreely-install.sh | 6 +----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/ct/writefreely.sh b/ct/writefreely.sh index 48f93a535..bb0c64c58 100644 --- a/ct/writefreely.sh +++ b/ct/writefreely.sh @@ -57,7 +57,6 @@ function update_script() { msg_info "Starting Services" systemctl start writefreely msg_ok "Started Services" - msg_ok "Updated successfully!" fi exit diff --git a/frontend/public/json/writefreely.json b/frontend/public/json/writefreely.json index eec8a77c2..984243807 100644 --- a/frontend/public/json/writefreely.json +++ b/frontend/public/json/writefreely.json @@ -12,7 +12,7 @@ "documentation": "https://writefreely.org/docs", "config_path": "/opt/writefreely/config.ini", "website": "https://writefreely.org/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/writefreely-light.png", + "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/writefreely-light.webp", "description": "WriteFreely is free and open source software for easily publishing writing on the web with support for the ActivityPub protocol. Use it to start a personal blog — or an entire community.", "install_methods": [ { diff --git a/install/writefreely-install.sh b/install/writefreely-install.sh index 98be776cf..c3a1e21a7 100644 --- a/install/writefreely-install.sh +++ b/install/writefreely-install.sh @@ -15,8 +15,7 @@ network_check update_os msg_info "Installing Dependencies" -$STD apt install -y \ - crudini +$STD apt install -y crudini msg_ok "Installed Dependencies" setup_mariadb @@ -35,13 +34,10 @@ msg_ok "Setup WriteFreely" msg_info "Configuring WriteFreely" $STD crudini --set config.ini server port 80 $STD crudini --set config.ini server bind $LOCAL_IP - $STD crudini --set config.ini database username $MARIADB_DB_USER $STD crudini --set config.ini database password $MARIADB_DB_PASS $STD crudini --set config.ini database database $MARIADB_DB_NAME - $STD crudini --set config.ini app host http://$LOCAL_IP:80 - $STD ./writefreely db init msg_ok "Configured WriteFreely"