Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
5dafd84
Initital commit (?? lol wut)
rben01 Jul 5, 2022
efbdfcc
Coalesced clipboard and text updates into one use of useState
rben01 Jul 5, 2022
c7ae9aa
Organized esse actions into categories
rben01 Jul 7, 2022
36ab47f
Put reading the clipboard in a useEffect to avoid redundant re-renders
rben01 Jul 7, 2022
1d8981f
Updated icon
rben01 Jul 7, 2022
77f2ef4
Initial commit
rben01 Sep 13, 2022
3efc3eb
Refreshed site dropdown after adding new site
rben01 Sep 13, 2022
a79fae9
Implemented actually opening a search in a browser
rben01 Sep 13, 2022
c2b1dd4
Cleaned up code
rben01 Sep 14, 2022
5af6ea1
Fixed bug where ManageSavedSites wouldnt update when edits were made …
rben01 Sep 14, 2022
8c0240b
Implemented correct updating of default sites
rben01 Sep 14, 2022
c63e086
Added default list of saved sites when json file is missing
rben01 Sep 15, 2022
6d5aed2
Added deletion as top-level command in ManageSavedSites
rben01 Sep 15, 2022
62b78f6
Renamed some stuff, updated strings in package.json
rben01 Sep 15, 2022
0ae6fee
Added readme
rben01 Sep 15, 2022
150aaa4
Added site title to delete action title
rben01 Sep 15, 2022
2724ccc
Added icon and screenshots
rben01 Sep 15, 2022
4ed5108
Add 'extensions/any-website-search/' from commit '2724ccc8375be52d63e…
rben01 Sep 15, 2022
6bb8e99
Added ability to respect bangs in query by stripping them before pass…
rben01 Sep 19, 2022
c1629b8
Changed extension name in package-lock.json
rben01 Sep 19, 2022
fca3b03
Made key of first item in search suggestions stable to avoid filckeri…
rben01 Sep 19, 2022
8095132
Added "bang" setting to readme
rben01 Sep 20, 2022
dcfcbdb
Updated title of editing panel when editing vs. adding a site
rben01 Sep 20, 2022
c7461a5
Fixed bug where selected search suggestion wasn't used at all!
rben01 Sep 20, 2022
7b127c7
Added DuckDuckGo and "none" as search suggestions providers
rben01 Sep 20, 2022
d181536
Updated readme with new settings
rben01 Sep 20, 2022
0a2153d
Merge branch 'raycast:main' into main
rben01 Sep 20, 2022
d4ee04e
Merge branch 'main' of https://github.com/rben01/raycast-extensions
rben01 Sep 20, 2022
91c250f
Added markdown lint ignore directives to readme
rben01 Sep 21, 2022
57a2a3b
Minor improvements to readme
rben01 Sep 21, 2022
2158abd
Added error view for when Esse is not installed
rben01 Oct 14, 2022
7bd0724
Added screenshots
rben01 Oct 14, 2022
f09d2c5
Updated packages in package.json
rben01 Oct 14, 2022
44e6ad1
Add 'extensions/esse-actions/' from commit 'f09d2c5c60680c26df39ff66b…
rben01 Oct 14, 2022
511251a
Merge branch 'raycast:main' into main
rben01 Oct 14, 2022
33d91fe
Removed unused useNavigation
rben01 Oct 15, 2022
0bfdc14
Fixed in accordance with linters
rben01 Oct 15, 2022
36fbd3f
Update CHANGELOG.md
pernielsentikaer Oct 16, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions extensions/esse-actions/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_"
}
]
}
}
7 changes: 7 additions & 0 deletions extensions/esse-actions/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# misc
.DS_Store
5 changes: 5 additions & 0 deletions extensions/esse-actions/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"printWidth": 120,
"singleQuote": false,
"useTabs": true
}
14 changes: 14 additions & 0 deletions extensions/esse-actions/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [
"$eslint-compact"
],
"label": "npm: dev",
"detail": "ray develop"
}
]
}
3 changes: 3 additions & 0 deletions extensions/esse-actions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Esse Actions Changelog

## [Initial Version] - 2022-10-17
11 changes: 11 additions & 0 deletions extensions/esse-actions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Esse Actions

Use the [Esse](https://esse.ameba.co/) app to perform transformations on text.

When run, this extension reads the text on the clipboard, then presents a list of
Esse's actions for you to choose from. After choosing an action, the transformed text is
written back to the clipboard.

Note that you must install the standalone version from GitHub,
<https://github.com/amebalabs/Esse>, and not the Mac App Store version, as the Mac App
Store version does not include the `EsseCommandLine` executable due to sandboxing.
Binary file added extensions/esse-actions/assets/esse-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading