Skip to content

Releases: nitives/Vaulty

Vaulty v1.0.5 - Release build

Choose a tag to compare

@github-actions github-actions released this 30 Jul 04:23

Changes

  • Added macOS support with dedicated installers for Apple Silicon and Intel Macs
  • Added native macOS window behavior, transparency, system accent colors, and themed app icons
  • Added Vaulty accounts with optional cross-device Vaulty Sync
  • Items, folders, pages, settings, custom CSS, and media can now sync between signed-in devices
  • Added browser support for accessing synchronized Vaulty content
  • Added subscription and billing management for Vaulty Sync and Supporter plans
  • Added automatic desktop vault backups with configurable frequency and retention
  • Completely redesigned and reorganized the Settings screen
  • Added custom UI fonts
  • Custom CSS is now stored as custom.css inside the Vaulty folder
  • Added in-app update notifications, download progress, and manual update controls
  • Redesigned the input bar and reworked compact mode
  • Added an option to show or hide icons beside built-in sidebar sections
  • Added an option to preserve input drafts, tags, and media when switching sections
  • Added interactive Markdown task checkboxes
  • Multiple submitted images can now be grouped into a single item
  • Sidebar sections now reset to their default scroll position when switching
  • Added experimental options for preserving section scroll positions, clickable settings rows, and progressive feed blur
  • Added Windows and macOS builds to the automated GitHub release workflow

Fixes

  • Fixed sync conflicts, deletion handling, and content unexpectedly reappearing
  • Added account-binding protection to prevent data from different Vaulty accounts being mixed
  • Fixed synchronized images, audio, and other media not loading correctly in browser mode
  • Fixed settings and custom CSS persistence across devices
  • Fixed the --background CSS variable not following the selected System, Light, or Dark theme
  • Fixed macOS app icon selection, titlebar behavior, and transparency inconsistencies
  • Fixed Windows builds failing to resolve the Supabase dependency
  • Fixed invalid standalone resource links inside packaged desktop builds
  • Fixed Windows packaging so it consistently produces the intended x64 installer

macOS installation

  • Download the arm64 DMG for Apple Silicon Macs or the x64 DMG for Intel Macs
  • The macOS builds are currently unsigned, so macOS may require approval under System Settings → Privacy & Security before opening Vaulty or run xattr -cr /Applications/Vaulty.app in your Terminal

Vaulty v1.0.4 - Release build

Choose a tag to compare

@github-actions github-actions released this 28 Feb 20:14

Changes

  • Tags can be removed and added to submitted content
  • Tags filter view moved
  • New app icons

Fixes

  • Users can now edit images that did not contain text content previously
  • When maximizing the window it's rounded corners would be removed, also if using transparency the window would become opaque

Known Issues

  • Issues with switching app icons

Vaulty v1.0.3 - Release build

Choose a tag to compare

@github-actions github-actions released this 27 Feb 08:38

New Features

  • Pulses added | Create pulses to keep track of your updates and sources.
  • Subfolders

Changes

  • Input bar state now has an option to persist it's state when navigating
  • New experiments setting section
  • Redesign of context menu

Fixes

  • Updating Vaulty required a uninstall
  • Auto updates

Known Issues

  • Switching app icon doesn't work

Pulses and Feeds [BETA]

Vaulty now listens for new .pulse files and streams them straight into your feed.
.pulse files go inside of your Vaulty folder inside of the pulse folder, which can be found in Settings > Storage > Open vault folder

Example .pulse file

name: "Overwatch Patch Notes"
description: "Pings when a new patch is live and formats the notes into clean Markdown."
id: "ow-patch-sync2"
heartbeat: "12h"

# The Anchor: Checks the date of the very first patch on the page
anchor:
  url: "https://overwatch.blizzard.com/en-us/news/patch-notes/"
  select: ".PatchNotes-date"
  attribute: "innerText"

flow:
  - step: 1
    action: "fetch"
    url: "https://overwatch.blizzard.com/en-us/news/patch-notes/"
    extract:
      title:
        select: ".PatchNotes-patch:first-of-type .PatchNotes-patchTitle"
        attribute: "innerText"

      date:
        select: ".PatchNotes-patch:first-of-type .PatchNotes-date"
        attribute: "innerText"

      link:
        select: ".PatchNotes-patch:first-of-type .anchor"
        attribute: "id"
        template: "https://overwatch.blizzard.com/en-us/news/patch-notes/#{{value}}"

      # Loops through every sub-section (e.g., "Hero Updates", "Bug Fixes")
      # and extracts the title and description for each one.
      sections_markdown:
        select: ".PatchNotes-patch:first-of-type .PatchNotes-section"
        all: true
        joinWith: "\n\n"
        template: |
          ### {{section_title}}
          {{section_desc}}
        fields:
          section_title:
            select: ".PatchNotes-sectionTitle"
            attribute: "innerText"
          section_desc:
            select: ".PatchNotes-sectionDescription"
            attribute: "innerText"

      # The final payload passed to the UI, combining all previously extracted variables
      content:
        template: |
          *Live as of {{date}}*

          {{sections_markdown}}

          [View Full Notes on Blizzard.com]({{link}})

More examples ↗

Vaulty v1.0.2 - Release build

Choose a tag to compare

@github-actions github-actions released this 22 Feb 02:00

Vaulty Release

New Features

  • Folders and pages
  • Sidebar transparency can be toggled

Changes

  • Minimum window size adjusted
  • Drag and drop area increased
  • Input can now support multiple lines of text

Fixes

  • Compact mode, and more adjustments coming
  • Sidebar footer number of items and vault size would only update after refresh
  • "Start with sidebar collapsed" didn't work

Know issues

  • Input bar is still being reworked
    • Support for multiple items is next
  • Switching app icon doesn't work

Vaulty v1.0.1 - Release build

Choose a tag to compare

@github-actions github-actions released this 21 Feb 00:10
  • OCR and Image Detection

Vaulty v1.0.0 - Release build

Choose a tag to compare

@github-actions github-actions released this 21 Feb 00:10

Vaulty v1.0.0

  • Search operators
    • size:
    • date:YYYY-MM-DD
  • A guide section in settings
  • Confirm delete modal
  • Scroll back to content button
  • Markdown notes support