Skip to content

Commit aec35a6

Browse files
committed
Remove Divider between PlayerInfoView and Lower Details View. Bump version number.
1 parent d0044b2 commit aec35a6

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

TidalSwift.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,7 @@
14481448
CODE_SIGN_IDENTITY = "Apple Development";
14491449
CODE_SIGN_STYLE = Automatic;
14501450
COMBINE_HIDPI_IMAGES = YES;
1451-
CURRENT_PROJECT_VERSION = 31;
1451+
CURRENT_PROJECT_VERSION = 32;
14521452
DEVELOPMENT_ASSET_PATHS = "TidalSwift/Preview\\ Content";
14531453
DEVELOPMENT_TEAM = V7E5P7292M;
14541454
ENABLE_HARDENED_RUNTIME = YES;
@@ -1478,7 +1478,7 @@
14781478
CODE_SIGN_IDENTITY = "Apple Development";
14791479
CODE_SIGN_STYLE = Automatic;
14801480
COMBINE_HIDPI_IMAGES = YES;
1481-
CURRENT_PROJECT_VERSION = 31;
1481+
CURRENT_PROJECT_VERSION = 32;
14821482
DEVELOPMENT_ASSET_PATHS = "TidalSwift/Preview\\ Content";
14831483
DEVELOPMENT_TEAM = V7E5P7292M;
14841484
ENABLE_HARDENED_RUNTIME = YES;

TidalSwift/Top-Level Views/PlayerInfoView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct PlayerInfoView: View {
5555
}
5656
.frame(height: 30)
5757
.padding([.top, .horizontal])
58-
Divider()
58+
// Divider()
5959
}
6060
}
6161
}

TidalSwiftLibTests/FavoritesTests.swift

+5-4
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ class FavoritesTests: XCTestCase {
222222
let dateDesc = favorites.playlists(order: .dateAdded, orderDirection: .descending)
223223
XCTAssertNotNil(dateAsc)
224224
XCTAssertNotNil(dateDesc)
225-
XCTAssertEqual(dateAsc?.reversed(), dateDesc) // TODO: Vermutlich ein Unterschied, wenn zwei Playlists das gleiche Datum haben
225+
XCTAssertEqual(dateAsc?.reversed(), dateDesc) // TODO: Probably a difference if two playlists have the same date
226226

227227
let nameAsc = favorites.playlists(order: .name, orderDirection: .ascending)
228228
let nameDesc = favorites.playlists(order: .name, orderDirection: .descending)
229229
XCTAssertNotNil(nameAsc)
230230
XCTAssertNotNil(nameDesc)
231-
XCTAssertEqual(nameAsc?.reversed(), nameDesc) // TODO: Vermutlich ein Unterschied, wenn zwei Playlists das gleiche Datum haben
231+
XCTAssertEqual(nameAsc?.reversed(), nameDesc) // TODO: Probably a difference if two playlists have the same date
232232
}
233233

234234
func testUserPlaylists() {
@@ -384,8 +384,9 @@ class FavoritesTests: XCTestCase {
384384
XCTAssertTrue(r1)
385385

386386

387-
// TODO: Warum funktionieren die kommenden Tests nicht?
388-
// Die Playlist wird tatsächlich hinzugefügt, taucht aber hier in der Abfrage nicht auf
387+
// TODO: Why don't the following tests work?
388+
// The playlist is actually added, but does not appear in the query here
389+
// Caching maybe?
389390
guard let doFavoritesContainPlaylist2 = favorites.doFavoritesContainPlaylist(playlistId: demoPlaylistId) else {
390391
XCTFail("favorites.doFavoritesContainPlaylist() is nil")
391392
return

0 commit comments

Comments
 (0)