Skip to content

Commit 95eae69

Browse files
committed
Release 1.5.4
- Make addition tracker properties optional - Fix typo in acknowledgements
1 parent cea3e68 commit 95eae69

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Deluge Remote.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@
713713
CODE_SIGN_ENTITLEMENTS = "";
714714
CODE_SIGN_IDENTITY = "Apple Development";
715715
CODE_SIGN_STYLE = Automatic;
716-
CURRENT_PROJECT_VERSION = 2;
716+
CURRENT_PROJECT_VERSION = 1;
717717
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
718718
DEVELOPMENT_TEAM = NZ8449Y9W6;
719719
HEADER_SEARCH_PATHS = (
@@ -728,7 +728,7 @@
728728
"@executable_path/Frameworks",
729729
);
730730
LIBRARY_SEARCH_PATHS = "";
731-
MARKETING_VERSION = 1.5.3;
731+
MARKETING_VERSION = 1.5.4;
732732
OTHER_LDFLAGS = "-ObjC";
733733
PRODUCT_BUNDLE_IDENTIFIER = "io.rudybermudez.Deluge-Remote";
734734
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -746,7 +746,7 @@
746746
CODE_SIGN_ENTITLEMENTS = "";
747747
CODE_SIGN_IDENTITY = "Apple Development";
748748
CODE_SIGN_STYLE = Automatic;
749-
CURRENT_PROJECT_VERSION = 2;
749+
CURRENT_PROJECT_VERSION = 1;
750750
DEVELOPMENT_TEAM = NZ8449Y9W6;
751751
HEADER_SEARCH_PATHS = (
752752
"$(SRCROOT)/NSBencodeSerialization/NSBencodeSerialization",
@@ -760,7 +760,7 @@
760760
"@executable_path/Frameworks",
761761
);
762762
LIBRARY_SEARCH_PATHS = "";
763-
MARKETING_VERSION = 1.5.3;
763+
MARKETING_VERSION = 1.5.4;
764764
OTHER_LDFLAGS = "-ObjC";
765765
PRODUCT_BUNDLE_IDENTIFIER = "io.rudybermudez.Deluge-Remote";
766766
PRODUCT_NAME = "$(TARGET_NAME)";

Deluge Remote.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Deluge Remote/Sources/Models/Deluge/TorrentMetadata.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ struct PeerMetadata: Decodable {
9292
struct TrackerMetadata: Decodable {
9393
let send_stats: Bool?
9494
let fails: Int?
95-
let verified: Bool
95+
let verified: Bool?
9696
let scrape_incomplete: Int?
9797
let min_announce: Int?
9898
let scrape_downloaded: Int?
9999
let url: String
100100
let last_error: ErrorMetadata?
101-
let fail_limit: Int
101+
let fail_limit: Int?
102102
let next_announce: Int?
103103
let complete_sent: Bool
104104
let source: Int

Deluge Remote/Sources/View Controllers/AcknowledgementsTableViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ fileprivate class MainSection: TableViewSection {
5050
cells.append(MenuCell(label: "ActiveLabel", icon: UIImage(named: "menu/github")){
5151
UIApplication.shared.open(URL(string: "https://github.com/optonaut/ActiveLabel.swift")!)
5252
})
53-
cells.append(MenuCell(label: "Bar Magnet", icon: UIImage(named: "menu/github")){
53+
cells.append(MenuCell(label: "BarMagnet", icon: UIImage(named: "menu/github")){
5454
UIApplication.shared.open(URL(string: "https://github.com/Qata/BarMagnet")!)
5555
})
5656
cells.append(MenuCell(label: "Eureka", icon: UIImage(named: "menu/github")){

0 commit comments

Comments
 (0)