Skip to content

Commit 60403bf

Browse files
Deploy documentation: snapshot
1 parent 8b36051 commit 60403bf

278 files changed

Lines changed: 375 additions & 281 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

index.html

Lines changed: 97 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
5+
<meta http-equiv="Pragma" content="no-cache">
6+
<meta http-equiv="Expires" content="0">
47
<title>Documentation Versions - Copilot SDK for Java</title>
58
<style>
69
body {
@@ -40,6 +43,13 @@
4043
.version-list li:hover {
4144
background: #ebeef1;
4245
}
46+
.version-list li.latest-version {
47+
background: #d4edda;
48+
border: 1px solid #28a745;
49+
}
50+
.version-list li.latest-version:hover {
51+
background: #c3e6cb;
52+
}
4353
.version-list a {
4454
color: #0366d6;
4555
text-decoration: none;
@@ -95,12 +105,81 @@
95105
.footer a {
96106
color: #0366d6;
97107
}
108+
.header {
109+
text-align: center;
110+
margin-bottom: 30px;
111+
}
112+
.header img {
113+
max-width: 100%;
114+
height: auto;
115+
border-radius: 8px;
116+
margin-bottom: 20px;
117+
}
118+
.github-link {
119+
display: inline-flex;
120+
align-items: center;
121+
gap: 8px;
122+
background: #24292e;
123+
color: white;
124+
padding: 12px 24px;
125+
border-radius: 6px;
126+
text-decoration: none;
127+
font-weight: 600;
128+
margin-top: 15px;
129+
transition: background 0.2s;
130+
}
131+
.github-link:hover {
132+
background: #1a1e22;
133+
text-decoration: none;
134+
}
135+
.github-link svg {
136+
fill: white;
137+
}
138+
.legend {
139+
display: flex;
140+
flex-wrap: wrap;
141+
gap: 20px;
142+
justify-content: center;
143+
margin-top: 20px;
144+
padding: 15px;
145+
background: #f6f8fa;
146+
border-radius: 6px;
147+
}
148+
.legend-item {
149+
display: flex;
150+
align-items: center;
151+
gap: 8px;
152+
font-size: 14px;
153+
color: #586069;
154+
}
155+
.legend-color {
156+
width: 16px;
157+
height: 16px;
158+
border-radius: 4px;
159+
}
160+
.legend-color.latest {
161+
background: #d4edda;
162+
border: 1px solid #28a745;
163+
}
164+
.legend-color.snapshot {
165+
background: #ffc107;
166+
}
167+
.legend-color.archived {
168+
background: #6c757d;
169+
}
98170
</style>
99171
</head>
100172
<body>
101173
<div class="container">
102-
<h1>📚 Copilot SDK for Java</h1>
103-
<p class="subtitle">Documentation Versions</p>
174+
<div class="header">
175+
<img src="image.png" alt="Copilot SDK for Java - GitHub Octocat and Duke Java mascot">
176+
<h1>📚 Copilot SDK for Java</h1>
177+
<p class="subtitle">Documentation Versions</p>
178+
<a href="https://github.com/copilot-community-sdk/copilot-sdk-java" class="github-link">
179+
<svg height="20" width="20" viewBox="0 0 16 16"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path></svg>
180+
View on GitHub
181+
</a>
182+
</div>
104183

105184
<div class="warning">
106185
⚠️ <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.
@@ -112,9 +191,24 @@ <h1>📚 Copilot SDK for Java</h1>
112191

113192
<h2>Available Versions</h2>
114193
<ul class="version-list">
115-
<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.3/">Version 1.0.3</a><span class="badge archived">1.0.3</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>
194+
<li><a href="./snapshot/">Development (main branch)</a><span class="badge snapshot">snapshot</span></li><li class="latest-version"><a href="./1.0.3/">Version 1.0.3</a><span class="badge latest">latest</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>
116195
</ul>
117196

197+
<div class="legend">
198+
<div class="legend-item">
199+
<div class="legend-color latest"></div>
200+
<span>Latest stable release</span>
201+
</div>
202+
<div class="legend-item">
203+
<div class="legend-color snapshot"></div>
204+
<span>Development snapshot</span>
205+
</div>
206+
<div class="legend-item">
207+
<div class="legend-color archived"></div>
208+
<span>Previous versions</span>
209+
</div>
210+
</div>
211+
118212
<div class="footer">
119213
<p>
120214
<a href="https://github.com/copilot-community-sdk/copilot-sdk-java">GitHub Repository</a> ·

snapshot/apidocs/allclasses-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>All Classes and Interfaces (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/allpackages-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>All Packages (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/ConnectionState.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>ConnectionState (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/CopilotClient.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>CopilotClient (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/CopilotSession.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>CopilotSession (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/SdkProtocolVersion.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>SdkProtocolVersion (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/SystemMessageMode.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>SystemMessageMode (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/class-use/ConnectionState.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>Uses of Enum Class com.github.copilot.sdk.ConnectionState (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

snapshot/apidocs/com/github/copilot/sdk/class-use/CopilotClient.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<html lang>
33
<head>
4-
<!-- Generated by javadoc (17) on Mon Jan 26 21:36:57 UTC 2026 -->
4+
<!-- Generated by javadoc (17) on Mon Jan 26 23:11:56 UTC 2026 -->
55
<title>Uses of Class com.github.copilot.sdk.CopilotClient (GitHub Copilot Community SDK :: Java 1.0.4-SNAPSHOT API)</title>
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

0 commit comments

Comments
 (0)