Skip to content

Commit

Permalink
new version and don't print size in debug info as uses too much memor…
Browse files Browse the repository at this point in the history
…y for images
  • Loading branch information
roznet committed Sep 19, 2021
1 parent 9eb3bf4 commit 523e2a5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/Common/RemoteStashItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ class RemoteStashItem {

extension RemoteStashItem : CustomStringConvertible {
var description: String {
var info = [ "\(self.contentType)", "\(self.content.size())" ]
var info = [ "\(self.contentType)" ]
if let file = self.filename {
info.append(file)
}
Expand Down
4 changes: 4 additions & 0 deletions remotestash.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0;
PRODUCT_BUNDLE_IDENTIFIER = "net.ro-z.remotestash";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
Expand All @@ -777,6 +778,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0;
PRODUCT_BUNDLE_IDENTIFIER = "net.ro-z.remotestash";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
Expand Down Expand Up @@ -883,6 +885,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.0;
PRODUCT_BUNDLE_IDENTIFIER = "net.ro-z.remotestash.share";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -905,6 +908,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.0;
PRODUCT_BUNDLE_IDENTIFIER = "net.ro-z.remotestash.share";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 1 addition & 1 deletion remotestash/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion share/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSBonjourServices</key>
Expand Down

0 comments on commit 523e2a5

Please sign in to comment.