Skip to content

Commit

Permalink
Add GitLab1s
Browse files Browse the repository at this point in the history
  • Loading branch information
zvizvi committed May 17, 2022
1 parent 195a3ee commit 1bf95c6
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 17 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Chrome Web Store](https://img.shields.io/chrome-web-store/v/adjiklnjodbiaioggfpbpkhbfcnhgkfe.svg)][chrome_link]
[![Firefox Addons](https://img.shields.io/amo/v/github-web-ide.svg)][firefox_link]
[![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]
[![Github Release](https://img.shields.io/github/v/release/zvizvi/GitHub-Web-IDE.svg)][release_link]
[![GitHub Release](https://img.shields.io/github/v/release/zvizvi/GitHub-Web-IDE.svg)][release_link]


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.
Expand All @@ -14,6 +14,7 @@ Services currently supported:
* [VSCode Dev](https://vscode.dev/)
* [CodeSandbox](https://codesandbox.io/)
* [GitHub1s](https://github1s.com/)
* [GitLab1s](https://gitlab1s.com/)
* [Repl.it](https://replit.com/)
* [Gitpod](https://gitpod.io/)
* [StackBlitz](https://stackblitz.com/)
Expand All @@ -27,6 +28,7 @@ Services currently supported:


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


### Download
Expand Down
6 changes: 6 additions & 0 deletions src/html/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ <h2 class="Subhead-heading">Enabled IDE list</h2>
GitHub1s
</label>
</div>
<div class="form-checkbox">
<label>
<input type="checkbox" id="gitLab1s" />
GitLab1s
</label>
</div>
<div class="form-checkbox">
<label>
<input type="checkbox" id="replit" />
Expand Down
32 changes: 21 additions & 11 deletions src/js/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const defaultOptions = {
vsCodeDev: true,
codeSandbox: true,
gitHub1s: true,
gitLab1s: true,
replit: true,
stackBlitz: true,
gitpod: true,
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"manifest_version": 3,
"update_url": "https://clients2.google.com/service/update2/crx",
"homepage_url": "https://github.com/zvizvi/GitHub-Web-IDE",
"version": "2.0.1",
"version": "2.0.2",
"author": "[email protected]",
"action": {
"default_icon": {
Expand Down
4 changes: 2 additions & 2 deletions src/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "github-web-ide",
"version": "2.0.1",
"version": "2.0.2",
"description": "⚡ Open GitHub repositories in online web IDE",
"main": "README.md",
"dependencies": {
Expand Down

0 comments on commit 1bf95c6

Please sign in to comment.