You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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) >> userName
sendNotification(body: "Hello ${userName}", title: "Meet the Team!", sound: true)
In particular, it does not use value of userName. The notification merely says "Hello"
after compiling the code, signing the shortcut, and opening in Shortcuts, there is no vertical line connecting the actions
To Reproduce
Steps to reproduce the behavior:
paste the code above into oj_chat_2.jelly
run the command jelly oj_chat_2.jelly --export --out u_oj_chat_2.shortcut
run the command shortcuts sign --mode anyone --input u_oj_chat_2.shortcut --output oj_chat_2.shortcut
run the command open -a Shortcuts oj_chat_2.shortcut
click the "Add Shortcut" button
click to select the oj_chat_2 Shortcut in Shortcuts
click to open the selected shortcut
run the shortcut with play icon on top right of shortcut
Type in your name
click the "Done" button
click "Allow" button to allow notifications from shortcut
Observe the Notification does not have your name
Observe there is no vertical line between the two actions
Expected behavior
If one type "foo" at the name, the notification should say "Hello foo"
Information
Device: [macBook Pro, 14-inch, 2021]
OS: [Sonoma 14.5]
Jellycuts Version [??? jelly command does not provide version info (/opt/homebrew/bin/jelly)]
likely fix in chrysaora-achlyos@ea0675a
the attachmentsByRange key values were being miscalculated,
Need to solve some issues among forks before generating pull request
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) >> userName
sendNotification(body: "Hello ${userName}", title: "Meet the Team!", sound: true)
In particular, it does not use value of userName. The notification merely says "Hello"
after compiling the code, signing the shortcut, and opening in Shortcuts, there is no vertical line connecting the actions
To Reproduce
Steps to reproduce the behavior:
jelly oj_chat_2.jelly --export --out u_oj_chat_2.shortcut
shortcuts sign --mode anyone --input u_oj_chat_2.shortcut --output oj_chat_2.shortcut
open -a Shortcuts oj_chat_2.shortcut
Expected behavior
If one type "foo" at the name, the notification should say "Hello foo"
Information
Additional context
This may have the same cause as issue #24
The text was updated successfully, but these errors were encountered: