-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from matyalatte/dev
v0.5.1 update
- Loading branch information
Showing
56 changed files
with
12,309 additions
and
443 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ | |
|
||
# built files | ||
*.exe | ||
*.new | ||
*.zip | ||
|
||
SimpleCommandRunner | ||
|
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
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
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
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,30 @@ | ||
# Renaming Buttons | ||
|
||
`button` is an optional key for path pickers. | ||
It'll rename the button of the picker. | ||
|
||
![Button](https://github.com/matyalatte/Simple-Command-Runner/assets/69258547/979d987b-842a-4a20-a2e1-4fde85836a3e) | ||
|
||
```json | ||
{ | ||
"gui": [ | ||
{ | ||
"label": "Button", | ||
"window_name": "Button sample", | ||
"command": "echo %-% %-%", | ||
"components": [ | ||
{ | ||
"type": "file", | ||
"label": "Some file", | ||
"button": "..." | ||
}, | ||
{ | ||
"type": "folder", | ||
"label": "Some folder", | ||
"button": "Open" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
``` |
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,21 @@ | ||
{ | ||
"gui": [ | ||
{ | ||
"label": "Button", | ||
"window_name": "Button sample", | ||
"command": "echo %-% %-%", | ||
"components": [ | ||
{ | ||
"type": "file", | ||
"label": "Some file", | ||
"button": "..." | ||
}, | ||
{ | ||
"type": "folder", | ||
"label": "Some folder", | ||
"button": "Open" | ||
} | ||
] | ||
} | ||
] | ||
} |
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
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,35 @@ | ||
# Placeholder | ||
|
||
`empty_message` is an optional key for path pickers and text boxes. | ||
It will show a message when the text box is empty. | ||
|
||
![Placeholder](https://github.com/matyalatte/Simple-Command-Runner/assets/69258547/7694fdec-c739-45b9-980c-64e2f81203d7) | ||
|
||
```json | ||
{ | ||
"gui": [ | ||
{ | ||
"label": "Placeholder", | ||
"window_name": "Placeholder sample", | ||
"command": "echo %-% %-% %-%", | ||
"components": [ | ||
{ | ||
"type": "file", | ||
"label": "Some file", | ||
"empty_message": "Drop a file here!" | ||
}, | ||
{ | ||
"type": "folder", | ||
"label": "Some folder", | ||
"empty_message": "Drop a folder here!" | ||
}, | ||
{ | ||
"type": "text", | ||
"label": "Some text", | ||
"empty_message": "Type here!" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
``` |
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,26 @@ | ||
{ | ||
"gui": [ | ||
{ | ||
"label": "Placeholder", | ||
"window_name": "Placeholder sample", | ||
"command": "echo %-% %-% %-%", | ||
"components": [ | ||
{ | ||
"type": "file", | ||
"label": "Some file", | ||
"empty_message": "Drop a file here!" | ||
}, | ||
{ | ||
"type": "folder", | ||
"label": "Some folder", | ||
"empty_message": "Drop a folder here!" | ||
}, | ||
{ | ||
"type": "text", | ||
"label": "Some text", | ||
"empty_message": "Type here!" | ||
} | ||
] | ||
} | ||
] | ||
} |
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
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
Oops, something went wrong.