Skip to content

Commit 241a706

Browse files
feat: Add GitHub Sponsors button to sidebar
- Added πŸ’– Sponsor button alongside ⭐ Star button - Friendly message encouraging support for the project - Bumped version to 2.0.0 (major release milestone)
1 parent 43aee2d commit 241a706

4 files changed

Lines changed: 60584 additions & 952 deletions

File tree

β€Ždist/extension.jsβ€Ž

Lines changed: 60566 additions & 944 deletions
Large diffs are not rendered by default.

β€Ždist/extension.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "GitHub Copilot API Gateway",
44
"description": "Universal API Gateway for GitHub Copilot. Expose GPT-4o, Claude 3.5, & Gemini via local OpenAI, Anthropic, & Google compatible APIs. Use Copilot with Cursor, LangChain, & Agents. Includes Enterprise Apps Hub.",
55
"icon": "media/icon.png",
6-
"version": "0.0.29",
6+
"version": "2.0.0",
77
"author": {
88
"name": "Suhaib Bin Younis",
99
"email": "vscode@suhaib.in",

β€Žsrc/CopilotPanel.tsβ€Ž

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -533,12 +533,22 @@ Format the output as a ready-to-use prompt that the user can copy and paste into
533533
534534
<!-- GitHub Star Section -->
535535
<div class="section" style="text-align: center; padding: 16px 12px;">
536-
<a href="https://github.com/suhaibbinyounis/github-copilot-api-vscode"
537-
target="_blank"
538-
style="display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--vscode-button-secondaryBackground); color: var(--vscode-button-secondaryForeground); border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: 500; transition: background 0.15s ease;">
539-
⭐ Star on GitHub
540-
</a>
541-
<div style="margin-top: 8px; font-size: 10px; opacity: 0.6;">If you find this useful, please star the repo!</div>
536+
<div style="display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;">
537+
<a href="https://github.com/suhaibbinyounis/github-copilot-api-vscode"
538+
target="_blank"
539+
style="display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--vscode-button-secondaryBackground); color: var(--vscode-button-secondaryForeground); border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: 500; transition: background 0.15s ease;">
540+
⭐ Star
541+
</a>
542+
<a href="https://github.com/sponsors/suhaibbinyounis"
543+
target="_blank"
544+
style="display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: linear-gradient(135deg, #ea4aaa 0%, #db61a2 100%); color: white; border-radius: 6px; text-decoration: none; font-size: 12px; font-weight: 500; transition: opacity 0.15s ease;">
545+
πŸ’– Sponsor
546+
</a>
547+
</div>
548+
<div style="margin-top: 10px; font-size: 10px; opacity: 0.65; line-height: 1.4;">
549+
Enjoying this extension? A star helps others discover it.<br>
550+
If it's saved you time or money, consider sponsoring β€” it keeps this project alive. πŸ’™
551+
</div>
542552
</div>
543553
544554
<script nonce="${nonce}">

0 commit comments

Comments
Β (0)