feat: add option to copy image data to clipboard instead of URL#146
Open
TerrifiedBug wants to merge 1 commit intoitoolio:devfrom
Open
feat: add option to copy image data to clipboard instead of URL#146TerrifiedBug wants to merge 1 commit intoitoolio:devfrom
TerrifiedBug wants to merge 1 commit intoitoolio:devfrom
Conversation
Add a new `copyImageToClipboard` setting that allows users to have actual image data on the clipboard after a screenshot, rather than a file URL or upload URL. This enables pasting screenshots directly into apps like Slack, Discord, and Notes. When enabled, image captures write NSImage data to the pasteboard and upload handlers skip overwriting the clipboard with the URL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
copyImageToClipboardsetting (off by default) that puts actual image data on the clipboard after a screenshot, instead of a file URL or upload URL. This way you can paste screenshots directly into Slack, Discord, Notes, etc. as inline images.When enabled, upload handlers (Imgur/Custom) skip overwriting the clipboard with the URL so the image data is preserved.
Changes:
Constants.swift— newcopyImageToClipboardDefaults keySettingsMenuView.swift— toggle in General SettingsImageCapture.swift— writeNSImagedata to pasteboard when enabledImgur.swift/Custom.swift— skip clipboard overwrite when enabledVideos/recordings are unaffected by this setting.