Skip to content

Commit 1bf95c6

Browse files
committed
Add GitLab1s
1 parent 195a3ee commit 1bf95c6

File tree

7 files changed

+36
-17
lines changed

7 files changed

+36
-17
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/adjiklnjodbiaioggfpbpkhbfcnhgkfe.svg)][chrome_link]
55
[![Firefox Addons](https://img.shields.io/amo/v/github-web-ide.svg)][firefox_link]
66
[![Edge Addons](https://img.shields.io/badge/dynamic/json?label=edge%20add-on&prefix=v&query=%24.version&url=https%3A%2F%2Fmicrosoftedge.microsoft.com%2Faddons%2Fgetproductdetailsbycrxid%2Fakjbkjciknacicbnkfjbnlaeednpadcf)][edge_link]
7-
[![Github Release](https://img.shields.io/github/v/release/zvizvi/GitHub-Web-IDE.svg)][release_link]
7+
[![GitHub Release](https://img.shields.io/github/v/release/zvizvi/GitHub-Web-IDE.svg)][release_link]
88

99

1010
This extension adds to any GitHub repository a new drop down menu which offers links to a number of online services that allow viewing the source code of the repository in an IDE like interface.
@@ -14,6 +14,7 @@ Services currently supported:
1414
* [VSCode Dev](https://vscode.dev/)
1515
* [CodeSandbox](https://codesandbox.io/)
1616
* [GitHub1s](https://github1s.com/)
17+
* [GitLab1s](https://gitlab1s.com/)
1718
* [Repl.it](https://replit.com/)
1819
* [Gitpod](https://gitpod.io/)
1920
* [StackBlitz](https://stackblitz.com/)
@@ -27,6 +28,7 @@ Services currently supported:
2728

2829

2930
### What's changed?
31+
* v2.0.2 GitLab1s link added
3032
* v2.0.1 Open in VSCodeDev option
3133
* v2.0.0
3234
* Extension customizing options page.
@@ -49,7 +51,7 @@ Services currently supported:
4951
### GitHub
5052
![image](https://user-images.githubusercontent.com/4354421/107879967-a123aa00-6ee4-11eb-9582-662998618ed1.png)
5153
### GitLab
52-
![image](https://user-images.githubusercontent.com/4354421/109164571-45c6a700-7783-11eb-8da0-61e3f4c8d588.png)
54+
![image](https://user-images.githubusercontent.com/4354421/168898417-45fa3aa5-4505-4f32-9c36-f05fc81f47af.png)
5355

5456

5557
### Download

src/html/options.html

+6
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@ <h2 class="Subhead-heading">Enabled IDE list</h2>
8686
GitHub1s
8787
</label>
8888
</div>
89+
<div class="form-checkbox">
90+
<label>
91+
<input type="checkbox" id="gitLab1s" />
92+
GitLab1s
93+
</label>
94+
</div>
8995
<div class="form-checkbox">
9096
<label>
9197
<input type="checkbox" id="replit" />

src/js/main.js

+21-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/options.js

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const defaultOptions = {
55
vsCodeDev: true,
66
codeSandbox: true,
77
gitHub1s: true,
8+
gitLab1s: true,
89
replit: true,
910
stackBlitz: true,
1011
gitpod: true,

src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"manifest_version": 3,
55
"update_url": "https://clients2.google.com/service/update2/crx",
66
"homepage_url": "https://github.com/zvizvi/GitHub-Web-IDE",
7-
"version": "2.0.1",
7+
"version": "2.0.2",
88
"author": "[email protected]",
99
"action": {
1010
"default_icon": {

src/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "github-web-ide",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "⚡ Open GitHub repositories in online web IDE",
55
"main": "README.md",
66
"dependencies": {

0 commit comments

Comments
 (0)