mirror of
https://github.com/exituser/Pearcleaner.git
synced 2026-09-17 04:58:56 +00:00
v3.9.2
This commit is contained in:
@@ -541,8 +541,8 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
APP_BUILD = 63;
|
APP_BUILD = 64;
|
||||||
APP_VERSION = 3.9.0;
|
APP_VERSION = 3.9.2;
|
||||||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
||||||
CLANG_ANALYZER_NONNULL = YES;
|
CLANG_ANALYZER_NONNULL = YES;
|
||||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||||
@@ -612,8 +612,8 @@
|
|||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||||
APP_BUILD = 63;
|
APP_BUILD = 64;
|
||||||
APP_VERSION = 3.9.0;
|
APP_VERSION = 3.9.2;
|
||||||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
||||||
CLANG_ANALYZER_NONNULL = YES;
|
CLANG_ANALYZER_NONNULL = YES;
|
||||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||||
|
|||||||
@@ -119,13 +119,19 @@ struct FilesView: View {
|
|||||||
.font(.title3)
|
.font(.title3)
|
||||||
.foregroundStyle((.primary.opacity(0.5)))
|
.foregroundStyle((.primary.opacity(0.5)))
|
||||||
}
|
}
|
||||||
Spacer()
|
|
||||||
|
|
||||||
Button(detailsEnabled ? "Hide Details" : "Show Details") {
|
Button() {
|
||||||
withAnimation(Animation.easeInOut(duration: animationEnabled ? 0.35 : 0)) {
|
withAnimation(Animation.easeInOut(duration: animationEnabled ? 0.35 : 0)) {
|
||||||
detailsEnabled.toggle()
|
detailsEnabled.toggle()
|
||||||
}
|
}
|
||||||
|
} label: {
|
||||||
|
Text(detailsEnabled ? "Hide Details" : "Show Details")
|
||||||
}
|
}
|
||||||
|
.buttonStyle(.bordered)
|
||||||
|
.padding()
|
||||||
|
|
||||||
|
Spacer()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}, content: {
|
}, content: {
|
||||||
|
|||||||
Reference in New Issue
Block a user