Skip to content

Commit

Permalink
create 0.8.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jwyman328 committed Sep 22, 2024
1 parent 2d00a6b commit f05c7d6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.8.0
- Linux builds and small dynamic style improvements
- logout dropdown button

# 0.7.0
- Add consolidation mode.

Expand Down
2 changes: 1 addition & 1 deletion backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[metadata]
name = local_family_wallet
version = 0.7.0
version = 0.8.0

[options]
packages = src
Expand Down
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name":"livewallet",
"name": "livewallet",
"description": "An application to understand the health of your Bitcoin wallet.",
"keywords": [
"utxo",
Expand Down Expand Up @@ -30,6 +30,7 @@
"build:renderer": "cross-env NODE_ENV=production TS_NODE_TRANSPILE_ONLY=true webpack --config ./.erb/configs/webpack.config.renderer.prod.ts",
"postinstall": "ts-node .erb/scripts/check-native-dep.js && electron-builder install-app-deps && npm run build:dll",
"lint": "cross-env NODE_ENV=development eslint . --ext .js,.jsx,.ts,.tsx",
"package": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never && npm run build:dll",
"package:mac": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --mac && npm run build:dll",
"package:linux": "ts-node ./.erb/scripts/clean.js dist && npm run build && electron-builder build --publish never --linux && npm run build:dll",
"rebuild": "electron-rebuild --parallel --types prod,dev,optional --module-dir release/app",
Expand Down Expand Up @@ -236,11 +237,17 @@
"target": [
{
"target": "deb",
"arch": ["x64", "arm64"]
"arch": [
"x64",
"arm64"
]
},
{
"target": "AppImage",
"arch": ["x64", "arm64"]
"arch": [
"x64",
"arm64"
]
}
],
"icon": "resources/assets/icons",
Expand Down
4 changes: 2 additions & 2 deletions release/app/package-lock.json

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

2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LiveWallet",
"version": "0.7.0",
"version": "0.8.0",
"description": "An application to understand the health of your Bitcoin wallet.",
"license": "MIT",
"author": {
Expand Down

0 comments on commit f05c7d6

Please sign in to comment.