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
10 changes: 10 additions & 0 deletions .sdignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Source/
*.go
Makefile
.git/
.github/
README*
*.ps1
*.bat
*.sh

Binary file removed DistributionTool
Binary file not shown.
Binary file removed DistributionTool.exe
Binary file not shown.
10 changes: 2 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ ifeq ($(OS),Windows_NT)
CP = powershell -Command Copy-Item -Recurse -Force
endif

# Replacing Distribute command for Windows PowerShell.
DISTRIBUTION_TOOL = ./DistributionTool.exe
ifeq ($(shell uname),Darwin)
DISTRIBUTION_TOOL = ./DistributionTool
endif


.DEFAULT_GOAL := build

test:
Expand All @@ -57,4 +50,5 @@ build: prepare
distribute: build
@$(RM) ./$(RELEASEDIR)/*
@$(MKDIR) $(RELEASEDIR)
$(DISTRIBUTION_TOOL) -b -i $(APPNAME) -o $(RELEASEDIR)
streamdeck pack $(APPNAME)
$(CP) $(APPNAME:.sdPlugin=.streamDeckPlugin) $(RELEASEDIR)
23 changes: 7 additions & 16 deletions Source/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"UUID": "dev.flowingspdg.advancedhttp",
"Actions": [
{
"Name": "HTTP REQUEST",
"States": [
{
"Image": "images/icon",
"TitleAlignment": "middle",
"FontSize": "24"
"FontSize": 24
}
],
"PropertyInspectorPath": "inspector/pi.html",
Expand All @@ -22,36 +23,26 @@
{
"Image": "images/icon",
"TitleAlignment": "middle",
"FontSize": "24"
"FontSize": 24
}
],
"Controllers": ["Encoder"],
"DisableAutomaticStates": false,
"Encoder": {
"background": "backgroundImage",
"Icon": "StackAndLayoutImage",
"layout": "layoutName",
"StackColor": "#AABBCC",
"TriggerDescription": {
"Rotate": "Perform HTTP Request with specific rotate direction.",
"Push": "Perform HTTP Request with push button"
}
},
"PropertyInspectorPath": "inspector/pi_dial.html",
"SupportedInMultiActions": false,
"Tooltip": "Tooltip",
"UUID": "dev.flowingspdg.advancedhttp.dial"
}
],
"SDKVersion": 2,
"SDKVersion": 3,
"Author": "Shugo Kawamura",
"CodePath": "http_client.exe",
"CodePathMac" :"http_client",
"Description": "Advanced HTTP Client",
"Name": "Advanced HTTP Client [FlowingSPDG]",
"Icon": "images/icon",
"URL": "https://github.com/streamdeck-advanced-http",
"Version": "0.3.1",
"URL": "https://github.com/FlowingSPDG/streamdeck-advanced-http",
"Version": "1.0.0",
"OS": [
{
"Platform": "mac",
Expand All @@ -63,7 +54,7 @@
}
],
"Software": {
"MinimumVersion" : "6.4"
"MinimumVersion" : "6.9"
},
"Category": "Advanced HTTP Client [FlowingSPDG]",
"CategoryIcon": "images/icon"
Expand Down