Skip to content

Commit

Permalink
v3.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alienator88 committed Oct 18, 2024
1 parent 95d3326 commit fc20ee8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Pearcleaner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -541,8 +541,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
APP_BUILD = 63;
APP_VERSION = 3.9.0;
APP_BUILD = 64;
APP_VERSION = 3.9.2;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
Expand Down Expand Up @@ -612,8 +612,8 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
APP_BUILD = 63;
APP_VERSION = 3.9.0;
APP_BUILD = 64;
APP_VERSION = 3.9.2;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
Expand Down
10 changes: 8 additions & 2 deletions Pearcleaner/Views/FilesView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,19 @@ struct FilesView: View {
.font(.title3)
.foregroundStyle((.primary.opacity(0.5)))
}
Spacer()

Button(detailsEnabled ? "Hide Details" : "Show Details") {
Button() {
withAnimation(Animation.easeInOut(duration: animationEnabled ? 0.35 : 0)) {
detailsEnabled.toggle()
}
} label: {
Text(detailsEnabled ? "Hide Details" : "Show Details")
}
.buttonStyle(.bordered)
.padding()

Spacer()

}

}, content: {
Expand Down

0 comments on commit fc20ee8

Please sign in to comment.