Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 38 additions & 29 deletions Sources/manifest.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,40 @@
{
"Actions": [
{
"Icon": "images/api_action",
"Name": "API Request",
"States": [
{ "Image": "images/api_key" }
],
"Tooltip": "Make an API Request",
"UUID": "com.github.mjbnz.sd-api-request"
}
],
"SDKVersion": 2,
"Author": "mjbnz",
"CodePath": "index.html",
"PropertyInspectorPath": "propertyinspector/index.html",
"Description": "REST Easily",
"Name": "API Request",
"Icon": "images/api_action",
"Category": "API Request",
"CategoryIcon": "images/api_action",
"URL": "https://github.com/mjbnz/sd-api-request/",
"Version": "0.2",
"OS": [
{ "Platform": "mac", "MinimumVersion": "10.11" },
{ "Platform": "windows", "MinimumVersion": "10" }
],
"Software": {
"MinimumVersion": "4.1"
}
"Actions": [
{
"Icon": "images/api_action",
"Name": "API Request",
"States": [
{
"Image": "images/api_key"
}
],
"Tooltip": "Make an API Request",
"UUID": "com.github.mjbnz.sd-api-request"
}
],
"SDKVersion": 2,
"Author": "mjbnz",
"CodePath": "index.html",
"PropertyInspectorPath": "propertyinspector/index.html",
"Description": "REST Easily",
"Name": "API Request",
"Icon": "images/api_action",
"Category": "API Request",
"CategoryIcon": "images/api_action",
"URL": "https://github.com/mjbnz/sd-api-request/",
"Version": "0.2.0.0",
"OS": [
{
"Platform": "mac",
"MinimumVersion": "10.11"
},
{
"Platform": "windows",
"MinimumVersion": "10"
}
],
"Software": {
"MinimumVersion": "6.8"
},
"UUID": "com.github.mjbnz.sd-api-request"
}
4 changes: 2 additions & 2 deletions Sources/propertyinspector/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@
<div class="sdpi-item">
<div class="sdpi-item-label">..matched</div>
<div class="sdpi-item-group file" id="matchedfilepickergroup">
<input class="sdpi-item-value" type="file" id="image_matched" accept=".jpg, .jpeg, .png, .ico, .gif, .bmp, .tiff">
<input class="sdpi-item-value" type="file" id="image_matched" accept=".jpg, .jpeg, .png, .ico, .gif, .bmp, .tiff, .svg">
<label class="sdpi-file-info " for="image_matched">No file...</label>
<label class="sdpi-file-label" for="image_matched">Choose file...</label>
</div>
</div>
<div class="sdpi-item">
<div class="sdpi-item-label">..unmatched</div>
<div class="sdpi-item-group file" id="unmatchedfilepickergroup">
<input class="sdpi-item-value" type="file" id="image_unmatched" accept=".jpg, .jpeg, .png, .ico, .gif, .bmp, .tiff">
<input class="sdpi-item-value" type="file" id="image_unmatched" accept=".jpg, .jpeg, .png, .ico, .gif, .bmp, .tiff, .svg">
<label class="sdpi-file-info " for="image_unmatched">No file...</label>
<label class="sdpi-file-label" for="image_unmatched">Choose file...</label>
</div>
Expand Down