Mark
Mark
## Describe the bug var varA = "b" var varB = "${varA}" does not put the value "b" in varB ## To Reproduce Steps to reproduce the behavior: 1. create...
## Is your feature request related to a problem? Please describe. The output shortcuts plist have a WFWorkflowClientVersion=1050.24, current shortscuts in the wild, or those produced by AppStore Jellycuts have...
## Describe the bug import Shortcuts var a = "a" if(a != nil) { showResult(text: "eq") } should showResult "eq" like the AppStore Jellycuts does. It does not compile in...
## Describe the bug import Shortcuts // dictionary() >> aDict setValue(key: k, value: "val", dictionary: aDict) >> bDict // repeatEach(bDict) { quicklook(input: RepeatItem) valueFor(key: "k", dictionary: RepeatItem) >> zname showResult(text:...
## Describe the bug string assigned to variable leads to: Get Contents of URL failed because Shortcuts couldn't convert from Rich text to URL. Assignment of url to _cmsURL_, then...
## Describe the bug var json = { "title": "My First Post", "body": "0.9", "userId": 1 } generates a syntax error. This is different from AppStore Jellycuts ## To Reproduce...
## Describe the bug var num = 0.9 generates a syntax error. This is different from AppStore Jellycuts ## To Reproduce Steps to reproduce the behavior: 1. Paste the above...
## Describe the bug import Shortcuts dictionary(json: {}) generates a syntax error SYNTAX ERROR, line: 3, "ERROR (identifier content: (identifier_content)) (identifier content: (identifier_content)) (string_chars)" Check your syntax in the surrounding...
## Describe the bug the working Appstore Jellycuts code from routinehub.co blog https://blog.routinehub.co/creating-a-qr-code-generator-shortcut-with-jellycuts/ does not compile with Open-Jellycore jelly ## To Reproduce Steps to reproduce the behavior: 1. insert the...
## Describe the bug In the following code from https://blog.routinehub.co/how-to-encode-images-in-base64-using-jellycuts/ import Shortcuts selectPhoto(types: [Images], multiple: false) >> selectedImage encode(input: selectedImage) >> base64EncodedImage showResult(text: base64EncodedImage) _base64EncodedImage_ is not used as input...