Skip to content

Commit

Permalink
chore: add version to the msi installer
Browse files Browse the repository at this point in the history
chore: change version to prerelease

chore: proper semver

chore: what went wrong?

chore: bump version

chore: try squirrel instead of wix

chore: back to wix.

chore: move to version 0.0.8
  • Loading branch information
howech committed Oct 31, 2024
1 parent 29c480a commit bcaa6a0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- "chore-*"

permissions:
contents: write
Expand Down
5 changes: 4 additions & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
require("dotenv").config();
const pkg = require("./package.json")

const { FusesPlugin } = require("@electron-forge/plugin-fuses");
const { FuseV1Options, FuseVersion } = require("@electron/fuses");
Expand Down Expand Up @@ -32,9 +33,11 @@ module.exports = {
name: "@electron-forge/maker-wix",
config: {
name: "GPGBridge",
language: 1033,
manufacturer: "Unchained",
exe: "GPGBridge.exe",
//exe: "GPGBridge.exe",
icon: "./icons/win/icon.ico",
version: pkg.version,
},
},
{
Expand Down
1 change: 1 addition & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const { app, BrowserWindow, Tray, Menu } = require("electron");
if (require('electron-squirrel-startup')) app.quit();
const path = require("path");
const WebSocket = require("ws");
const { execFile, spawn } = require("child_process");
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": "gpg-bridge",
"version": "0.0.7",
"version": "0.0.8",
"description": "A very basic bridge to gpg over websockets",
"license": "MIT",
"main": "main.js",
Expand Down

0 comments on commit bcaa6a0

Please sign in to comment.