diff --git a/src/renderer/components/menubar.vue b/src/renderer/components/menubar.vue index cc2c8955..5d8ef93c 100644 --- a/src/renderer/components/menubar.vue +++ b/src/renderer/components/menubar.vue @@ -104,11 +104,11 @@ Remove --> - - View on GitHub + + View remote repository - - Open in PowerShell + + Open in Terminal Show in Explorer @@ -323,6 +323,12 @@ export default { currentWindow.openDevTools(); }, // Repository + openRemoteRepository() { + console.log(this.currentRepository.remote); + }, + openTerminal() { + childProcess.exec("start cmd", { cwd: this.currentRepository.path }); + }, openFileExplorer() { shell.openItem(this.currentRepository.path); }, @@ -336,7 +342,7 @@ export default { // Help reportIssue() { shell.openExternal( - "https://github.com/gitthermal/thermal/issues/new?assignees=&labels=🐞+Bug&template=bug_report.md" + "https://github.com/gitthermal/thermal/issues/new/choose" ); }, contactSupport() {