2023-09-10 14:44:04 +05:30
|
|
|
const COMMAND = {
|
2022-08-22 14:01:16 +05:30
|
|
|
SELECT_FILE: "Select a File",
|
2022-08-29 19:11:59 +05:30
|
|
|
SELECT_FOLDER: "Select a Folder",
|
2022-08-22 14:01:16 +05:30
|
|
|
UPSCAYL: "Upscale the Image",
|
|
|
|
UPSCAYL_DONE: "Upscaling Done",
|
|
|
|
UPSCAYL_PROGRESS: "Send Progress from Main to Renderer",
|
2022-09-17 15:10:47 +05:30
|
|
|
DOUBLE_UPSCAYL: "Double Upscale the Image",
|
|
|
|
DOUBLE_UPSCAYL_DONE: "Double Upscaling Done",
|
|
|
|
DOUBLE_UPSCAYL_PROGRESS: "Send Double Upscayl Progress from Main to Renderer",
|
2022-09-18 13:38:55 +05:30
|
|
|
FOLDER_UPSCAYL: "Upscale a Folder",
|
|
|
|
FOLDER_UPSCAYL_DONE: "Folder upscaling successful",
|
|
|
|
FOLDER_UPSCAYL_PROGRESS:
|
|
|
|
"Send Folder Upscaling Progress from Main to Renderer",
|
2022-09-18 20:00:03 +05:30
|
|
|
OPEN_FOLDER: "Open Folder",
|
2022-11-25 12:24:30 +05:30
|
|
|
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 06:29:16 +05:30
|
|
|
FFMPEG_VIDEO_DONE: "Ran FFMpeg successfully",
|
|
|
|
FFMPEG_VIDEO_PROGRESS: "Running FFMpeg for frame extraction",
|
2023-04-09 11:18:53 +05:30
|
|
|
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 16:01:37 +05:30
|
|
|
LOG: "Log",
|
2023-04-28 23:51:42 +05:30
|
|
|
STOP: "Stop the current operation",
|
2023-08-14 16:25:30 +05:30
|
|
|
OS: "Get OS",
|
2023-09-09 15:43:16 +05:30
|
|
|
SCALING_AND_CONVERTING: "Adding some finishing touches",
|
|
|
|
UPSCAYL_ERROR: "Upscaling Error",
|
2022-08-22 14:01:16 +05:30
|
|
|
};
|
|
|
|
|
2023-09-10 14:44:04 +05:30
|
|
|
export default COMMAND;
|