-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (72 loc) · 2.18 KB
/
index.html
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="This is unofficial RSS feed to get Flutter releases. The data source is Flutter SDK archive." />
<title>RSS feed to get Flutter releases</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Jost"
/>
<style>
body {
font-family: "Jost", serif;
padding: 32px;
}
p {
padding-top: 32px;
font-size: 18px;
}
.container {
display: flex;
gap: 24px;
}
.link {
display: flex;
align-items: center;
gap: 4px;
text-decoration: none;
}
</style>
</head>
<body>
<h1>RSS feed to get Flutter releases</h1>
<p>
This is unofficial RSS feed to get Flutter releases. The data source is
<a href="https://docs.flutter.dev/release/archive">Flutter SDK archive</a
>, and observe it daily by GitHub Actions. If you notice anything, please
let me know through
<a href="https://github.com/CORDEA/flutter-release-rss">repository</a>.
</p>
<div class="container">
<a
href="https://cordea.jp/flutter-release-rss/releases_windows.xml"
class="link"
>
<span class="material-symbols-outlined">rss_feed</span>
<span>Windows</span>
</a>
<a
href="https://cordea.jp/flutter-release-rss/releases_macos.xml"
class="link"
>
<span class="material-symbols-outlined">rss_feed</span>
<span>macOS</span>
</a>
<a
href="https://cordea.jp/flutter-release-rss/releases_linux.xml"
class="link"
>
<span class="material-symbols-outlined">rss_feed</span>
<span>Linux</span>
</a>
</div>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "a8fdf8ff0b5c4359b2fbabe2208e1cf7"}'></script>
</body>
</html>