Skip to content

Commit

Permalink
Implement desktop song download, add desktop LPM
Browse files Browse the repository at this point in the history
Implement song/lyrics download on desktop
Add desktop layout for long-press menu, with floating position and increased contrast
  • Loading branch information
toasterofbread committed Nov 26, 2023
1 parent 15a59e5 commit 9957c55
Show file tree
Hide file tree
Showing 48 changed files with 1,916 additions and 1,327 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
.cxx
local.properties
.vscode
*.log

app/debug/
app/release/
Expand Down
2 changes: 1 addition & 1 deletion ComposeKit
2 changes: 1 addition & 1 deletion androidApp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</service>

<service
android:name=".PlayerDownloadService"
android:name=".platform.download.PlayerDownloadService"
android:exported="false"></service>

<receiver
Expand Down
14 changes: 5 additions & 9 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -128,25 +128,19 @@ kotlin {

sourceSets {
commonMain {
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.materialIconsExtended)
implementation(compose.ui)
implementation(compose.material)

@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
implementation(compose.material3)
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
implementation(compose.components.resources)

/* use `com.github.teamnewpipe` and NOT `com.github.TeamNewPipe`
* its case sensitive and the readme notation DOES NOT WORK */
implementation("com.github.teamnewpipe:NewPipeExtractor:v0.22.7")

implementation(project(":ComposeKit:lib"))

implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation("com.squareup.okhttp3:okhttp:4.11.0")
implementation("com.google.code.gson:gson:2.10.1")
implementation("org.apache.commons:commons-text:1.10.0")
implementation("com.atilika.kuromoji:kuromoji-ipadic:0.9.0")
Expand All @@ -156,7 +150,9 @@ kotlin {
implementation("com.github.catppuccin:java:v1.0.0")
implementation("com.github.paramsen:noise:2.0.0")
implementation("org.kobjects.ktxml:core:0.2.3")
implementation("com.github.Adonai:jaudiotagger:2.3.14")
implementation("com.github.Kaned1as:jaudiotagger:2.3.15")
implementation("com.github.teamnewpipe:NewPipeExtractor:v0.22.7")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
}
kotlin.srcDir(buildConfigDir)
}
Expand Down
Loading

0 comments on commit 9957c55

Please sign in to comment.