Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shivase committed Nov 26, 2022
0 parents commit e412d4b
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Archive
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/zip-release@main
with:
type: 'zip'
filename: 'Monokakido.popclipextz'
exclusions: 'image.gif README.md'
- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "Monokakido.popclipextz"
token: ${{ secrets.GITHUB_TOKEN }}
38 changes: 38 additions & 0 deletions Monokakido.popclipext/Config.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Actions</key>
<array>
<dict>
<key>icon</key>
<string>circle 物</string>
<key>Shell Script File</key>
<string>monokakido.sh</string>
<key>Title</key>
<string>物書堂</string>
</dict>
</array>
<key>Apps</key>
<array>
<dict>
<key>Bundle Identifiers</key>
<array>
<string>jp.monokakido.Dictionaries</string>
</array>
<key>Check Installed</key>
<true/>
<key>Link</key>
<string>https://monokakido.jp</string>
<key>Name</key>
<string>物書堂</string>
</dict>
</array>
<key>Extension Description</key>
<string>Dictionary lookup using Monokakido.</string>
<key>Extension Identifier</key>
<string>com.github.sihvase.popclip.extension.monokakido</string>
<key>Extension Name</key>
<string>物書堂</string>
</dict>
</plist>
1 change: 1 addition & 0 deletions Monokakido.popclipext/monokakido.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
open "mkdictionaries://?text=$POPCLIP_URLENCODED_TEXT"
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
物書堂 PopClip Extension
====

PopClipの物書堂Extensionです

![image](./image.gif)

Binary file added image.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e412d4b

Please sign in to comment.