Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Get version from tag
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A modern Electron + Svelte application for organizing and browsing history resou

## Prerequisites

- Node.js (v14 or higher)
- Node.js (v20 or higher)
- npm or yarn package manager

## Installation
Expand Down
3 changes: 1 addition & 2 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const { app, BrowserWindow, shell, ipcMain, Menu } = require('electron');
const path = require('path');
const isDev = require('electron-is-dev');

// Set the application name
app.setName('Historian');
Expand Down Expand Up @@ -29,7 +28,7 @@ function createWindow() {
mainWindow.show();
});

// if (isDev) {
// if (!app.isPackaged) {
// mainWindow.webContents.openDevTools();
// }

Expand Down
Loading