Skip to content

Commit 3b1642d

Browse files
committed
v0.14.0
Completely rewritten in Go. Configuration format is backwards-compatible with the rust version, but the CLI makes **no claims of backwards compatibility**. Added: * [Helix Editor](https://helix-editor.com) support * [Kitty](https://sw.kovidgoyal.net/kitty/) support * Custom application support * FreeBSD support * Rewrote docs site, now hosted on https://thcon.app * `thcon listen` subcommand Removed: * [Sublime Text](https://www.sublimetext.com) support * ST4 has been out for long enough that maintaining support for ST3 is unnecessary * [Visual Studio Code](https://code.visualstudio.com) support * VSCode supports OS theme syncing on all major platforms since no later than March 2022 * [Atom](https://github.com/atom/atom) support * Atom was sunset in December 2022 * The `thcon-listen` binary is no longer included during installation * Use the `thcon listen` subcommand instead
1 parent f57c915 commit 3b1642d

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,34 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6-
Also I copied this intro verbatim from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
Also I copied this intro verbatim from [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
77

88
## [Unreleased]
99

10+
## [v0.14.0 - 2023-06-11]
11+
Completely rewritten in Go. Configuration format is backwards-compatible with
12+
the rust version, but the CLI makes **no claims of backwards compatibility**.
13+
14+
### Added:
15+
* [Helix Editor](https://helix-editor.com) support
16+
* [Kitty](https://sw.kovidgoyal.net/kitty/) support
17+
* Custom application support
18+
* FreeBSD support
19+
* Rewrote docs site, now hosted on https://thcon.app
20+
* `thcon listen` subcommand
21+
22+
### Removed:
23+
* [Sublime Text](https://www.sublimetext.com) support
24+
* ST4 has been out for long enough that maintaining support for ST3 is unnecessary
25+
* [Visual Studio Code](https://code.visualstudio.com) support
26+
* VSCode supports OS theme syncing on all major platforms since no later than March 2022
27+
* [Atom](https://github.com/atom/atom) support
28+
* Atom was sunset in December 2022
29+
* The `thcon-listen` binary is no longer included during installation
30+
* Use the `thcon listen` subcommand instead
31+
1032
## [v0.13.2 - 2021-11-06]
1133
### Changed:
1234
* Sublime Text is now disabled by default, since ST4 is able to sync with system dark-mode

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929

3030
var rootCmd = &cobra.Command{
3131
Use: "thcon",
32-
Version: "0.1.0",
32+
Version: "0.14.0",
3333
Short: "Switches apps between dark mode and light mode",
3434
PersistentPreRun: func(cmd *cobra.Command, args []string) {
3535
// PersistentPreRun executes after arg validation.

0 commit comments

Comments
 (0)