forked from Davidona/StreamVault-IPTV
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdate.php
More file actions
39 lines (35 loc) · 1.33 KB
/
Copy pathupdate.php
File metadata and controls
39 lines (35 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
header('Content-Type: application/json');
$stable_release = [
"tag_name" => "v1.0.15+16",
"body" => "StreamVault stable release. Auto-detect server URLs, selectable Xtream live stream format, movie variant deduplication and sorting, and translation/playback improvements.",
"html_url" => "https://demo.cockpit.lol/api/streamvault/",
"published_at" => "2026-06-16T12:00:00Z",
"draft" => false,
"prerelease" => false,
"assets" => [
[
"name" => "StreamVault.apk",
"browser_download_url" => "https://demo.cockpit.lol/api/streamvault/StreamVault.apk"
]
]
];
$beta_release = [
"tag_name" => "v1.0.15-beta+16",
"body" => "StreamVault beta release. Auto-detect server URLs, selectable Xtream live stream format, movie variant deduplication and sorting, and translation/playback improvements.",
"html_url" => "https://demo.cockpit.lol/api/streamvault/",
"published_at" => "2026-06-16T12:00:00Z",
"draft" => false,
"prerelease" => true,
"assets" => [
[
"name" => "StreamVault-beta.apk",
"browser_download_url" => "https://demo.cockpit.lol/api/streamvault/StreamVault-beta.apk"
]
]
];
$releases = [
$stable_release,
$beta_release
];
echo json_encode($releases, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);