Skip to content

Commit

Permalink
Merge pull request #34 from othyn/dev
Browse files Browse the repository at this point in the history
Remove arbitrary limits on custom fields
  • Loading branch information
othyn authored Jul 6, 2022
2 parents 164f30c + dd113b7 commit bab90fe
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

<div align="center">
<h4>
<a href="https://github.com/othyn/macos-auto-clicker/releases/download/v1.3.1/Auto.Clicker.dmg">Download Latest Version</a>
<a href="https://github.com/othyn/macos-auto-clicker/releases/download/v1.3.2/Auto.Clicker.dmg">Download Latest Version</a>
<span> · </span>
<a href="https://github.com/othyn/macos-auto-clicker/issues">Report Bug</a>
<span> · </span>
Expand Down Expand Up @@ -114,7 +114,7 @@ All the auto clickers out there were either really outdated, old, buggy and/or h

### :floppy_disk: Download

Download: [v1.3.1](https://github.com/othyn/macos-auto-clicker/releases/download/v1.3.1/Auto.Clicker.dmg)
Download: [v1.3.2](https://github.com/othyn/macos-auto-clicker/releases/download/v1.3.2/Auto.Clicker.dmg)

**When first using the app, you will need to right click the app and click 'Open', then on the macOS popup window select 'Open' again to trust this version of the app going forward.** This is as at the moment I don't have a paid Apple developer account in order to notarize the app.

Expand Down
4 changes: 2 additions & 2 deletions auto-clicker.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 1.3.1;
MARKETING_VERSION = 1.3.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.othyn.auto-clicker";
PRODUCT_NAME = "Auto Clicker";
SWIFT_VERSION = 5.0;
Expand All @@ -690,7 +690,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 1.3.1;
MARKETING_VERSION = 1.3.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.othyn.auto-clicker";
PRODUCT_NAME = "Auto Clicker";
SWIFT_VERSION = 5.0;
Expand Down
2 changes: 1 addition & 1 deletion auto-clicker/Build Assets/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>16dfa09</string>
<string>cdde35a</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
6 changes: 3 additions & 3 deletions auto-clicker/Constants/FieldConstants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ import Foundation
// MARK: - Press Interval

let MIN_PRESS_INTERVAL: Int = 1
let MAX_PRESS_INTERVAL: Int = 1_000
let MAX_PRESS_INTERVAL: Int = 100_000_000

let DEFAULT_PRESS_INTERVAL: Int = 50

// MARK: - Press Amount

let MIN_PRESS_AMOUNT: Int = 1
let MAX_PRESS_AMOUNT: Int = 100
let MAX_PRESS_AMOUNT: Int = 100_000_000

let DEFAULT_PRESS_AMOUNT: Int = 1

Expand All @@ -33,6 +33,6 @@ let DEFAULT_REPEAT_AMOUNT: Int = 100
// MARK: - Start Delay

let MIN_START_DELAY: Int = 0
let MAX_START_DELAY: Int = 60
let MAX_START_DELAY: Int = 100_000_000

let DEFAULT_START_DELAY: Int = 1
4 changes: 2 additions & 2 deletions dist/Auto Clicker.app/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.3.1</string>
<string>1.3.2</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>16dfa09</string>
<string>cdde35a</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand Down
Binary file modified dist/Auto Clicker.app/Contents/MacOS/Auto Clicker
Binary file not shown.
Binary file modified dist/Auto Clicker.dmg
Binary file not shown.

0 comments on commit bab90fe

Please sign in to comment.