Skip to content

Commit

Permalink
Update padding a bit to see about
Browse files Browse the repository at this point in the history
  • Loading branch information
SenpaiHunters committed Apr 12, 2024
1 parent ef30efd commit b60d8aa
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
</plist>
23 changes: 11 additions & 12 deletions clakr/clakr/Settings/Settings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct SettingsView: View {
var id: String { self.rawValue }
}

private let frameSize = CGSize(width: 630, height: 500)
private let frameSize = CGSize(width: 650, height: 500)

var body: some View {
NavigationView {
Expand Down Expand Up @@ -278,25 +278,24 @@ struct AboutView: View {
}

private var aboutClakrSection: some View {
VStack(alignment: .leading, spacing: 5) {
Text("More about Clakr")
.font(.title2)
.padding(.bottom, 2)
VStack(alignment: .leading, spacing: 5) {
Text("More about Clakr")
.font(.title2)
.padding(.bottom, 5)

Text("Clakr is a simple, lightweight auto-clicker designed for macOS. It can be used as a menu bar app, or a standalone app, with optional sound effects when the clicker starts.")
Text("Clakr is a simple, lightweight auto-clicker designed for macOS. It can be used as a menu bar app, or a standalone app, with optional sound effects when the clicker starts.")
.padding(.bottom, 1)

Text("Clakr is entirely open-sourced, ensuring user and developer transparency for an up-to-date, free, and fast auto-clicker.")
Text("Clakr is entirely open-sourced, ensuring user and developer transparency for an up-to-date, free, and fast auto-clicker.")
.padding(.bottom, 1)

Text("Please be aware that by using Clakr, you accept full responsibility for any consequences, such as bans or penalties from software or services that prohibit the use of auto-clickers.")
Text("Please be aware that by using Clakr, you accept full responsibility for any consequences, such as bans or penalties from software or services that prohibit the use of auto-clickers.")
.padding(.bottom, 1)

Link("Support Clakr's development", destination: URL(string: "https://www.buymeacoffee.com/kamiamvs")!)
.padding(.bottom, 1)
}
.padding(.vertical)
Link("Support Clakr's development", destination: URL(string: "https://www.buymeacoffee.com/kamiamvs")!)
.padding(.bottom, 3)
}
}

private var copyrightAndVersionSection: some View {
HStack {
Expand Down

0 comments on commit b60d8aa

Please sign in to comment.