Skip to content

Commit debbe79

Browse files
committed
adjusts mac window
1 parent 0492132 commit debbe79

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func NewApp() *App {
2929
func (a *App) startup(ctx context.Context) {
3030
home, _ := os.UserHomeDir()
3131

32-
a.version = "v0.2.2" + " - " + runtime.GOOS + " - " + runtime.GOARCH
32+
a.version = "v0.2.3" + " - " + runtime.GOOS + " - " + runtime.GOARCH
3333

3434
a.ctx = ctx
3535
if _, err := os.Stat(home + string(os.PathSeparator) + ".cheat_sheets.db"); os.IsNotExist(err) {

frontend/src/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ listPrograms()
6262
height: 100vh;
6363
padding: 10px;
6464
position: fixed;
65-
margin-top: 20px;
6665
overflow-y: scroll;
6766
overflow-x: hidden;
6867
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);

frontend/wailsjs/go/main/App.d.ts

100644100755
File mode changed.

frontend/wailsjs/go/main/App.js

100644100755
File mode changed.

main.go

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,16 @@ func main() {
3535
},
3636
Mac: &mac.Options{
3737
TitleBar: &mac.TitleBar{
38-
TitlebarAppearsTransparent: true,
38+
TitlebarAppearsTransparent: false,
39+
HideTitle: false,
40+
HideTitleBar: false,
41+
FullSizeContent: false,
42+
UseToolbar: false,
43+
HideToolbarSeparator: true,
3944
},
4045
About: &mac.AboutInfo{
4146
Title: "Desktop Cheat Sheet",
42-
Message: app.version + " | © mvrpl_br",
47+
Message: "© mvrpl_br",
4348
},
4449
},
4550
})

wails.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"info": {
1414
"companyName": "mvrpl_br",
1515
"productName": "Desktop Cheat Sheet",
16-
"productVersion": "0.2.2"
16+
"productVersion": "0.2.3"
1717
},
1818
"nsisType": "single"
1919
}

0 commit comments

Comments
 (0)