upscayl/main/commands.js

13 lines
418 B
JavaScript
Raw Normal View History

2022-08-22 14:01:16 +05:30
const commands = {
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-08-22 14:01:16 +05:30
};
module.exports = commands;