A Boop clone
Find a file
2026-09-07 22:57:44 +00:00
.forgejo/workflows Fixed npm dir 2026-05-25 20:20:36 +10:00
.idea Added some more commands and mades some quality of life improvements 2026-01-25 11:00:40 +11:00
build Updated assets 2026-05-04 20:45:09 +10:00
cmd/site Added download link 2026-02-02 21:32:47 +11:00
extra-assets Updated assets 2026-05-04 20:45:09 +10:00
frontend Added plugin reload 2026-09-07 22:57:44 +00:00
icon_asset Updated assets 2026-05-04 20:45:09 +10:00
.gitignore Added build files 2026-05-03 11:04:04 +10:00
app.go Added plugin reload 2026-09-07 22:57:44 +00:00
appctx.go Added some more commands and mades some quality of life improvements 2026-01-25 11:00:40 +11:00
go.mod Fixed caret position for append transforms 2026-05-04 22:00:12 +10:00
go.sum Added Lines:UCL for processing UCL commands 2026-03-15 10:17:23 +11:00
main.go Added plugin reload 2026-09-07 22:57:44 +00:00
models.go Add cmd-k to delete current line 2026-03-14 21:52:13 +11:00
package-lock.json Added dark mode and fixed the icon 2026-05-03 11:31:55 +10:00
package.json Added dark mode and fixed the icon 2026-05-03 11:31:55 +10:00
plugins.go Added plugin support for Dequoter 2026-09-07 01:09:21 +00:00
plugins_test.go Added plugin reload 2026-09-07 22:57:44 +00:00
README.md Added plugin reload 2026-09-07 22:57:44 +00:00
store.go Added a store 2026-01-26 09:31:14 +11:00
textfilters.go Added CSV to ASCII table 2026-08-07 05:10:16 +00:00
textfilters_test.go Added CSV to ASCII table 2026-08-07 05:10:16 +00:00
wails.json Updated the release 2026-05-02 11:35:45 +10:00

Dequoter

A simple Boop clone for Mac OS. Useful as a scratchpad for performing text manipulation.

Currently In Alpha: There are some glaring issues, such as text not being saved between invocations. This means that if you restart the app, you will loose your work. Treat this like an untitled TextEdit window, where all your chances will be lost when you close it.

Building

This project uses Wails to build a desktop application with a Go backend and a Vite frontend.

Plugins

Dequoter can be extended with new filters written in UCL. On startup, if the directory $HOME/.config/dequoter/plugins exists, every file ending in .ucl found in it (including subdirectories) is evaluated. Filters are defined with the d:filter builtin:

d:filter "String: To Upper Case" { |in|
  strs:to-upper $in
}

d:filter takes a label, which is what appears in the command palette (Cmd+P), and a proc. The proc is called with the text to process as its only argument. The result of the proc becomes the filter output: strings are used as-is, other values are converted to their string form, and a proc that returns nothing is reported as an error. Errors raised with error are shown in the status bar.

A plugin filter with the same label as a built-in filter replaces it in the palette. If two plugin files define the same label, the one loaded later wins (files are loaded in lexical path order). Files that fail to load are skipped and reported in the status bar; the remaining files are still loaded.

After editing plugin files, choose File → Reload Plugins (Shift+Cmd+R) to rescan the directory without restarting. This discards the previous plugin filters and UCL interpreter state before loading the files again.

Download

Download Release

License

Copyright 2026 Leon Mika

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.