Skip to content

Releases: deadcoder0904/wip-desktop

Squash some bugs for beta tester 🙌

16 Aug 15:45

Choose a tag to compare

Better UX 😎

16 Aug 13:25

Choose a tag to compare

v1.9.0

Bump Up 👆

Change Light Theme ⚪

12 Aug 11:03

Choose a tag to compare

Make ⚪ Light Theme more awesome 😍

Change Titlebar background to original color #f9f9f9

12 Aug 07:38

Choose a tag to compare

v1.7.0

Change TitleBar to #f9f9f9 🎨

Add Prettier, ESLint, Pretty Quick & Husky 😎

12 Aug 04:37

Choose a tag to compare

v1.6.0

Add Prettier, ESLint, Pretty Quick & Husky 😎

LightBlue Titlebar

12 Aug 04:23

Choose a tag to compare

Change TitleBar color to LightBlue ✨

Change back Titlebar color

11 Aug 18:33

Choose a tag to compare

Now Auto Updater should work lol 🙈

Minimal Auto Update Functionality

11 Aug 18:19

Choose a tag to compare

Minimal Auto Update Functionality

autoUpdater.js

import { autoUpdater } from "electron-updater";
import log from "electron-log";

export class AppUpdater {
  constructor() {
    const log = require("electron-log");
    log.transports.file.level = "info";
    autoUpdater.logger = log;
    autoUpdater.checkForUpdatesAndNotify();
  }
}

main.js

import { AppUpdater } from "./AppUpdater";

app.on("ready", () => {
  mainWindow = createMainWindow(mainWindow);
  createMenu();
  new AppUpdater();
});

Background Color changed of TitleBar to test Auto Update functionality

11 Aug 15:54

Choose a tag to compare

Auto Updates released

11 Aug 15:23

Choose a tag to compare

Just need to check if Auto Updates really work 😂