Skip to content

Commit

Permalink
Merge pull request #8 from dacoaster/fixes-and-improvements
Browse files Browse the repository at this point in the history
Fixes for menus, window resizing, icons, and drag reordering.  Improv…
  • Loading branch information
dacoaster authored Jan 24, 2023
2 parents 322d6cf + 016ad3d commit e0cb170
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 e0cb170

Please sign in to comment.