-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12e1b0f
commit 8c4973a
Showing
8 changed files
with
62 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.gif | ||
*.md | ||
!examples/*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Require changelog | ||
Source ../partials/config.tape | ||
|
||
Type "changelog find" | ||
Enter | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Require changelog | ||
Source ../config.tape | ||
|
||
Hide | ||
# Create new file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Require changelog | ||
Source ../partials/config.tape | ||
Require wget | ||
|
||
Set Width 2400 | ||
Set Width 1500 | ||
Set Height 800 | ||
|
||
Hide | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Source ../partials/config.tape | ||
|
||
Hide | ||
Type "cp ../examples/markdown.md ./CHANGELOG.md" | ||
Enter | ||
Sleep 250ms | ||
Show | ||
|
||
|
||
|
||
Hide | ||
Type "rm CHANGELOG.md" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The changes describe a contrived project to demonstrate the markdown output of `keepac` / `changelog`. | ||
|
||
## [Unreleased] | ||
|
||
### Changed | ||
|
||
- A **whole new** way of doing the thing | ||
|
||
## [1.1.0] - 2022-04-04 | ||
|
||
> This release is sponsored by [our GitHub sponsors](https://github.com/sponsors/NiclasvanEyk) ❤️ | ||
### Added | ||
|
||
- A new cool syntax highlighter: | ||
```rs | ||
// Inline code snippets! | ||
let foo = "bar" | ||
``` | ||
|
||
## [1.0.1] - 2022-02-03 | ||
|
||
### Fixed | ||
|
||
- A _nasty_ bug when calling `foo` without previously calling `bar` | ||
- A complicated deadlock which is better explained in [#123](https://github.com/NiclasvanEyk/keepac/pull/123) | ||
|
||
## [1.0.0] - 2022-02-02 | ||
|
||
### Added | ||
|
||
- The initial version of the thing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This tape just houses shared configuration and is included/sourced into all | ||
# other tapes | ||
|
||
Require changelog |