Skip to content

Commit

Permalink
Added about section
Browse files Browse the repository at this point in the history
  • Loading branch information
fguzman82 committed Jul 10, 2024
1 parent aa90902 commit d2f8e01
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CLIP-Finder2.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.fguzman82.CLIP-Finder2";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -401,7 +401,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.1;
MARKETING_VERSION = 1.2;
PRODUCT_BUNDLE_IDENTIFIER = "com.fguzman82.CLIP-Finder2";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down Expand Up @@ -440,8 +440,7 @@
1C62E8ED2C2A211000C1C637 /* PhotosDB.xcdatamodel */,
);
currentVersion = 1C62E8ED2C2A211000C1C637 /* PhotosDB.xcdatamodel */;
name = PhotosDB.xcdatamodeld;
path = "PhotosDB.xcdatamodeld";
path = PhotosDB.xcdatamodeld;
sourceTree = "<group>";
versionGroupType = wrapper.xcdatamodel;
};
Expand Down
Binary file not shown.
9 changes: 9 additions & 0 deletions CLIP-Finder2/SettingsViews.swift
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,15 @@ struct SettingsView: View {
}
}

Section(header: Text("About")) {
VStack(alignment: .leading, spacing: 10) {
Text("This is an open-source project")

Link("View on GitHub", destination: URL(string: "https://github.com/fguzman82/CLIP-Finder2/")!)
.foregroundColor(.blue)
}
}

}
.navigationTitle("Settings")
.navigationBarItems(trailing: Button("Done") {
Expand Down

0 comments on commit d2f8e01

Please sign in to comment.