Skip to content

Commit

Permalink
chore: bump version to v0.11.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanlogue committed Jan 14, 2024
1 parent 13967b5 commit 559ea37
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ 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).

## Unreleased

## [v0.11.0](https://github.com/stefanlogue/meteor/releases/tag/v0.11.0) - 2024-01-14
### Changed
- migrated `bubbletea` to `huh`

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>️☄ meteor ☄</h1>
<h5>Meteor is a simple CLI tool that helps you to use <a href="https://www.conventionalcommits.org/">conventional commits</a> with git.</h5>
<h5>Meteor is a simple, highly customisable CLI tool that helps you to write <a href="https://www.conventionalcommits.org/">conventional commits</a> with git.</h5>
</div>


Expand Down
Binary file modified demos/demo-without-boards.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
96 changes: 96 additions & 0 deletions demos/demo-without-boards.tape
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# VHS documentation
#
# Output:
# Output <path>.gif Create a GIF output at the given <path>
# Output <path>.mp4 Create an MP4 output at the given <path>
# Output <path>.webm Create a WebM output at the given <path>
#
# Require:
# Require <string> Ensure a program is on the $PATH to proceed
#
# Settings:
# Set FontSize <number> Set the font size of the terminal
# Set FontFamily <string> Set the font family of the terminal
# Set Height <number> Set the height of the terminal
# Set Width <number> Set the width of the terminal
# Set LetterSpacing <float> Set the font letter spacing (tracking)
# Set LineHeight <float> Set the font line height
# Set LoopOffset <float>% Set the starting frame offset for the GIF loop
# Set Theme <json|string> Set the theme of the terminal
# Set Padding <number> Set the padding of the terminal
# Set Framerate <number> Set the framerate of the recording
# Set PlaybackSpeed <float> Set the playback speed of the recording
# Set MarginFill <file|#000000> Set the file or color the margin will be filled with.
# Set Margin <number> Set the size of the margin. Has no effect if MarginFill isn't set.
# Set BorderRadius <number> Set terminal border radius, in pixels.
# Set WindowBar <string> Set window bar type. (one of: Rings, RingsRight, Colorful, ColorfulRight)
# Set WindowBarSize <number> Set window bar size, in pixels. Default is 40.
# Set TypingSpeed <time> Set the typing speed of the terminal. Default is 50ms.
#
# Sleep:
# Sleep <time> Sleep for a set amount of <time> in seconds
#
# Type:
# Type[@<time>] "<characters>" Type <characters> into the terminal with a
# <time> delay between each character
#
# Keys:
# Escape[@<time>] [number] Press the Escape key
# Backspace[@<time>] [number] Press the Backspace key
# Delete[@<time>] [number] Press the Delete key
# Insert[@<time>] [number] Press the Insert key
# Down[@<time>] [number] Press the Down key
# Enter[@<time>] [number] Press the Enter key
# Space[@<time>] [number] Press the Space key
# Tab[@<time>] [number] Press the Tab key
# Left[@<time>] [number] Press the Left Arrow key
# Right[@<time>] [number] Press the Right Arrow key
# Up[@<time>] [number] Press the Up Arrow key
# Down[@<time>] [number] Press the Down Arrow key
# PageUp[@<time>] [number] Press the Page Up key
# PageDown[@<time>] [number] Press the Page Down key
# Ctrl+<key> Press the Control key + <key> (e.g. Ctrl+C)
#
# Display:
# Hide Hide the subsequent commands from the output
# Show Show the subsequent commands in the output

Output demo-without-boards.gif

Require echo

Set Shell "bash"
Set FontSize 24
Set Width 1400
Set Height 1000

Type@250ms "cd .. && ./dist/meteor" Sleep 500ms Enter
Sleep 3s
Enter
Sleep 3s
Type@250ms "/chore"
Enter
Sleep 3s
Left@500ms
Right@500ms
Enter
Type@250ms "readme"
Sleep 2s
Enter
Sleep 2s
Down@500ms
Up@500ms
Type@250ms "x"
Sleep 2s
Enter
Type@250ms "update readme"
Enter
Sleep 2s
Type@250ms "add gifs from vhs"
Sleep 2s
Enter
Sleep 2s
Left@500ms
Enter

Sleep 3s
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func main() {
fail("Error: %s", err)
}

if len(newCommit.Board) > 0 {
if len(newCommit.Board) > 0 && newCommit.Board != "NONE" {
if newCommit.IsBreakingChange {
if len(newCommit.Scope) > 0 {
newCommit.Message = fmt.Sprintf("%s(%s)!: <%s> ", newCommit.TicketNumber, newCommit.Scope, newCommit.Type)
Expand Down

0 comments on commit 559ea37

Please sign in to comment.