Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesomannen committed Oct 2, 2024
1 parent 49008ff commit d861039
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 103 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.8.8 (2024-10-02)

### Fixed

- Uninstalling and toggling mods not affecting the files
- Open directory mod context menu option

## 0.8.7 (2024-10-02)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gale",
"version": "0.8.7",
"version": "0.8.8",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down Expand Up @@ -52,4 +52,4 @@
"rehype-raw": "^7.0.0",
"svelte-exmarkdown": "^3.0.5"
}
}
}
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gale"
version = "0.8.7"
version = "0.8.8"
description = "A lightweight mod manager for Thunderstore"
authors = ["Kesomannen"]
license = "GPL-3.0"
Expand Down
196 changes: 97 additions & 99 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,100 +1,98 @@
{
"productName": "Gale",
"version": "0.8.7",
"identifier": "com.kesomannen.gale",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"frontendDist": "../build",
"devUrl": "http://localhost:5173"
},
"bundle": {
"active": true,
"category": "Game",
"copyright": "",
"targets": "all",
"externalBin": [],
"createUpdaterArtifacts": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
},
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"linux": {
"deb": {
"depends": []
}
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDNDRkNCMzE4NDIyOTQ1QjQKUldTMFJTbENHTFA4UE9Fd1RocjRDRm9uVmdiUlUxdmw1ZEwvaXRJZW45VFVSeXozUkYxaUFmZEsK",
"endpoints": [
"https://gist.githubusercontent.com/Kesomannen/58b4f08009e7b7b5baaea253ebccb94d/raw/"
]
},
"deep-link": {
"desktop": {
"schemes": [
"ror2mm"
]
},
"mobile": []
},
"cli": {
"description": "",
"args": [
{
"name": "game",
"short": "g",
"takesValue": true
},
{
"name": "profile",
"short": "p",
"takesValue": true
},
{
"name": "launch",
"short": "l"
}
]
}
},
"app": {
"windows": [
{
"decorations": false,
"fullscreen": false,
"transparent": true,
"resizable": true,
"title": "Gale",
"width": 1000,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"dragDropEnabled": false
}
],
"security": {
"csp": null
}
}
}
"productName": "Gale",
"version": "0.8.8",
"identifier": "com.kesomannen.gale",
"build": {
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev",
"frontendDist": "../build",
"devUrl": "http://localhost:5173"
},
"bundle": {
"active": true,
"category": "Game",
"copyright": "",
"targets": "all",
"externalBin": [],
"createUpdaterArtifacts": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
},
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"linux": {
"deb": {
"depends": []
}
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDNDRkNCMzE4NDIyOTQ1QjQKUldTMFJTbENHTFA4UE9Fd1RocjRDRm9uVmdiUlUxdmw1ZEwvaXRJZW45VFVSeXozUkYxaUFmZEsK",
"endpoints": [
"https://gist.githubusercontent.com/Kesomannen/58b4f08009e7b7b5baaea253ebccb94d/raw/"
]
},
"deep-link": {
"desktop": {
"schemes": ["ror2mm"]
},
"mobile": []
},
"cli": {
"description": "",
"args": [
{
"name": "game",
"short": "g",
"takesValue": true
},
{
"name": "profile",
"short": "p",
"takesValue": true
},
{
"name": "launch",
"short": "l"
}
]
}
},
"app": {
"windows": [
{
"decorations": false,
"fullscreen": false,
"transparent": true,
"resizable": true,
"title": "Gale",
"width": 1000,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"dragDropEnabled": false
}
],
"security": {
"csp": null
}
}
}

0 comments on commit d861039

Please sign in to comment.