-
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Broken after update to MacOS Sonoma (14.0) #16
Comments
Sonoma comes with a newer version of the
If you double-click the script filter node of the workflow, you can see the call in the first line. Just change @dennis-tra To support both versions, you may want to replace the call with something like this to the node and cut a new release. I'd open a PR, but the
|
@muffix This workaround works perfectly, thank you! |
Thanks to all of you! I just updated the workflow and cut a new release bundling all the latest additions 👍 https://github.com/dennis-tra/alfred-dict.cc-workflow/releases/tag/v2.1.0 Let me know if you encounter anything else |
I've just tested the new release and can confirm that it fixes the issue. |
Hi @dahei could you try in both of your installations to replace the "Script Filter" with the following snippet and run it? EXIT_CODE=0
QUERY=$(iconv -f utf-8 <<<'{query}' || EXIT_CODE=$?) # this command can fail
if [ $EXIT_CODE -ne 0 ]; then
QUERY=$(iconv -f UTF8-MAC <<<'{query}')
fi
# Check for Apple Silicon
if [[ $(uname -m) == 'arm64' ]]; then
./dictcc_arm64 "$QUERY"
else
./dictcc_amd64 "$QUERY"
fi Just double click on the script filter here: I'd cut a patch release if this fixes your issue 👍 |
I have the same issue and the workaround is not working. Have Sonoma 14.2.1 (23C71) installed |
The workflow seems to be broken after the update to the latest MacOS version 14.0.
No error is shown, yet the translation is not displayed:
The text was updated successfully, but these errors were encountered: