Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DailymotionProvider/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cloudstream {
* 1: Ok
* 2: Slow
* 3: Beta-only
**/
*/
status = 1 // Will be 3 if unspecified

tvTypes = listOf("Others")
Expand Down
23 changes: 23 additions & 0 deletions InternetArchiveProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Use an integer for version numbers
version = 1

cloudstream {
// All of these properties are optional, you can safely remove any of them.

description = "Watch content from the Internet Archive at archive.org"
authors = listOf("Luna712")

/**
* Status int as one of the following:
* 0: Down
* 1: Ok
* 2: Slow
* 3: Beta-only
*/
status = 1 // Will be 3 if unspecified

tvTypes = listOf("Others")
iconUrl = "https://www.google.com/s2/favicons?domain=archive.org&sz=%size%"

isCrossPlatform = true
}
2 changes: 2 additions & 0 deletions InternetArchiveProvider/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest />
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package recloudstream

import com.lagradost.cloudstream3.plugins.BasePlugin
import com.lagradost.cloudstream3.plugins.CloudstreamPlugin

@CloudstreamPlugin
class InternetArchivePlugin: BasePlugin() {
override fun load() {
// All providers should be added in this manner. Please don't edit the providers list directly.
registerMainAPI(InternetArchiveProvider())
}
}
Loading