├── .eslintrc.json ├── .fossa.yml ├── .github ├── decrypt.cmd ├── decrypt.sh └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── deploy.yml │ └── testing.yml ├── .gitignore ├── .npmrc ├── .prettierrc ├── .vscode ├── launch.json ├── settings.json └── wksp.code-workspace ├── LICENSE ├── README.md ├── dev-app-update.yml ├── electron-builder.env.gpg ├── package.json ├── src ├── assets │ ├── audio │ │ └── drop.wav │ ├── css │ │ ├── codeflask.css │ │ ├── history.css │ │ ├── main.css │ │ ├── popover.css │ │ └── settings.css │ └── img │ │ ├── Drop Logo.png │ │ ├── color_wheel.png │ │ ├── css.png │ │ ├── css_new.png │ │ ├── cur.png │ │ ├── cur@16x16.png │ │ ├── cur@32x32.png │ │ ├── dotnet.png │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── icon@512x512.png │ │ ├── java.png │ │ ├── picker_icon.png │ │ ├── taskbar_icon.png │ │ └── thumbnail.png ├── main │ ├── app │ │ ├── AppController.js │ │ ├── ShortcutController.js │ │ └── TrayController.js │ ├── ipc │ │ ├── MessageHandler.js │ │ └── channel_types │ │ │ ├── Channel.js │ │ │ ├── FormatChannel.js │ │ │ ├── MouseChannel.js │ │ │ ├── PaletteChannel.js │ │ │ ├── PickerChannel.js │ │ │ ├── SettingChannel.js │ │ │ └── WindowChannel.js │ ├── main.js │ ├── resources │ │ ├── ColorFormats.js │ │ ├── Defaults.js │ │ ├── KeyAssignment.js │ │ ├── MouseCaptureHandler.js │ │ ├── Updater.js │ │ └── formats │ │ │ ├── css_hex.js │ │ │ ├── css_hsl.js │ │ │ ├── css_hsla.js │ │ │ ├── css_rgb.js │ │ │ ├── css_rgba.js │ │ │ ├── dotnet_argb.js │ │ │ ├── dotnet_rgb.js │ │ │ ├── java_rgb.js │ │ │ └── java_rgba.js │ └── windows │ │ ├── HistoryWindowController.js │ │ ├── PickerWindowController.js │ │ ├── PopoverWindowController.js │ │ ├── SettingsWindowController.js │ │ └── WindowManager.js ├── render │ ├── HistoryWindow │ │ ├── HistoryWindow.js │ │ └── Palette.js │ ├── PickerWindow │ │ └── PickerWindow.js │ ├── PopoverWindow │ │ └── PopoverWindow.js │ └── SettingsWindow │ │ ├── KeyFormatter.js │ │ └── SettingsWindow.js └── views │ ├── history.html │ ├── index.html │ ├── popover.html │ └── settings.html └── test └── spec.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.github/decrypt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.github/decrypt.cmd -------------------------------------------------------------------------------- /.github/decrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.github/decrypt.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.github/workflows/testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/* 3 | electron-builder.env 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/wksp.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/.vscode/wksp.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/README.md -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- 1 | owner: motorlatitude 2 | repo: Drop 3 | provider: github 4 | -------------------------------------------------------------------------------- /electron-builder.env.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/electron-builder.env.gpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/audio/drop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/audio/drop.wav -------------------------------------------------------------------------------- /src/assets/css/codeflask.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/css/codeflask.css -------------------------------------------------------------------------------- /src/assets/css/history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/css/history.css -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/css/popover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/css/popover.css -------------------------------------------------------------------------------- /src/assets/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/css/settings.css -------------------------------------------------------------------------------- /src/assets/img/Drop Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/Drop Logo.png -------------------------------------------------------------------------------- /src/assets/img/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/color_wheel.png -------------------------------------------------------------------------------- /src/assets/img/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/css.png -------------------------------------------------------------------------------- /src/assets/img/css_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/css_new.png -------------------------------------------------------------------------------- /src/assets/img/cur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/cur.png -------------------------------------------------------------------------------- /src/assets/img/cur@16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/cur@16x16.png -------------------------------------------------------------------------------- /src/assets/img/cur@32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/cur@32x32.png -------------------------------------------------------------------------------- /src/assets/img/dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/dotnet.png -------------------------------------------------------------------------------- /src/assets/img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/icon.ico -------------------------------------------------------------------------------- /src/assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/icon.png -------------------------------------------------------------------------------- /src/assets/img/icon@512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/icon@512x512.png -------------------------------------------------------------------------------- /src/assets/img/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/java.png -------------------------------------------------------------------------------- /src/assets/img/picker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/picker_icon.png -------------------------------------------------------------------------------- /src/assets/img/taskbar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/taskbar_icon.png -------------------------------------------------------------------------------- /src/assets/img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/assets/img/thumbnail.png -------------------------------------------------------------------------------- /src/main/app/AppController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/app/AppController.js -------------------------------------------------------------------------------- /src/main/app/ShortcutController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/app/ShortcutController.js -------------------------------------------------------------------------------- /src/main/app/TrayController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/app/TrayController.js -------------------------------------------------------------------------------- /src/main/ipc/MessageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/MessageHandler.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/Channel.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/FormatChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/FormatChannel.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/MouseChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/MouseChannel.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/PaletteChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/PaletteChannel.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/PickerChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/PickerChannel.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/SettingChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/SettingChannel.js -------------------------------------------------------------------------------- /src/main/ipc/channel_types/WindowChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/ipc/channel_types/WindowChannel.js -------------------------------------------------------------------------------- /src/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/main.js -------------------------------------------------------------------------------- /src/main/resources/ColorFormats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/ColorFormats.js -------------------------------------------------------------------------------- /src/main/resources/Defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/Defaults.js -------------------------------------------------------------------------------- /src/main/resources/KeyAssignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/KeyAssignment.js -------------------------------------------------------------------------------- /src/main/resources/MouseCaptureHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/MouseCaptureHandler.js -------------------------------------------------------------------------------- /src/main/resources/Updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/Updater.js -------------------------------------------------------------------------------- /src/main/resources/formats/css_hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/css_hex.js -------------------------------------------------------------------------------- /src/main/resources/formats/css_hsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/css_hsl.js -------------------------------------------------------------------------------- /src/main/resources/formats/css_hsla.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/css_hsla.js -------------------------------------------------------------------------------- /src/main/resources/formats/css_rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/css_rgb.js -------------------------------------------------------------------------------- /src/main/resources/formats/css_rgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/css_rgba.js -------------------------------------------------------------------------------- /src/main/resources/formats/dotnet_argb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/dotnet_argb.js -------------------------------------------------------------------------------- /src/main/resources/formats/dotnet_rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/dotnet_rgb.js -------------------------------------------------------------------------------- /src/main/resources/formats/java_rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/java_rgb.js -------------------------------------------------------------------------------- /src/main/resources/formats/java_rgba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/resources/formats/java_rgba.js -------------------------------------------------------------------------------- /src/main/windows/HistoryWindowController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/windows/HistoryWindowController.js -------------------------------------------------------------------------------- /src/main/windows/PickerWindowController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/windows/PickerWindowController.js -------------------------------------------------------------------------------- /src/main/windows/PopoverWindowController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/windows/PopoverWindowController.js -------------------------------------------------------------------------------- /src/main/windows/SettingsWindowController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/windows/SettingsWindowController.js -------------------------------------------------------------------------------- /src/main/windows/WindowManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/main/windows/WindowManager.js -------------------------------------------------------------------------------- /src/render/HistoryWindow/HistoryWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/render/HistoryWindow/HistoryWindow.js -------------------------------------------------------------------------------- /src/render/HistoryWindow/Palette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/render/HistoryWindow/Palette.js -------------------------------------------------------------------------------- /src/render/PickerWindow/PickerWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/render/PickerWindow/PickerWindow.js -------------------------------------------------------------------------------- /src/render/PopoverWindow/PopoverWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/render/PopoverWindow/PopoverWindow.js -------------------------------------------------------------------------------- /src/render/SettingsWindow/KeyFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/render/SettingsWindow/KeyFormatter.js -------------------------------------------------------------------------------- /src/render/SettingsWindow/SettingsWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/render/SettingsWindow/SettingsWindow.js -------------------------------------------------------------------------------- /src/views/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/views/history.html -------------------------------------------------------------------------------- /src/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/views/index.html -------------------------------------------------------------------------------- /src/views/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/views/popover.html -------------------------------------------------------------------------------- /src/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/src/views/settings.html -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motorlatitude/Drop/HEAD/test/spec.js --------------------------------------------------------------------------------