Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joehillen committed Sep 22, 2021
1 parent 3c35b34 commit 4ab5d57
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 4 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,38 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.0] - 2021-09-21

### Added

- Major Refactor
- Better ctrl-s and ctrl-r handling
- Better handling of fzf exit codes
- Wider preview window on command prompt

### Fixed

- Remove duplicates

### Removed

- `--reverse`. User can set this using `FZF_DEFAULT_OPTS`.

## [1.3.1] - 2021-09-21

### Fixed

- Require fzf >= 0.27.1
- Unbind ctrl-v in state and daemon-reload prompts

## [1.3.0] - 2021-09-20

### Added

- `cat` command
- `mask` command
- `unmask` command
Expand All @@ -20,45 +42,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `?` to show keybindings

### Fixed

- Do not run `status` after `show`

## [1.2.3] - 2021-09-20

### Fixed

- use `#!/usr/bin/env bash`
- `-s` option is for state

### Added

- `--state=` support

## [1.2.2] - 2021-09-17

### Fixed

- root check

## [1.2.1] - 2021-09-17

### Fixed

- Bug in "follow" action

## [1.2.0] - 2021-09-17

### Added

- Version flag `-v`
- "show" action

### Changed

- Verbose flag to `-V`

### Fixed

- "follow" action
- root user doesn't have a --user instance

## [1.1.0] - 2021-09-02

### Added

- Keybinding `CTRL-v` to cat the current unit in preview window
- Support parametrized units: `[email protected]`

### Changed

- Remove `cat` command
- Show `cat` in preview for parametrized units: `[email protected]`

### Fixed

- Show `start` command if unit is "failed"
- Show `enable` command is unit is "static"
2 changes: 1 addition & 1 deletion PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maintainer: Joe Hillenbrand (joehillen) <[email protected]>

pkgname=sysz
pkgver=1.3.1
pkgver=1.4.0
pkgrel=0
pkgdesc="fzf terminal UI for systemctl"
arch=("any")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A [fzf](https://github.com/junegunn/fzf) terminal UI for systemctl

# Features

VERSION: 1.3.1
VERSION: 1.4.0

- See and filter both system and user units simultaneously.
- Supports all unit types.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1
1.4.0
2 changes: 1 addition & 1 deletion sysz
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ shopt -s lastpipe
shopt -s extglob

PROG=$(basename "$0")
SYSZ_VERSION=1.3.1
SYSZ_VERSION=1.4.0
SYSZ_HISTORY=${SYSZ_HISTORY:-${XDG_CACHE_HOME:-~/.cache}/sysz/history}
declare -a STATES

Expand Down

0 comments on commit 4ab5d57

Please sign in to comment.