Skip to content

Commit

Permalink
Fix #47
Browse files Browse the repository at this point in the history
  • Loading branch information
pierr3 committed Jun 6, 2024
1 parent 7a6d6a6 commit 21b2e2f
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 132 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,12 @@ dist/
.sentryclirc

.sign-env.sh

# Sentry Config File
.env.sentry-build-plugin

# Sentry Config File
.sentryclirc

# Sentry Config File
.sentryclirc
2 changes: 1 addition & 1 deletion backend/include/Shared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

#define API_SERVER_PORT 49080

constexpr semver::version VERSION = semver::version { 1, 1, 0, semver::prerelease::beta, 9 };
constexpr semver::version VERSION = semver::version { 1, 1, 0, semver::prerelease::beta, 10 };
// NOLINTNEXTLINE
const std::string CLIENT_NAME = std::string("TrackAudio-") + VERSION.to_string();

Expand Down
10 changes: 2 additions & 8 deletions electron-builder-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ module.exports = {
'!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}',
'!backend/*'
],
asarUnpack: [
'resources/**'
],
asarUnpack: ['resources/**'],
win: {
executableName: 'trackaudio',
extraFiles: [
Expand All @@ -43,11 +41,7 @@ module.exports = {
artifactName: '${name}-${version}-${arch}.${ext}'
},
linux: {
target: [
'AppImage',
'snap',
'deb'
],
target: ['AppImage', 'snap', 'deb'],
maintainer: 'pierr3',
category: 'Game'
},
Expand Down
Loading

0 comments on commit 21b2e2f

Please sign in to comment.