-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathversions.html
More file actions
126 lines (122 loc) · 3.35 KB
/
Copy pathversions.html
File metadata and controls
126 lines (122 loc) · 3.35 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<title>Documentation Versions - Copilot SDK for Java</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: #f6f8fa;
}
.container {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
h1 {
color: #24292e;
margin-bottom: 10px;
}
.subtitle {
color: #586069;
margin-bottom: 30px;
}
.version-list {
list-style: none;
padding: 0;
}
.version-list li {
margin: 15px 0;
padding: 15px;
background: #f6f8fa;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: space-between;
}
.version-list li:hover {
background: #ebeef1;
}
.version-list a {
color: #0366d6;
text-decoration: none;
font-size: 18px;
font-weight: 500;
}
.version-list a:hover {
text-decoration: underline;
}
.badge {
display: inline-block;
padding: 4px 10px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
}
.latest {
background: #28a745;
color: white;
}
.snapshot {
background: #ffc107;
color: #333;
}
.archived {
background: #6c757d;
color: white;
}
.warning {
background: #fff3cd;
border: 1px solid #ffc107;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
color: #856404;
}
.info {
background: #e7f3ff;
border: 1px solid #0366d6;
padding: 15px;
border-radius: 5px;
margin: 20px 0;
color: #0366d6;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eaecef;
color: #586069;
font-size: 14px;
text-align: center;
}
.footer a {
color: #0366d6;
}
</style>
</head>
<body>
<div class="container">
<h1>📚 Copilot SDK for Java</h1>
<p class="subtitle">Documentation Versions</p>
<div class="warning">
⚠️ <strong>Disclaimer:</strong> This is an <strong>unofficial, community-driven SDK</strong> and is <strong>not supported or endorsed by GitHub</strong>. Use at your own risk.
</div>
<div class="info">
💡 <strong>Tip:</strong> We recommend using the <strong>Latest Release</strong> documentation unless you need features from an unreleased version.
</div>
<h2>Available Versions</h2>
<ul class="version-list">
<li><a href="./latest/">Latest Release</a><span class="badge latest">latest</span></li><li><a href="./snapshot/">Development (main branch)</a><span class="badge snapshot">snapshot</span></li><li><a href="./1.0.2/">Version 1.0.2</a><span class="badge archived">1.0.2</span></li><li><a href="./1.0.1/">Version 1.0.1</a><span class="badge archived">1.0.1</span></li><li><a href="./1.0.0/">Version 1.0.0</a><span class="badge archived">1.0.0</span></li>
</ul>
<div class="footer">
<p>
<a href="https://github.com/copilot-community-sdk/copilot-sdk-java">GitHub Repository</a> ·
<a href="https://central.sonatype.com/artifact/io.github.copilot-community-sdk/copilot-sdk">Maven Central</a>
</p>
</div>
</div>
</body>
</html>