1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 03:18:28 +02:00
upscayl/electron/commands.ts

27 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-08-22 10:31:16 +02:00
const commands = {
SELECT_FILE: "Select a File",
2022-08-29 15:41:59 +02:00
SELECT_FOLDER: "Select a Folder",
2022-08-22 10:31:16 +02:00
UPSCAYL: "Upscale the Image",
UPSCAYL_DONE: "Upscaling Done",
UPSCAYL_PROGRESS: "Send Progress from Main to Renderer",
2022-09-17 11:40:47 +02:00
DOUBLE_UPSCAYL: "Double Upscale the Image",
DOUBLE_UPSCAYL_DONE: "Double Upscaling Done",
DOUBLE_UPSCAYL_PROGRESS: "Send Double Upscayl Progress from Main to Renderer",
FOLDER_UPSCAYL: "Upscale a Folder",
FOLDER_UPSCAYL_DONE: "Folder upscaling successful",
FOLDER_UPSCAYL_PROGRESS:
"Send Folder Upscaling Progress from Main to Renderer",
OPEN_FOLDER: "Open Folder",
2022-11-25 07:54:30 +01:00
UPSCAYL_VIDEO: "Upscale the Video",
UPSCAYL_VIDEO_DONE: "Video Upscaling Done",
UPSCAYL_VIDEO_PROGRESS: "Send Video Upscale Progress from Main to Renderer",
2022-12-04 01:59:16 +01:00
FFMPEG_VIDEO_DONE: "Ran FFMpeg successfully",
FFMPEG_VIDEO_PROGRESS: "Running FFMpeg for frame extraction",
2023-04-09 07:48:53 +02:00
SELECT_CUSTOM_MODEL_FOLDER: "Select a Custom Model Folder",
GET_MODELS_LIST: "Send models list from main to renderer",
CUSTOM_MODEL_FILES_LIST: "Send custom model files list to renderer",
2023-04-14 12:31:37 +02:00
LOG: "Log",
2022-08-22 10:31:16 +02:00
};
2022-11-11 21:39:28 +01:00
export default commands;