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
Shortcuts 3.0 support will not be worked on until iOS allows shortcuts to be imported from .shortcut files. Until then, it is not known if it ever will and development cannot be tested.
Major Changes in Shortcuts 3.0:
Some actions, such as the CombineText action have been moved to separate files that includes all their information such as Name and Parameters (Presumably an intent declaration file but I haven't found it yet). Add support for loading action data from these files
Commonly used actions such as if now have their own custom parameter types and show different things based on the type of arguments passed into them. ScPL will now need to keep track of variable types at all times and use aggrandizements to make sure they always have as: set as ScPL assumes they do. (iOS might track variable as: differently). ScPL will also need significantly more information about types and have argument classes like for if with lots of different enum values based on other values.
Shortcuts now uses a natural language format for actions. ScPL could support this format. For example: Set variable (name) to (value). This might not be possible because of conflicts or might be a bad idea because you would constantly need to look up documentation.
Things that need to be changed in ScPL:
Change inputarg (^) to set the WFInput parameter instead of setting the action above.
For example:
in 2.2 that makes Text "hi" SetVariable v:myvar
in 3.0 it should make Text "hi" -> mv:var SetVariable input=mv:var value=v:myvar
Default actions that accept WFInput but don't have an inputarg parameter to use the action above them.
For example:
In 2.2, Text "hi"; SetVariable v works
In 3.0, it must be Text "hi" -> mv:var; SetVariable mv:var v
So, if an action does not have its WFInput defined, set it to the action above it.
Remove WFExpandingParameter, what's the point of it
The text was updated successfully, but these errors were encountered:
pfgithub
changed the title
Things to change for scpl 3.0 support
Shortcuts 3.0
Jun 26, 2019
You can download the .shortcut file, upload it to icloud drive, then go on your phone and get the shareable icloud link. Although this only solves one problem and is cumbersome.
Shortcuts 3.0 support will not be worked on until iOS allows shortcuts to be imported from .shortcut files. Until then, it is not known if it ever will and development cannot be tested.
Major Changes in Shortcuts 3.0:
Things that need to be changed in ScPL:
The text was updated successfully, but these errors were encountered: