Appearance
Developer Changelog
Detailed notes on changes to PopClip's extensions programming interface will be kept in this file.
The format is based on Keep a Changelog.
Beta (as at Build 4675)
Changed
- JavaScript extensions can access
localhost
and local network addresses (unqualified domains and.local
domains) usinghttp:
connections. Anhttps:
connection is still required to connect to fully qualified domains. - TypeScript sources are now transpiled with sucrase, instead of the full typescript library. This reduces the size of the PopClip application by nearly 1MB.
- When calling PopClip from the command line (to use the JavaScript test harness), it now prints usage information if missing or incorrect arguments are provided, instead of ignoring them.
Added
- Added
oauth-1.0a
to built-in NPM modules. - Added util.hmac() function for HMAC calculation (useful for extensions that need to use OAuth 1.0a).
- Added util.getRandomValues() and util.randomUuid().
- The popclip.openUrl() method:
- now has an
activate
option to control whether the target application is brought to the front. Default istrue
. - can now accept a URL object instead of a string. When a URL object is passed, the URL is serialized internally with
%20
instead of+
for spaces. This solves a mildly annoying pain-point for extensions that use URL objects to construct URLs.
- now has an
- The popclip.copyText() method now has a
notify
option to control whether the "Copied" indicator is shown when the text is copied. Default istrue
. - JavaScript API now has a global
TextEncoder
class which acts as a shim approximating the standard Web API class. This improves compatibility with some NPM modules.
PopClip 2024.5.2 (4615)
Changed
- The JavaScript test harness has been improved.
- Now loads a module from a file, and optionally invokes a named function in that module.
- Now supports TypeScript files.
- Improved the tool output format.
- Changed the command name from
runjs
torun
.
Added
- The
popclip.showText
method now takes an optionalstyle
option which can be eithercompact
orlarge
. The default style iscompact
, which is the same as the previous behavior. Thelarge
style is a new style that shows the text full-screen in a "large type" display.
PopClip 2024.5 (4578)
Added
- JavaScript extensions can now be debugged using the Safari Web Inspector. This lets you inspect and debug your code while it is running inside PopClip. The inspector can be accessed from Safari's Develop menu, which must be enabled with the "Show features for web developers" in Safari's Advanced settings.
- Added new
popclip.input.isUrl
property that indicates whether the input text is a single a web URL (as opposed to text containing one or more URLs). This is useful for extensions that have different actions depending on whether the input is a URL or not. - Added
popclip.share()
function to send text to other apps using macOS Sharing Extensions. I will soon update the official Notes, Messages and Reading List extension to use this feature.
Fixed
- Extension requirements keys
path
,url
,email
now properly propagate their matched text as the input to Service actions.
PopClip 2024.3 (4508)
Added
- The text string format can now be used for all kinds of icons, e.g.
square filled symbol:flame
. - Added
strike
modifier for icon strings, which overlays a strike-out effect. - Added
flip_x
,flip_y
,move_x
,move_y
,scale
androtate
modifiers for icon strings. - Emoji text icons now render in color.
- In the JavaScript environment,
popclip.input.regexResult
is an array containing the full result of the regex match, including any capture groups. Unlike previous PopClip versions, this array is now always available regardless of whether the regex was specified in the static config (as an ICU regex string) or in a module (as a JavaScript RegExp object). - Added option type
secret
for storing a string in the macOS Keychain instead of in the PopClip preferences file. This is useful for extensions that save sensitive data such as a password or API key.
Changed
- Config.json files are now parsed with a JSON parser instead of a YAML parser.
- All extensions must now have a static config defining at least
name
. An override name may also be specified in the dynamic (JS module) config. - If an extension defines an
identifier
, it must be in the static config. Defining an identifier in dynamic config is now a load error. - Extension identifiers now must begin and end with a letter or number. Separators (period, hypen or underscore) are allowed in the middle but not multiple in a row.
- Renamed
flip horizontal
andflip vertical
toflip x
andflip y
respectively. - Option labels are now optional. If omitted, the option
identifier
is used as the label. - Identifier prefix
app.popclip.
is now reserved for signed extensions only. - When an action specifies both a
regex
and aurl
,path
oremail
requirement, the requirement is now applied first, and then the regex is applied to the output of the requirement. - Unsigned extensions no longer purge all existing options upon installation. Instead, only options of type
secret
are purged, and only if an unsigned extension replaces a signed extension with the same identifier. - For Setapp edition only: the storage location for Extensions has changed from
~/Library/Application Support/com.pilotmoon.popclip-setapp/Extensions
to~/Library/Application Support/PopClip/Extensions
. - Updated all embedded NPM modules to latest versions.
Documentation
- Updated all documentation to reflect the changes in this release. In particular, the Icons page has been fully rewritten to reflect the new icon string features.
PopClip 2023.9 (4225)
Added
- TypeScript can now be used as the source language for JavaScript actions and module-based extensions. This is done by specifying a file with the
.ts
extension in thejavascript file
ormodule
field. For snippets, specifytypescript
in thelanguage
field. PopClip ships with a TypeScript type definitions file,This has now been removed as of v2024.5. Instead, use the @popclip/types NPM package. You can configure your dev envionment to reference this to aid in developing your own extensions.popclip.d.ts
, inside the app bundle.- URL actions can now specify an optional
alternate url
, invoked by holding Option (⌥). - URL actions now have an optional
clean query
flag to clean up newlines and whitespace in the text before inserting into the URL.
Changed
- Updated the versions of several of the built in NPM modules.
- Key Press actions no longer automatically wait 100ms between keypresses. Instead, use
wait <milliseconds>
to add a delay if needed. See Wait between keypresses. - The Unsigned Extension warning is now only shown for extensions with Shell Script actions, AppleScript actions, or JavaScript actions with entitlements.
- In URL actions, leading and trailing whitespace and newlines are now always trimmed before URL-encoding.
Documentation
- Amended documentation in various places to reflect the new TypeScript support.
- Added Using
require()
to the JavaScript environment documentation. - Added Abbreviated forms to the module-based extensions documentation.
Documentation Update, 2023-08-30
- The developer documentation moved from GitHub to https://www.popclip.app/dev/.
- The previous single README was split into multiple pages.
- All parts revised and updated; more examples added.
- Added brand new documentation for Module-based extensions.
PopClip 2023.7 (4151)
There were no changes to extension programming interface in this release.
PopClip 2022.12 (4069)
Added
- Extensions and snippets can now use icons from Iconify, which provides over 100,000 open source icons. Specify them like this:
iconify:ph:rainbow-bold
. - Snippets can now be added as a comment header to any text file, with the result that the entire file becomes installable as a JavaScript, Apple Script or shell script extension. (See Header Snippets in the main Readme.)
- PopClip will install an extension from a
.popcliptxt
file. This is basically a snippet in a text file. - Added
shell script
field for specifying a shell script as a literal string. This allows shell scripts to be put directly in snippets. - Added optional
stdin
field for shell scripts, to allow passing a value to the script via stdin. - Allows the AppleScript source to be specified as
applescript
string orapplescript file
when calling a named handler. - A
key combo
string can now specifynumpad
as a modifier, to denote pressing a key on the numeric keypad. - Added options for icon drawing including
flip horizontal
,flip vertical
andpreserve aspect
. - Added built-in core-js shim inside PopClip to allow modern JavaScript features on all target platforms.
Changed
- Increased maximum selectable snippet length from 1000 to 5000 characters.
- The
script interpreter
field has been renamed tointerpreter
. - Shell script files are no longer executed with
/bin/sh
by default. An interpreter must be explicitly specified. - The
preserve image color
field has been renamed topreserve color
. - The
parameters
field in theapplescript call
dictionary has been renamed toparams
. - Icons are now drawn in a square canvas with uniform height and width, unless the new
preserve aspect
flag is set. - PopClip now enforces that the extension identifier may contain only A-Z, a-z, 0-9, period (.), and hyphen (-).
- Updated the versions of several of the built in NPM modules.
- When an action combines both
requirements
andregex
, the requirements are now applied first, and then the regex is applied to the result.
Fixed
- The snippet detector now correctly recognizes snippets written in YAML flow syntax (i.e. with braces
{}
), as well as JSON syntax (since valid JSON is valid YAML). - Fixed never-ending spinner with some Shortcuts actions.
PopClip 2022.5 (3895)
Added
- Added the ability to execute pre-compiled AppleScript
.scpt
files, and to invoke handlers within them with parameters. - Key Press extensions can now take an array of key combos, to press a sequence of keys.
- Extended the key code string format to simplify specifying non-character keys, and raw key codes. For example:
command tab
. - Brought back the
restore pasteboard
field for actions. - Added a 'test harness' mode to PopClip, for testing your JavaScript code in the PopClip environment. Run as:
/Application/PopClip.app/Contents/MacOS/PopClip runjs <filename>
- Additions to the JavaScript programming environment:
- Added RTF processing features (via RichText class object).
- Added locale information to the
util
object. - Added a promise-based global function
sleep
(e.g.await sleep(1000)
). - Supports the new key combo string format in the
popclip.pressKey()
method. - Improvements to the XMLHttpRequest implementation, including adding
Blob
andArrayBuffer
support.
Changed
- For Key Press extensions, there is now a 100ms delay after each key press.
- Updated the versions of some of the bundled npm libraries for JavaScript extensions. (There should be no breaking changes.)
PopClip 2021.11 (3785)
Added
- PopClip will now load either JSON (
Config.json
) or YAML (Config.yaml
) as an alternative to an XML Property List (Config.plist
) for the extension config file. The same field names are used in each of the three formats, and they each define the same logical structure. The choice of format is just a matter of which you prefer. (I'm currently leaning towards YAML for the best readability.) - Field names for use in the Config files are now defined in a spaced lowercase form such as
applescript file
. However, PopClip will accept field names in all common forms including the original "spaced capitalized" form (e.g.AppleScript File
) and camel case (e.g.applescriptFile
). - The
URL
field for Search extensions will now accept***
in addition to{popclip text}
as the placeholder. - The text-based icon format has a new "magnifying glass" style, intended for search extensions.
- The text-base icon specification format has changed since 2021.10 (see README).
- The
Script Interpreter
can now be specified as a bare executable name (e.g.perl
), and PopClip will locate the tool in thePATH
of the user's default shell. - Added a new field called
AppleScript
, allowing AppleScripts to be specified as a verbatim text string in the config file (rather than as a separate file viaAppleScript File
). - Allow key combos to be specified as a text string, for example
command option T
. - Added an
emails
requirement to specify one or more email addresses. - Added
POPCLIP_EMAILS
andPOPCLIP_PATHS
fields. - Added Shortcut action type, to run a named Shortcut on macOS 12.0.
- Added JavaScript action type.
Changed
- Removed the
Extension ...
andOption ...
prefixes from field names (e.g.Extension Name
is now justName
). The old names will continue to work. - The extension's
Identifier
and/orName
are now optional. If either is omitted, popclip will generate one from the .popclipext package name. - An action's
Title
is now optional. If omitted, the action takes the extension's name as its title. - An action's
Icon
is now optional. If omitted, the action takes the extension's icon (if any) as its icon. - The
Actions
array is now optional. An extension with a single action may now be specified at the top level of the config file, without a separate action dictionary. - Renamed
Blocked Apps
toExcluded Apps
,Regular Expression
toRegex
,Pass HTML
toCapture HTML
,Required Software Version
toPopClip Version
, andRequired OS Version
toMacOS Version
. The old names will continue to work. - Renamed the requirements
httpurl
andhttpurls
tourl
andurls
. - When URLs without a scheme prefix are detected in text, PopClip now defaults to https instead of http.
- Changed the text icon specification format. (Docs todo.)
Note
My goal with these recent changes is to drastically lower the barrier of entry for users creating their own extensions. The changes mean that extensions can now be defined with fewer fields and less structure.
As the cherry on top of that, PopClip now has a new built in action for installing extensions from selected text. It activates when you select text starting with # popclip
followed by a YAML extension definition. The extension must be a URL, Service or Key Press extension. Here is an example:
yaml
# popclip extension to search Emojipedia
name: Emojipedia
icon: search filled E
url: https://emojipedia.org/search/?q=***
This means simple extensions can be shared simply by plain text in emails, on websites etc. Extensions shared this way don't also show an unsigned extension warning.
There is limit of 1000 characters for this. (If you are doing anything requiring more than that, you should probably be creating a packaged extension.)
PopClip 2021.10 (3543)
Added
- Executable shell scripts now have the user's
PATH
set in the script variables. - Brought back
Preserve Image Color
.
Changed
- The
App
specifier can now be set on individual actions as well as at the root level.
Deprecated
TheReverted - see later changes to this field.Script Interpreter
field is deprecated.
PopClip 2021.9 (3510)
Added
- PopClip now supports SVG image files as well as allowing you to specify an image as a SF Symbols identifier or to generate an icon from up to 3 letters of text.
- PopClip now provides an HTML and a Markdown version for all text selections, when
Pass HTML
is set. When the content is not HTML backed, the HTML and Markdown is generated from the selected RTF or plain text content. - Added
POPCLIP_MARKDOWN
field to contain the markdownified HTML. - Added
POPCLIP_ACTION_IDENTIFIER
field. This is passed to the action script allowing you to use the same script for multiple actions. - Added
POPCLIP_FULL_TEXT
field. This is always contains the full selected text in cases wherePOPCLIP_TEXT
only contains the part of text matched by regex or requirement. - Added
Option Value Labels
array so that the options list can show a display name different to option string value itself. - Added
Option Description
field to add more information in the UI about an option. - Shell scripts with the executable bit set can optionally specify their interpreter with a hashbang, instead of the
Script Interpreter
field.
Removed
- Removed the
html
requirement since all selections now come with HTML (as above). Removed theRestored in 2021.10.Preserve Image Color
option. PopClip now always converts the icon to monochrome.Removed theRestore Pasteboard
option. PopClip now always restores the pasteboard, unless using the*-result
keys.- Removed the
Long Running
option. All extensions are now assumed to be potentially long running.
Changed
- The
POPCLIP_HTML
field is now sanitized to remove CSS, potentially unsafe tags, and to fix invalid markup. The unsanitized HTML is still available in a new fieldPOPCLIP_RAW_HTML
. - Renamed the
Image File
andExtension Image File
fields toIcon
andExtension Icon
, respectively. (The old names will also still work but are no longer documented.) - Added
App
dictionary field to specify a single app (since it turns out we hardly ever need to specify more than one app). (Apps
array will still work but is no longer documented.) - The error checking when loading an extension is more robust, so errors such as incorrect field types will now be caught. And you'll get an more specific message about what the problem is.
One more thing... there is also a brand new extension format based on JavaScript. Documentation still "to-do", watch this space!