-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
40 lines (40 loc) · 924 Bytes
/
index.php
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
40
<?php
$version = array(
'stable'=>array(
'version'=>'3.16.2',
'codeName'=>'',
'build'=>'20240823',
'releaseDate'=>'2024-08-23',
'downloadLink'=>'https://www.bludit.com/releases/bludit-3-16-2.zip',
'downloadMirrorLink'=>'',
'changelogLink'=>'https://github.com/bludit/bludit/releases/tag/3.16.2',
'github'=>'https://github.com/bludit/bludit/releases/tag/3.16.2',
'blog'=>'https://blog.bludit.com/bludit-3-16-2'
),
'beta'=>array(
'version'=>'',
'codeName'=>'',
'build'=>'',
'releaseDate'=>'',
'downloadLink'=>'',
'downloadMirrorLink'=>'',
'changelogLink'=>'',
'github'=>'',
'blog'=>''
),
'alpha'=>array(
'version'=>'',
'codeName'=>'',
'build'=>'',
'releaseDate'=>'',
'downloadLink'=>'',
'downloadMirrorLink'=>'',
'changelogLink'=>'',
'github'=>'',
'blog'=>''
)
);
if( !defined('BLUDIT')) {
header("Content-type:application/json");
exit( json_encode($version) );
}