Skip to content

Commit

Permalink
Added support for macOS 12 and improved the message for invalid QR code
Browse files Browse the repository at this point in the history
  • Loading branch information
Ibrahimhass committed Mar 22, 2023
1 parent 39703f9 commit a23a0e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions QRCode-Generator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = "tarka.QRCode-Generator";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -306,6 +307,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 12.0;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = "tarka.QRCode-Generator";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion QRCode-Generator/QRCodeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct QRCodeView: View {


if !viewModel.isSuccess {
Text("Please select a valid URL")
Text("Please copy a valid URL")
.padding()
}
}
Expand Down

0 comments on commit a23a0e8

Please sign in to comment.