Open-Jellycore icon indicating copy to clipboard operation
Open-Jellycore copied to clipboard

A compiler for the Jelly language that allows you to create Apple Shortcuts using Jelly!

Results 23 Open-Jellycore issues
Sort by recently updated
recently updated
newest added

## Describe the bug CONTRIBUTING.md has many URLs with refereces to Legacy "ActuallyTaylor" repo instead of "OpenJelly". Likelly want to change for consistency of branding ## To Reproduce search for...

bug

The following code: ``` import Shortcuts #Color: orange, #Icon: alertTriangle var Url = "" if (Url == nil) { alert("NIL") } ``` compiles fine in jellycuts. In jellycore it spits...

There should be an automatic signing flag for the Jellycuts CLI. Most likely should just be the flag `--sign`. This will trigger the Shortcuts CLI to sign the output file.

enhancement
good first issue

The following Jelly code results in a compilation error that complains about the missing a parameter named `PLACEHOLDER`. ``` import Shortcuts #Color: green, #Icon: shortcuts //This is a test dictionary(json:{"gumdrop":"blue","apple":"red"})...

bug
needs-fix

## Describe the bug The following code does not behave as in AppStore Jellycuts import Shortcuts askForInput(prompt: "What is your name?", type: Text, default: "", allowDecimal: false, allowNegative: false) >>...

bug

## 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...

bug

## 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...

enhancement

## 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...

bug

## 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:...

bug

## 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...

bug