Apr 30, 2026
new + fixes
sincerelyrex.com/social — file uploads — title sync fixes
new
- new sincerelyrex.com/social — a standalone social links page with glyph icons for Instagram, Facebook, Twitter, TikTok, Spotify, SoundCloud, Discord, and Last.fm. Inherits the main site's wallpaper and opacity automatically. Discord button copies username to clipboard with a toast notification.
- new File upload moved into the + modal — the separate toolbar upload button is gone. MapleGr0ve can now attach a file directly at the bottom of the add-entry form, with inline progress bar. File size limit raised to 200 MB.
- new Dynamic embed preview — the site's OG/Twitter card now shows a live entry count and last-updated date instead of a static description.
fixes
- fix Title and subtitle edits by MapleGr0ve now persist for all users —
priv/settings.jsonhad incorrect file permissions (644instead of664), so PHP could read it but never write it. Every save silently updated only the public copy; on reload, the admin's authenticated fetch read the stale private copy and overwrote the correct value. Fixed by correcting permissions and adding explicit write-failure errors to the API. - fix Hero title no longer flickers or reverts on reload — title and subtitle are now included in the local settings cache so they apply instantly before the server fetch resolves, eliminating the race between two separate localStorage systems.
- impr File upload 413 errors — PHP upload limits raised to 200 MB via
.user.ini. nginxclient_max_body_sizealso needs updating (runsudo nginx -s reloadafter adding the directive).