Skip to content

Commit

Permalink
Release 0.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Taitava committed Oct 12, 2021
1 parent 84b2c3a commit 27acba4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
Features that are in development, but are not released yet. Does not include stuff that requires longer planning - for those, see [Roadmap on GitHub](https://github.com/Taitava/obsidian-shellcommands/projects/1).

### To be Added
- Nothing at the moment.

## [0.6.0] - 2021-10-12

### Added
- [New shell command output channels (#68)](https://github.com/Taitava/obsidian-shellcommands/issues/68):
- Status bar: Good for showing short outputs in a permanent place.
- Current file, top: Puts the output at the very beginning of a file.
- Current file, bottom: Puts the output at the very end of a file.
- Clipboard: So that you can easily paste the output anywhere you like.

### To be Changed
### Changed
- [Settings: Scroll position is now remembered (#71)](https://github.com/Taitava/obsidian-shellcommands/issues/71)
- [`{{tags}}` does not include preceding hash (#) characters anymore (#62)](https://github.com/Taitava/obsidian-shellcommands/issues/62). This is a backwards incompatible change (although a small one), and normally these kinds of changes would not be released in a _minor_ version update. But this plugin is still in its 0.x era, so breaking changes are tolerated more than in stable releases. If you want to have your tags prefixed with a hash again, use something like `#{{tags:,#}}` instead of `{{tags:,}}`.
- [Internal: Support multiple parameters for variables (#43)](https://github.com/Taitava/obsidian-shellcommands/issues/43). In the future, allows developing new variables that takes multiple arguments, and/or optional arguments.
Expand Down Expand Up @@ -110,7 +114,8 @@ Features that are in development, but are not released yet. Does not include stu
## [0.0.0] - 2021-08-22
- Initial release.

[Unreleased]: https://github.com/Taitava/obsidian-shellcommands/compare/0.5.1...HEAD
[Unreleased]: https://github.com/Taitava/obsidian-shellcommands/compare/0.6.0...HEAD
[0.6.0]: https://github.com/Taitava/obsidian-shellcommands/compare/0.5.1...0.6.0
[0.5.1]: https://github.com/Taitava/obsidian-shellcommands/compare/0.5.0...0.5.1
[0.5.0]: https://github.com/Taitava/obsidian-shellcommands/compare/0.4.1...0.5.0
[0.4.1]: https://github.com/Taitava/obsidian-shellcommands/compare/0.4.0...0.4.1
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Here is a list of operating systems this plugin has been tested on, along with O

| Shell commands version | Windows 10 | Linux (Xubuntu 20.04) | Mac |
| -----------------------| ---------- | --------------------- | --- |
| SC 0.6.0 | Obsidian 0.12.15<br>Works | Obsidian 0.12.15<br>Works | |
| SC 0.5.1 | Obsidian 0.12.15<br>Works | Obsidian 0.12.15<br>Works | |
| SC 0.5.0 | Obsidian 0.12.15<br>Works | Obsidian 0.12.15<br>Works | macOS: 11.1 <br>Obsidian: 0.12.15<br>Works, tested by [FelipeRearden](https://github.com/FelipeRearden), thank you! 🙂 |
| SC 0.4.1 | Obsidian 0.12.15<br>Works | Obsidian 0.12.15<br>Works | macOS: 11.1 <br>Obsidian: 0.12.15<br>Works, tested by [FelipeRearden](https://github.com/FelipeRearden), thank you! 🙂 |
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-shellcommands",
"name": "Shell commands",
"version": "0.5.1",
"version": "0.6.0",
"minAppVersion": "0.12.12",
"description": "You can predefine system commands that you want to run frequently, and assign hotkeys for them. For example open external applications.",
"author": "Jarkko Linnanvirta",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-shellcommands",
"version": "0.5.1",
"version": "0.6.0",
"description": "You can predefine system commands that you want to run frequently, and assign hotkeys for them. For example open external applications.://obsidian.md)",
"main": "main.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"0.6.0": "0.12.12",
"0.5.1": "0.12.12",
"0.5.0": "0.12.12",
"0.4.1": "0.12.12",
Expand Down

0 comments on commit 27acba4

Please sign in to comment.