Skip to content

Commit

Permalink
Merge pull request #3 from GalaxyPay/dev
Browse files Browse the repository at this point in the history
chore: release v1.0.2
  • Loading branch information
acfunk authored Oct 21, 2024
2 parents caa8eb7 + d697388 commit 95a1269
Show file tree
Hide file tree
Showing 10 changed files with 121 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
tag: v1.0.1
tag: v1.0.2
artifacts: "Output\\AvmWinNode_Setup.exe"
3 changes: 2 additions & 1 deletion AvmWinNode.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "AvmWinNode"
#define MyAppVersion "1.0.1"
#define MyAppVersion "1.0.2"
#define MyAppPublisher "Galaxy Pay, LLC"
#define MyAppPublisherURL "https://galaxy-pay.com"
#define MyPublishPath "publish"
Expand Down Expand Up @@ -45,6 +45,7 @@ Name: "{commondesktop}\AvmWinNode"; Filename: "http://localhost:3536/"; IconFile
Filename: "sc.exe"; Parameters: "create ""AvmWinNode"" binPath= ""{app}\AvmWinNode.exe"" start= auto"
Filename: "sc.exe"; Parameters: "start ""AvmWinNode"""
Filename: "cmd.exe"; Parameters: "/c mkdir {commonappdata}\AvmWinNode"
Filename: "http://localhost:3536/"; Flags: shellexec postinstall; Description: "Launch AvmWinNode"

[UninstallRun]
Filename: "sc.exe"; Parameters: "stop ""AvmWinNode"""; RunOnceId: "StopService"
Expand Down
18 changes: 18 additions & 0 deletions LocalPublish.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Remove-Item Output -Force -Recurse -ErrorAction Ignore
Remove-Item publish -Force -Recurse -ErrorAction Ignore

Set-Location AvmWinNode
dotnet publish -o ..\publish

Set-Location ..\AlgorandService
dotnet publish -o ..\publish\Services -p:PublishSingleFile=true

Set-Location ..\VoiService
dotnet publish -o ..\publish\Services -p:PublishSingleFile=true

Set-Location ..\webui
pnpm install
pnpm build

Set-Location ..
iscc AvmWinNode.iss
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ The installer does not include the node software. It is automatically downloaded

When updating a previous installation, the installer will recommend to let it automatically close applications and restart them after install. You should allow it to do this.

### Uninstall

The app is a **Node Service Manager** - uninstalling it will **_not_** remove node services that you create with it. If you wish to remove everything, use the app to Remove Services and even Delete Node Data before uninstalling the app.

## Manage Node Menu Options

### Create Service
Expand Down
5 changes: 1 addition & 4 deletions webui/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
{
"name": "avm-win-node-webui",
"version": "1.0.1",
"version": "1.0.2",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@blockshake/defly-connect": "^1.1.6",
"@mdi/js": "^7.4.47",
"@perawallet/connect": "^1.3.5",
"@txnlab/use-wallet-vue": "^3.8.0",
"algosdk": "2.9.0",
"axios": "^1.7.7",
"lute-connect": "^1.4.1",
"roboto-fontface": "^0.10.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vue": "^3.4.31",
Expand Down
82 changes: 54 additions & 28 deletions webui/pnpm-lock.yaml

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

3 changes: 3 additions & 0 deletions webui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ const store = useAppStore();
.no-select {
user-select: none;
}
.pointer {
cursor: pointer;
}
</style>
Loading

0 comments on commit 95a1269

Please sign in to comment.