Skip to content

v0.9.0

Choose a tag to compare

@sevenlayercookie sevenlayercookie released this 27 Jan 23:33
· 52 commits to main since this release
aab620c

New Features

File Operation Mode: Copy vs. Hardlink

Added the ability to choose how files are organized. While hardlinking remains the default (saving space), you can now choose to Copy files instead.

  • Why? helpful for users organizing files across different file systems or drives where hardlinks are not supported.
  • How? Toggle in Settings > File Operation Mode or set AUTO_ORGANIZE_USE_COPY=true in your .env.
  • Credit: Huge thanks to @Serotonin7 for contributing this feature! (Commit 7289019)

Media Info Inspector

  • Added a new Media Info dropdown in the Book Details modal.
  • Displays all of the information that MAM makes available via API from MediaInfo in a structured, collapsible JSON tree.
    • NOTE: MAM does not make all MediaInfo available via API; MouseSearch will display all that is available via the API.
  • Helpful for inspecting audio tracks, codecs, chapter structure, and other file properties directly in the UI.
  • Solves #10

Version Awareness

  • The current app version is now displayed in the page footer for easier tracking.
  • closes #4

Bug Fixes & Improvements

  • Robust Number Parsing: Fixed an issue where User Stats (Upload/Download/Ratio) would break if the tracker returned numbers with commas (e.g., 1,234.56) or invalid states like Infinity/NaN.
    • fixes #8
  • UI Navigation: Fixed settings closing bug on Firefox browsers.
    • fixes #7
  • Visual Tweaks: made some minor visual improvements.

Configuration Changes

New optional setting in .env:

# Enable this to have MouseSearch copy files instead of hardlinking them
AUTO_ORGANIZE_USE_COPY=true