diff --git a/Bugger.xcodeproj/project.pbxproj b/Bugger.xcodeproj/project.pbxproj
index 29c6c8b..fbb799a 100644
--- a/Bugger.xcodeproj/project.pbxproj
+++ b/Bugger.xcodeproj/project.pbxproj
@@ -372,7 +372,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.0;
- MARKETING_VERSION = 1.3;
+ MARKETING_VERSION = 1.4;
PRODUCT_BUNDLE_IDENTIFIER = com.xorbitlab.bugger;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
@@ -396,7 +396,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 14.0;
- MARKETING_VERSION = 1.3;
+ MARKETING_VERSION = 1.4;
PRODUCT_BUNDLE_IDENTIFIER = com.xorbitlab.bugger;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
diff --git a/Resources/Info.plist b/Resources/Info.plist
index 34047f0..69169b1 100644
--- a/Resources/Info.plist
+++ b/Resources/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 1.3
+ 1.4
CFBundleVersion
4
LSMinimumSystemVersion
diff --git a/Sources/Views/Settings/SettingsView.swift b/Sources/Views/Settings/SettingsView.swift
index a25a834..33a0d06 100644
--- a/Sources/Views/Settings/SettingsView.swift
+++ b/Sources/Views/Settings/SettingsView.swift
@@ -125,6 +125,14 @@ struct SettingsView: View {
}
}
+ Section("Calibration") {
+ Toggle("Enable calibration check", isOn: $config.calibrationEnabled)
+ Text("Periodically verifies with the notification server that all your assigned bugs are in sync. Helps recover missed push notifications. Only works when a Subscribe base URL is set.")
+ .font(.caption)
+ .foregroundStyle(.secondary)
+ .fixedSize(horizontal: false, vertical: true)
+ }
+
Section("Display") {
Toggle("Show floating widget", isOn: $config.showFloatingWidget)
.onChange(of: config.showFloatingWidget) { _, enabled in
@@ -139,16 +147,6 @@ struct SettingsView: View {
Section {
DisclosureGroup(isExpanded: $showAdvanced) {
- VStack(alignment: .leading, spacing: 4) {
- Toggle("Enable calibration check", isOn: $config.calibrationEnabled)
- Text("Periodically verifies with the notification server that all your assigned bugs are in sync. Helps recover missed push notifications. Only works when a Subscribe base URL is set.")
- .font(.caption)
- .foregroundStyle(.secondary)
- .fixedSize(horizontal: false, vertical: true)
- }
-
- Divider()
-
Text("Field Mappings")
.font(.caption)
.fontWeight(.semibold)
@@ -197,7 +195,7 @@ struct SettingsView: View {
} // VStack
.padding()
}
- .frame(minWidth: 500, idealWidth: 520, minHeight: 400, maxHeight: 800)
+ .frame(minWidth: 500, idealWidth: 520, minHeight: 400, maxHeight: 1200)
}
// MARK: - Status Mapping Row