Skip to content

Releases: Atlas-Commons/StreamBooru

v1.1.0-beta.1

22 May 19:15
3d3259a

Choose a tag to compare

v1.1.0-beta.1 Pre-release
Pre-release

[v1.1.0-beta.1] — 2026-05-22

Highlights

  • Web browser: StreamBooru now runs in your browser at /app/ on the sync server, with a landing page at /.
  • Web Discord login: OAuth works in the browser via /oauth-callback (no streambooru:// deep link required).
  • Beta releases: Tags like v1.1.0-beta.1 are published as GitHub pre-releases automatically.

Added

  • Landing page at / on the sync server with links to the web app, downloads, and health check.
  • Web app at /app/ — full StreamBooru UI served from the sync server (renderer copied at build time).
  • Web OAuth callback at /oauth-callback for browser Discord login and account linking.
  • POST /auth/discord/unlink endpoint to remove Discord from a linked account.
  • Tab cache TTLs — New (2 min), Popular (30 s), Search (3 min) with manual refresh by re-clicking the active tab.
  • Server Coolify/Nixpacks deployment with Bun runtime and automatic DB migrations on start.
  • Release notes builder — releases combine CHANGELOG.md sections with GitHub-generated commit/PR notes.

Changed

  • Sync server migrated to Bun; native fetch replaces node-fetch; start:prod runs migrations then starts.
  • Profile tags (web/Android) — site tags and rating from Manage Sites are now merged into search/popular queries (matching desktop adapters).
  • Discord login — logging in with Discord after linking no longer overwrites your local username when a password is set.
  • Release workflow — pre-release tags publish to streambooru-bin-beta on AUR; stable tags publish to streambooru-bin; Flatpak build uses electron-builder; release body built from changelog + auto notes.

Fixed

  • Local login after Discord link — username/password login works again after linking Discord to a local account.
  • Tab cache stale results — cached feeds expire and can be refreshed manually instead of blocking new posts indefinitely.
  • Flatpak CI — rebuilt around electron-builder --linux flatpak with the Electron base app.

Notes

  • Web app URL (when deployed): https://streambooru.ecchibooru.uk/app/
  • Discord OAuth redirect (unchanged): {BASE_URL}/auth/discord/callback
  • If your username was already overwritten before this fix, restore it in the database or unlink/re-link Discord after upgrading the server.

v1.0.2

25 Oct 21:39
87c25cc

Choose a tag to compare

[v1.0.2] — 2025-10-25

Added

  • Caching Added caching to results pages to speed up loads when changing between tabs
  • Pre-Connects Added preconnects so the apps can start connecting and pulling posts before the UI has loaded
  • Concurrent Pulls added concurrent pulls from sites to increase load speed

Changed

  • How Posts are loaded previously the new and popular tab would wait for all configured sites to respond, organise the posts, then display them, this caused rather slow loading at start, now they display posts as soon as they are loaded and add new ones to the end, this may however mean popular is not always in a descending order between sites and sites wont be round-robin anymore and post may appear slightly grouped by sites due to some sites responding faster than others, the same has been done for the new tab.

Fixed

  • Login Login in with local account and then linking discord would overwrite local account details in db with discord making it impposible to login with local again, this has now been fixed to add discord details rather than replace and added an unlink discord button
  • Sync issues fixed some rather persistent issues where SSE wouldnt always trigger a refresh and site settings like api keys and login details wouldnt sync, also fixed some cross platform sync issues which caused issues when syncing between desktop and mobile or vice versa

v1.0.1

25 Oct 03:54
4ec5f3e

Choose a tag to compare

Full Changelog: v1.0.0...v1.0.1

v1.0.0

25 Oct 03:32
8035b1a

Choose a tag to compare

v1.0.0 — 2025-10-25

Highlights

  • Account Sync: Introducing optional server-side account synchronization for favorites and site configurations across devices.
  • Multiple Login Options: Support for creating local accounts or logging in via Discord.
  • Improved Mobile UI: Enhanced mobile experience with a dedicated menu for navigation and actions.

Added

  • Server Backend: Added a Node.js backend (server/) for handling user accounts, authentication (local & Discord OAuth), and data synchronization (favorites, sites).
  • Account Management: New "Account" section in the UI (renderer/js/account.js) to manage server settings, login, registration, and logout.
  • Cross-Device Sync:
    • Favorites are now synced with the server when logged in.
    • Site configurations (including credentials) are synced.
    • Real-time updates via Server-Sent Events (SSE) for changes pushed from other devices.
  • Mobile Menu: Implemented a hamburger menu (renderer/js/mobile-menu.js, renderer/mobile.css) for better usability on smaller screens or mobile platforms (like the Android build).
  • Database Migrations: SQL migration scripts added for setting up user, favorites, and sites tables (server/src/migrations/).
  • Encryption: User credentials stored in the database are encrypted (server/src/crypto.js).

Changed

  • Preload Script (electron/preload.js): Extended window.api to include functions for account management and synchronization.
  • Renderer (renderer/renderer.js, renderer/index.html): Integrated account button and sync logic. Site Manager now saves/loads site configurations via sync API when logged in.
  • GitHub Actions: Updated release.yml, android.yml, and publish-aur.yml workflows.

Fixed

  • Minor adjustments and fixes related to integrating the account system.

v0.4.1

18 Oct 19:13
7e66fc3

Choose a tag to compare

Full Changelog: v0.4.0...v0.4.1

v0.4.0

18 Oct 18:33
232724d

Choose a tag to compare

v0.4.0 — 2025-10-18

Highlights

  • First Android APK available (signed Release AAB and APK; Debug APK also provided).
  • Mobile UI with a touch‑friendly hamburger menu.
  • Per‑site rating honored from the Site Manager dropdown.

Added

  • Android app (Capacitor):
    • Native HTTP path (CapacitorHttp) to bypass CORS for API calls and image proxying.
    • proxyImage: converts hotlink‑protected media to data URLs on‑device.
    • Local favorites storage on Android (no account required).
  • Rating handling (Android/Web adapter):
    • Uses each site’s rating selection from the Site Manager (safe/questionable/explicit/any) unless the search already contains a rating: token.
    • Safety net: when the adapter injects a rating, results are also filtered client‑side to that rating.
  • Mobile menu:
    • Consolidated actions: Browse (New/Popular/Search/Favorites), Search box, Manage Sites, and Download actions.
    • Larger touch targets, visual polish (icons, blur/glass), and proper focus/escape behavior.

Build/CI

  • Android CI workflow:
    • Always uploads a Debug APK artifact.
    • When signing secrets are present (PKCS#12 keystore), also builds and uploads signed Release AAB and APK.
  • Release workflow:
    • Can collect Android artifacts and attach them to GitHub Releases alongside desktop builds.

Known limitations (Android)

  • Bulk “Download All” is not supported (single‑item downloads only).
  • “Favorite on site” (remote/booru‑side) is not available in the Android build.
  • Some sites may still rate‑limit or use anti‑bot protections; the native HTTP path helps with CORS but can’t bypass site‑level restrictions.

v0.3.1

18 Oct 15:52
028a518

Choose a tag to compare

v0.3.1 — 2025-10-18

Added

  • Download options popover
    • Shift-click, Alt-click, or right-click “Download All” to open options.
    • Filename templates with presets and “Custom…” entry; selection is used by both single “Download” and “Download All”.
    • “Shift for options” tooltip shown below the button for visibility.

Changed

  • Naming templates
    • Tokens supported: {site} {site_type} {id} {score} {favorites} {rating} {width} {height} {index} {ext} {original_name} {created} {created_yyyy} {created_mm} {created_dd} {created_hhmm} {artist} {copyright} {character}.
  • Card thumbnails
    • Prefer sample_url (then file_url, then preview_url) and add a simple srcset to keep Danbooru previews sharp.

Fixed

  • Favorites (local)
    • “♥ Save” button works again even if the preload method is missing: renderer includes a safe localStorage fallback.
    • Preload bridge restored back‑compat names (toggleLocalFavorite, getLocalFavoriteKeys, etc.).
  • Popular view sorting
    • Corrected popularity computation (typo fix st.scoresP95st.scoreP95 and added guards), restoring true global popularity sorting.
  • Manage Sites – Test row
    • Restored full test flow (API probe, Auth check with info, Danbooru rate‑limit) and brought back “Open Account Page” and “API Help” buttons.
    • Fixed info text rendering (no more “[object Object]”) and polished badges.
  • Release workflow
    • Release notes are reliably extracted from CHANGELOG and passed via body_path; removed unsupported allow_updates input. Falls back to auto‑notes when no section matches.

v0.3.0

18 Oct 15:33
1be33fd

Choose a tag to compare

v0.3.0 — 2025-10-18

Added

  • New engines
    • e621/e926: adapter with proper tag mapping, “New” (order:id_desc + before-id pagination) and “Popular” (order:score).
    • Derpibooru: adapter using /api/v1/json/search/images with sort by created_at (New) and score (Popular).
  • Manage Sites presets
    • e621 (R18) and e926 (SFW).
    • Derpibooru.
    • Quick-picks for other common Booru clones that already work via existing adapters:
      • Gelbooru family (Rule34/rule34.xxx, Realbooru, Xbooru) via Gelbooru adapter.
      • Hypnohub and TBIB via Moebooru adapter.
  • Defaults
    • Fresh installs now include optional examples for e621 and Derpibooru (browsing works without auth).
  • Download All
    • New “Download All” button in the top bar (next to “Manage Sites”) to bulk‑download everything currently loaded in the active view: New, Popular, Search, or Local Favorites.
    • Single folder chooser (once), optional per‑site subfolders, concurrency‑limited downloads, and correct Referer headers for supported CDNs.
    • New IPC: download:bulk (renderer → main); preload exposes api.downloadBulk(items, options).

Changed

  • Site Manager
    • Engine list expanded to include e621 and Derpibooru; helper links (Account/API Help) added for those engines.
    • Rating/tag hints normalized across engines (rating tokens mapped to the correct flavor per site).
  • Hotlink headers
    • Automatic Referer injection extended to cover common image CDNs: static1.e621.net, static1.e926.net, derpicdn.net, alongside existing Danbooru/Moebooru hosts.
  • UI
    • Top bar updated to include the “Download All” action next to “Manage Sites.”

Fixed

  • Gelbooru family
    • 401 “No results” on gelbooru.com: adapter now supports API credentials (user_id + api_key) and will add them to requests when present.
    • JSON blocked/empty responses now fall back to XML automatically (requires credentials on gelbooru.com; clones like Safebooru usually work without auth).
  • Derpibooru
    • Empty results when query was blank: adapter now defaults to q=score.gte:0.
    • Optional filter_id support (via site credentials) to avoid local default filters hiding results.
  • Release workflow (GitHub Actions)
    • Release notes now pull the correct section from CHANGELOG.md and use it as the GitHub Release body.
    • Robust heading matcher: supports “## vX.Y.Z”, “## X.Y.Z”, “## [vX.Y.Z] — YYYY‑MM‑DD”, etc., with a fallback to auto-generated notes if no section is found.

Removed

  • Zerochan integration
    • Adapter, presets, and special‑case request handling removed due to persistent anti‑bot/503 gating.

Notes

  • e621/e926
    • Browsing is unauthenticated by default; account features (favorites, etc.) are not implemented in this release.
    • Image requests include a reasonable UA and Referer where applicable to maximize compatibility with their static hosts.
  • Derpibooru
    • Browsing is unauthenticated by default; favorites are not implemented in this release.
  • Bulk download
    • Uses concurrency (default 3) to avoid rate‑limiting and disk thrash; customize via downloadBulk(items, { concurrency, subfolderBySite }).

Known Issues (unchanged)

  • Lightbox video playback may not work on some Linux builds lacking proprietary codecs (H.264/AAC). Use “Open Media” or replace Electron’s libffmpeg.so with the distro’s chromium-codecs-ffmpeg-extra variant.
  • Danbooru video thumbnails may look softer (site only serves small static previews for videos).

v0.2.1

18 Oct 11:43
de9bc2e

Choose a tag to compare

Full Changelog: v0.2.0...v0.2.1

v0.2.0

18 Oct 01:02
ca21c5b

Choose a tag to compare

Full Changelog: v0.1.9...v0.2.0