Skip to content

Commit

Permalink
release: v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cmacrae committed Feb 14, 2022
1 parent 247a045 commit 79257ba
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/cmacrae/spacebar/compare/v1.3.0...HEAD)
## [Unreleased](https://github.com/cmacrae/spacebar/compare/v1.4.0...HEAD)

## [1.4.0](https://github.com/cmacrae/spacebar/releases/tag/v1.4.0) - 2022-02-14
**Changed**
- Fixed a bug that caused segfaults & rendering issues on Monterey (thanks [@cxa](https://github.com/cxa)!)
- Use Big Sur for CI builds

**Added**
- Support Apple Silicon for Nix package/flake

## [1.3.0](https://github.com/cmacrae/spacebar/releases/tag/v1.3.0) - 2020-04-25
**Changed**
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<a href="https://github.com/cmacrae/spacebar/projects/1">
<img src="https://img.shields.io/badge/Project-tasks-7fdbda.svg?logo=trello" alt="GitHub Project Badge">
</a>
<a href="https://github.com/cmacrae/spacebar/compare/v1.3.0...HEAD">
<a href="https://github.com/cmacrae/spacebar/compare/v1.4.0...HEAD">
<img src="https://img.shields.io/github/commits-since/cmacrae/spacebar/latest.svg?color=ea907a" alt="Version Badge">
</a>
<a href="https://github.com/cmacrae/spacebar/discussions">
Expand All @@ -40,7 +40,7 @@ spacebar is a minimal status bar for macOS. Ideal for use with tiling window man

## Installation
A package and service to install and manage spacebar is provided in two flavours: [Homebrew](https://brew.sh) & [Nix](https://nixos.org).
There is also a precompiled binary archive available in [the latest release assets](https://github.com/cmacrae/spacebar/releases/tag/v1.3.0).
There is also a precompiled binary archive available in [the latest release assets](https://github.com/cmacrae/spacebar/releases/tag/v1.4.0).

### Homebrew
spacebar can be installed using Homebrew from the `cmacrae/formulae` tap
Expand All @@ -55,7 +55,7 @@ A [Flake](https://nixos.wiki/wiki/Flakes) is also available in this repository a
```nix
{
inputs.darwin.url = "github:lnl7/nix-darwin";
inputs.spacebar.url = "github:cmacrae/spacebar/v1.3.0";
inputs.spacebar.url = "github:cmacrae/spacebar/v1.4.0";
outputs = { self, darwin, spacebar }: {
darwinConfigurations.example = darwin.lib.darwinSystem {
Expand All @@ -70,7 +70,7 @@ A [Flake](https://nixos.wiki/wiki/Flakes) is also available in this repository a
};
}
```
Or try it out with `nix run github:cmacrae/spacebar/v1.3.0`!
Or try it out with `nix run github:cmacrae/spacebar/v1.4.0`!

spacebar can be configured and managed in a declarative manner using the `services.spacebar` module in [nix-darwin](https://github.com/LnL7/nix-darwin)

Expand All @@ -94,7 +94,7 @@ touch ~/.config/spacebar/spacebarrc
chmod +x ~/.config/spacebar/spacebarrc
```

Here's a configuration taken from [`examples/`](https://github.com/cmacrae/spacebar/blob/v1.3.0/examples/spacebarrc):
Here's a configuration taken from [`examples/`](https://github.com/cmacrae/spacebar/blob/v1.4.0/examples/spacebarrc):
```
#!/usr/bin/env sh
Expand Down Expand Up @@ -132,7 +132,7 @@ echo "spacebar configuration loaded.."
```
_Note: Ensure fonts are installed to use glyphs_

For further configuration documentation, please see [`man spacebar`](https://github.com/cmacrae/spacebar/blob/v1.3.0/doc/spacebar.asciidoc)
For further configuration documentation, please see [`man spacebar`](https://github.com/cmacrae/spacebar/blob/v1.4.0/doc/spacebar.asciidoc)

### Declarative configuration with Nix
If you're using the `services.spacebar` module from [nix-darwin](https://github.com/LnL7/nix-darwin), you can configure spacebar like so:
Expand Down
2 changes: 1 addition & 1 deletion src/spacebar.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define CONFIG_OPT_SHRT "-c"

#define MAJOR 1
#define MINOR 3
#define MINOR 4
#define PATCH 0

extern int SLSMainConnectionID(void);
Expand Down

0 comments on commit 79257ba

Please sign in to comment.