Skip to content

Commit

Permalink
bump: bump to version 0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Malopieds committed Oct 28, 2024
1 parent 6b2318a commit 5c925fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId = "com.malopieds.innertune"
minSdk = 24
targetSdk = 35
versionCode = 26
versionName = "0.5.9"
versionCode = 27
versionName = "0.5.10"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ fun StatsScreen(
val mostPlayedSongsStats by viewModel.mostPlayedSongsStats.collectAsState()
val mostPlayedArtists by viewModel.mostPlayedArtists.collectAsState()
val mostPlayedAlbums by viewModel.mostPlayedAlbums.collectAsState()
println("sui $mostPlayedAlbums")

val firstEvent by viewModel.firstEvent.collectAsState()
val currentDate = LocalDateTime.now()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ class InnerTube {
url.parameters["n"] = nSigDecode(n.toString())
url.parameters[signatureParam] = sigDecode(signature)
url.parameters["c"] = "ANDROID_MUSIC"
println("url = $url")
return url.toString()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class YouTubeTest {
val playerResponse = youTube.player(videoId).getOrThrow()
val format = playerResponse.streamingData!!.adaptiveFormats[0]
val url = format.url!!
println(url)
val response = HttpClient(OkHttp).get(url) {
headers {
append("Range", "bytes=0-10")
Expand Down Expand Up @@ -69,7 +68,7 @@ class YouTubeTest {
var searchResult = youTube.search(SEARCH_QUERY, FILTER_SONG).getOrThrow()
while (searchResult.continuation != null && count > 0) {
searchResult.items.forEach {
println(it.title)

}
searchResult = youTube.searchContinuation(searchResult.continuation!!).getOrThrow()
count -= 1
Expand Down

0 comments on commit 5c925fb

Please sign in to comment.