Skip to content

Commit 187cfa0

Browse files
format changeds
1 parent 2046bdb commit 187cfa0

2 files changed

Lines changed: 68 additions & 14 deletions

File tree

static/announcements.json

Lines changed: 49 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,75 @@
11
{
2-
"schema_version": "1.0",
3-
"last_updated": "2025-10-05T10:00:00Z",
2+
"schema_version": "2.0",
3+
"last_updated": "2025-10-08T04:51:48+0200",
44
"announcements": [
55
{
66
"id": "2025-10-05-nfa-release",
77
"title": "NFA v2.3 Released!",
88
"message": "Faster .nessus parsing, new export formats, and improved GUI. Go to https://github.com/LimberDuck/nessus-file-analyzer ",
9-
"tools": ["nfa"],
10-
"priority": "info",
9+
"type": "info",
1110
"valid_from": "2025-10-05",
12-
"valid_until": "2025-12-31"
11+
"valid_until": "2025-12-31",
12+
"tools": [
13+
{
14+
"name": "nfa",
15+
"max_version": "2.3.0"
16+
}
17+
]
1318
},
1419
{
1520
"id": "2025-10-02-global-survey",
1621
"title": "LimberDuck User Survey",
1722
"message": "Help shape the next features for all tools! Go to https://limberduck.org to take the survey.",
18-
"tools": ["nfa", "nfr", "tnscm", "tsccm", "cfc"],
19-
"priority": "highlight",
23+
"type": "highlight",
2024
"valid_from": "2025-10-02",
21-
"valid_until": "2025-10-31"
25+
"valid_until": "2025-10-31",
26+
"tools": [
27+
{
28+
"name": "nfa",
29+
"max_version": "2.3.0"
30+
},
31+
{
32+
"name": "nfr",
33+
"max_version": "1.5.0"
34+
},
35+
{
36+
"name": "tnscm",
37+
"max_version": "3.1.0"
38+
},
39+
{
40+
"name": "tsccm",
41+
"max_version": "1.2.0"
42+
},
43+
{
44+
"name": "cfc",
45+
"max_version": "0.4.3"
46+
}
47+
]
2248
},
2349
{
2450
"id": "2025-10-01-nfr-tip",
2551
"title": "Tip for NFR Users",
2652
"message": "Try the new report comparison mode — it helps track regressions faster.",
27-
"tools": ["nfr"],
28-
"priority": "tip"
53+
"type": "tip",
54+
"tools": [
55+
{
56+
"name": "nfr",
57+
"max_version": "2.3.0"
58+
}
59+
]
2960
},
3061
{
3162
"id": "2025-09-30-cfc-security",
3263
"title": "Security Reminder for CFC",
3364
"message": "Regularly update your API tokens to keep your integrations safe.",
34-
"tools": ["cfc"],
35-
"priority": "warning",
36-
"valid_until": "2025-11-01"
65+
"type": "warning",
66+
"valid_until": "2025-11-01",
67+
"tools": [
68+
{
69+
"name": "cfc",
70+
"max_version": "0.4.3"
71+
}
72+
]
3773
}
3874
]
3975
}

static/index.html

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
<!doctype html>
22
<html>
3-
<head><meta charset="utf-8"><title>LimberDuck Data</title></head>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>LimberDuck Data</title>
6+
<style>
7+
body {
8+
background-color: #212121;
9+
color: #FFFFFF;
10+
font-family: 'Courier New', monospace;
11+
margin: 40px;
12+
}
13+
a {
14+
color: #80CBC4;
15+
text-decoration: none;
16+
}
17+
a:hover {
18+
text-decoration: underline;
19+
}
20+
</style>
21+
</head>
422
<body>
523
<h1>LimberDuck Data</h1>
624
<p><a href="announcements.json">View announcements.json</a></p>

0 commit comments

Comments
 (0)