Skip to content

Commit 44551f7

Browse files
committed
Support URL Scheme
1 parent cf77616 commit 44551f7

File tree

10 files changed

+75
-15
lines changed

10 files changed

+75
-15
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
11
## EuDic tools for Mac
22

3-
[Download](https://github.com/cdpath/EuDic_tools/releases)
43

5-
### Alfred workflow for EuDic
4+
### Note
5+
[eudic_tools wiki](https://github.com/cdpath/eudic_tools/wiki)
66

7-
1\. Add Eudict to Alfred fallback results
87

9-
![setup fallback results](./imgs/setup_fallback_results.png)
8+
### Download
9+
[releases](https://github.com/cdpath/EuDic_tools/releases)
1010

11-
2\. I have to use the following code to make sure Eudict is opened. It may be a bug.
12-
13-
```AppleScript
14-
do shell script "open -b com.eusoft.eudic"
15-
delay 0.1
16-
do shell script "open -b com.eusoft.eudic"
17-
```
18-
19-
### PopClip Extension for EuDic
20-
21-
![install extension](./imgs/install_popclip_extension.png)
2211

2312
## Reference
2413

2514
- [PopClip-Extensions/Eudic.applescript](https://github.com/pilotmoon/PopClip-Extensions/blob/43c4baac8692feb6ce596483d79bcce0b20cfbad/source/Eudic_Free/Eudic.applescript)
2615
- [superkam/Alfred2_EuDic_Search](https://github.com/superkam/Alfred2_EuDic_Search)
2716
- [Can application id be set by a variable?](http://macscripter.net/viewtopic.php?id=40827)
17+
- [Launch Scripts from Webpage Links](https://www.macosxautomation.com/applescript/linktrigger/)
18+
-92.1 KB
Binary file not shown.
-299 KB
Binary file not shown.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleAllowMixedLocalizations</key>
6+
<true/>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleExecutable</key>
10+
<string>applet</string>
11+
<key>CFBundleIconFile</key>
12+
<string>applet</string>
13+
<key>CFBundleIdentifier</key>
14+
<string>com.apple.ScriptEditor.id.eudic</string>
15+
<key>CFBundleInfoDictionaryVersion</key>
16+
<string>6.0</string>
17+
<key>CFBundleName</key>
18+
<string>eudic</string>
19+
<key>CFBundlePackageType</key>
20+
<string>APPL</string>
21+
<key>CFBundleShortVersionString</key>
22+
<string>1.0</string>
23+
<key>CFBundleSignature</key>
24+
<string>aplt</string>
25+
<key>CFBundleURLTypes</key>
26+
<array>
27+
<dict>
28+
<key>CFBundleURLName</key>
29+
<string>eudic_helper</string>
30+
<key>CFBundleURLSchemes</key>
31+
<array>
32+
<string>eudic</string>
33+
</array>
34+
</dict>
35+
</array>
36+
<key>LSMinimumSystemVersionByArchitecture</key>
37+
<dict>
38+
<key>x86_64</key>
39+
<string>10.6</string>
40+
</dict>
41+
<key>LSRequiresCarbon</key>
42+
<true/>
43+
<key>WindowState</key>
44+
<dict>
45+
<key>bundleDividerCollapsed</key>
46+
<true/>
47+
<key>bundlePositionOfDivider</key>
48+
<real>0.0</real>
49+
<key>dividerCollapsed</key>
50+
<false/>
51+
<key>eventLogLevel</key>
52+
<integer>2</integer>
53+
<key>name</key>
54+
<string>ScriptWindowState</string>
55+
<key>positionOfDivider</key>
56+
<real>289</real>
57+
<key>savedFrame</key>
58+
<string>520 62 700 672 0 0 1440 900 </string>
59+
<key>selectedTab</key>
60+
<string>result</string>
61+
</dict>
62+
</dict>
63+
</plist>
24.4 KB
Binary file not shown.

β€Žsources/eudic_helper/PkgInfoβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
APPLaplt
1.63 KB
Binary file not shown.
70.2 KB
Binary file not shown.
362 Bytes
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400
2+
{\fonttbl}
3+
{\colortbl;\red255\green255\blue255;}
4+
{\*\expandedcolortbl;;}
5+
}

0 commit comments

Comments
Β (0)