Skip to content

Commit

Permalink
more track/playlist fields & lavasearch support (#84)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Rittmeister <dr@schlau.bi>
Co-authored-by: Michael Rittmeister <michael@rittmeister.in>
  • Loading branch information
3 people authored Aug 3, 2023
1 parent e126864 commit afe31da
Show file tree
Hide file tree
Showing 34 changed files with 1,916 additions and 288 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ build
.gradle
.idea
!gradle/wrapper/gradle-wrapper.jar
plugin/application.yml
application.yml
logs/
gradle.properties
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ A collection of additional [Lavaplayer](https://github.com/sedmelluq/lavaplayer)

`*tracks are searched & played via YouTube or other configurable sources`


> [!IMPORTANT]
> For LavaSrc v3 look [here](https://github.com/topi314/LavaSrc/tree/v3-legacy)

## Summary

* [Lavaplayer Usage](#lavaplayer-usage)
Expand Down Expand Up @@ -54,8 +52,7 @@ dependencies {
```xml
<repositories>
<repository>
<id>jitpack</id>
<url>https://jitpack.io</url>
<url>https://maven.topi.wtf/releases</url>
</repository>
</repositories>

Expand Down
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
plugins {
id "org.jetbrains.kotlin.jvm" version "1.9.0" apply false
id "org.jetbrains.kotlin.plugin.serialization" version "1.9.0" apply false
}
allprojects {
group = "com.github.topi314.lavasrc"

repositories {
mavenLocal()
mavenCentral()
maven { url "https://maven.topi.wtf/snapshots" }
maven { url "https://maven.arbjerg.dev/releases" }
maven { url "https://jitpack.io" }
jcenter()
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit afe31da

Please sign in to comment.