Skip to content

Commit e9d9588

Browse files
feat: add funding configuration and update build triggers; modify README and package metadata
1 parent af7aa47 commit e9d9588

File tree

5 files changed

+11
-21
lines changed

5 files changed

+11
-21
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [mohankumarelec]

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Product Build Workflow
22

3-
on:
4-
push:
5-
branches:
6-
- "*"
3+
on: [push, pull_request]
74

85
permissions:
96
contents: write

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
> _"An open-source, free, AI-native, privacy-first IDE, forked from VS Code, offering the flexibility to bring your own keys for the LLMs of your choice."_
44
5-
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/flexpilot-ai/flexpilot-ide/product-stable-build.yml)
6-
[![License](https://img.shields.io/badge/license-GNU%20GPLv3-blue.svg)](LICENSE)
5+
![Build](https://github.com/flexpilot-ai/flexpilot-ide/actions/workflows/build.yml/badge.svg)
6+
![Release](https://github.com/flexpilot-ai/flexpilot-ide/actions/workflows/release.yml/badge.svg)
7+
[![License](https://img.shields.io/badge/license-GNU%20GPLv3-blue.svg)](extensions/flexpilot/LICENSE)
8+
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.txt)
79
[![Star on GitHub](https://img.shields.io/github/stars/flexpilot-ai/flexpilot-ide?style=social)](https://github.com/flexpilot-ai/flexpilot-ide)
810

911
Flexpilot IDE is an open-source, AI-native, privacy-first IDE that offers the flexibility to bring your own keys for the LLMs of your choice. Forked from VS Code, Flexpilot IDE is designed to provide a seamless, AI-powered coding experience that is fully customizable, community-driven, and transparent.
@@ -37,16 +39,6 @@ Experience the power of Flexpilot IDE without any installation! Click the button
3739
- Groq
3840
- Google Gemini
3941
- Mistral AI
40-
- Ollama
41-
- Cerbras
42-
- Anyscale
43-
- KoboldCpp
44-
- text-gen-webui
45-
- FastChat
46-
- LocalAI
47-
- llama-cpp-python
48-
- TensorRT-LLM
49-
- vLLM
5042
- _Any many more!_
5143

5244
## 🤝 Contributing

extensions/flexpilot/src/utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export const getLanguageConfig = (languageId: string): ILanguageConfig => {
121121
export const triggerUserSupport = async (session: vscode.AuthenticationSession) => {
122122
try {
123123
await fetch(
124-
'https://api.github.com/user/starred/flexpilot-ai/vscode-extension',
124+
'https://api.github.com/user/starred/flexpilot-ai/flexpilot-ide',
125125
{
126126
method: 'PUT',
127127
headers: {
@@ -161,7 +161,7 @@ export const showSupportNotification = (session: vscode.AuthenticationSession):
161161
)
162162
.then(async (sponsor) => {
163163
if (sponsor === 'Become a Sponsor') {
164-
vscode.env.openExternal(vscode.Uri.parse('https://github.com/flexpilot-ai'));
164+
vscode.env.openExternal(vscode.Uri.parse('https://github.com/sponsors/mohankumarelec'));
165165
}
166166
});
167167
});

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.96.4",
44
"distro": "c883c91dadf5f063b26c86ffe01851acee3747c6",
55
"author": {
6-
"name": "Microsoft Corporation"
6+
"name": "Flexpilot AI"
77
},
88
"license": "MIT",
99
"main": "./out/main.js",
@@ -232,10 +232,10 @@
232232
},
233233
"repository": {
234234
"type": "git",
235-
"url": "https://github.com/microsoft/vscode.git"
235+
"url": "https://github.com/flexpilot-ai/flexpilot-ide"
236236
},
237237
"bugs": {
238-
"url": "https://github.com/microsoft/vscode/issues"
238+
"url": "https://github.com/flexpilot-ai/flexpilot-ide/issues"
239239
},
240240
"optionalDependencies": {
241241
"windows-foreground-love": "0.5.0"

0 commit comments

Comments
 (0)