Update icon
Move mini mode toolbar up into restricted edge
Allow dark/light/auto appearance mode in Settings
Fix web app file search not finding plist files.
This commit is contained in:
Alin
2023-11-17 11:14:16 -07:00
parent 9b64ad9a5b
commit 881cf103fb
11 changed files with 6 additions and 3 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 662 B

After

Width:  |  Height:  |  Size: 757 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 140 KiB

+6 -3
View File
@@ -26,10 +26,12 @@ struct TopBarMini: View {
// Spacer() // Spacer()
SearchBarMini(search: $search, reload: $reload) SearchBarMini(search: $search, reload: $reload)
.frame(width: 180) // .frame(width: 150)
.offset(x: 20)
.padding(.horizontal, 30)
// .padding(.top, 5) // .padding(.top, 5)
// Spacer() Spacer()
// Button("") { // Button("") {
// withAnimation(.easeInOut(duration: 0.5)) { // withAnimation(.easeInOut(duration: 0.5)) {
@@ -80,6 +82,7 @@ struct TopBarMini: View {
.buttonStyle(SimpleButtonStyle(icon: "list.triangle", help: "Apps", color: Color("mode"))) .buttonStyle(SimpleButtonStyle(icon: "list.triangle", help: "Apps", color: Color("mode")))
} }
} }
.padding(.horizontal, 10) .padding(.horizontal, 10)
.padding(.top, 10) .padding(.top, 10)
@@ -97,6 +100,6 @@ struct SearchBarMini: View {
TextField("Search", text: $search) TextField("Search", text: $search)
.textFieldStyle(SimpleSearchStyle(trash: true, reload: $reload, text: $search)) .textFieldStyle(SimpleSearchStyle(trash: true, reload: $reload, text: $search))
} }
.frame(height: 30) .frame(height: 20)
} }
} }