Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Format loosely follows [Keep a Changelog](https://keepachangelog.com).
### Added

- Add a spellcheck option to Settings. Allows for enabling / disabling, and selecting custom spellcheck dictionaries on Windows and Linux. Thanks [@JoeJoeflyn](https://github.com/JoeJoeflyn)! [#234](https://github.com/bholmesdev/hubble.md/pull/234)
- macOS users can now install Hubble via Homebrew with `brew tap PARAM-ship/hubble && brew install --cask hubble-md`. Thanks [@paramcodes](https://github.com/paramcodes)! [#264](https://github.com/bholmesdev/hubble.md/pull/264)

### Changed

Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,24 @@ Hubble ships as a desktop app. Install the latest build from the [releases page]

macOS, Windows, and Linux are supported. macOS builds are signed and notarized; Windows and Linux builds are unsigned, so your OS may warn before the first launch.

### Homebrew (macOS)

For macOS users, you can also install Hubble via Homebrew:

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 [SUGGESTION] Slightly tighter lead-in matches nearby README tone.

Suggested change
For macOS users, you can also install Hubble via Homebrew:
Install via Homebrew:


```sh
brew tap PARAM-ship/hubble
brew install --cask hubble-md
```

To update an existing installation:

```sh
brew update
brew upgrade --cask hubble-md
```

The Homebrew tap is maintained by the community and automatically updates when new Hubble.md releases are published.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 [SUGGESTION] Tap cask is Apple Silicon (arm64) only (matches current macOS release assets). Say so so Intel users aren’t surprised.

Suggested change
The Homebrew tap is maintained by the community and automatically updates when new Hubble.md releases are published.
The Homebrew tap is maintained by the community and automatically updates when new Hubble.md releases are published. The cask currently installs the Apple Silicon (arm64) build.


## Compile from source

Want to build Hubble directly? First, install the prerequisites:
Expand Down
Loading