Skip to content

Commit

Permalink
Fixes for menus, window resizing, icons, and drag reordering. Improve…
Browse files Browse the repository at this point in the history
…ments to quick tests and summaries.
  • Loading branch information
dacoaster committed Jan 24, 2023
1 parent 322d6cf commit 016ad3d
Show file tree
Hide file tree
Showing 31 changed files with 1,020 additions and 551 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {

rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"prettier/prettier": ["error", { endOfLine: "auto" }],
},

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yattie",
"version": "0.4.2",
"version": "0.4.3",
"private": true,
"main": "background.js",
"engines": {
Expand Down
4 changes: 3 additions & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ async function createWindow() {
if (process.env.WEBPACK_DEV_SERVER_URL) {
// Load the url of the dev server if in development mode
await win.loadURL(process.env.WEBPACK_DEV_SERVER_URL);
if (!process.env.IS_TEST) win.webContents.openDevTools();
if (isDevelopment){
win.webContents.openDevTools();
}
} else {
createProtocol("app");
// Load the index.html when not in development
Expand Down
2 changes: 1 addition & 1 deletion src/components/CheckTaskWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default {
if (this.type === "preseesion") {
return {
title: this.$tc("caption.required_checkbox", 1),
description: this.$t("message.select_presesion_task"),
description: this.$t("message.select_presession_task"),
};
} else {
return {
Expand Down
Loading

0 comments on commit 016ad3d

Please sign in to comment.