Skip to content

Commit

Permalink
Merge branch 'main' into chore/electron-31
Browse files Browse the repository at this point in the history
  • Loading branch information
jgresham authored Jul 29, 2024
2 parents 74a7e42 + 4c1e078 commit 6b03470
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 3 deletions.
1 change: 1 addition & 0 deletions assets/locales/en/windowMenu.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

"Help": "Help",
"NiceNodeWebsite": "NiceNode website",
"OpenLogs": "Open Logs",
"ReportAProblem": "Report a problem",
"RemoveAllNodesAndData": "Remove all nodes and data",
"UninstallPodman": "Uninstall Podman",
Expand Down
5 changes: 5 additions & 0 deletions funding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"opRetro": {
"projectId": "0xf603b0a365deb7d7130d5c6ebd2ca4f8b7661aae8dcbee822d0ff4187dbcfc76"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nice-node",
"version": "6.1.4-alpha",
"version": "6.2.1-alpha",
"description": "Run a node at home, the easy way.",
"homepage": "https://nicenode.xyz",
"productName": "NiceNode",
Expand Down
2 changes: 1 addition & 1 deletion src/common/NodeSpecs/prysm/prysm-v1.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
},
"quicPort": {
"displayName": "QUIC port",
"cliConfigPrefix": ["p2p-quic-port="],
"cliConfigPrefix": ["--p2p-quic-port="],
"uiControl": {
"type": "text"
},
Expand Down
12 changes: 12 additions & 0 deletions src/main/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
getSetHasSeenAlphaModal,
getSetHasSeenSplashscreen,
} from './state/settings';
import path from 'node:path';

import { runBenchmark } from './benchbuddy/runBenchmark';
import { getDebugInfoString, getGithubIssueProblemURL } from './debug';
Expand Down Expand Up @@ -233,6 +234,17 @@ export default class MenuBuilder {
shell.openExternal(url);
},
},
{
label: t('OpenLogs'),
click: async () => {
const logFolderPath = path.join(app.getPath('userData'), 'logs');
shell.openPath(logFolderPath).then((result) => {
if (result) {
console.error('Error opening log folder:', result);
}
});
},
},
{
label: t('CopyConfigurationDetailsToClipboard'),
click: async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/main/podman/install/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import installOnLinux from './installOnLinux';
import installOnMac from './installOnMac';
import installOnWindows from './installOnWindows';

export const PODMAN_LATEST_VERSION = '5.1.1';
export const PODMAN_LATEST_VERSION = '5.1.2';
export const PODMAN_MIN_VERSION = '4.3.0';

const installPodman = async (): Promise<any> => {
Expand Down

0 comments on commit 6b03470

Please sign in to comment.