Skip to content

Commit e3af7ac

Browse files
authored
merging v2.0.0 changes to master
Gitconvex v2.0.0 Final merge with stable changes # Major Release with new backend - Rewrote the whole backend in go - Included multiple auth options for repo cloning - Revised version update checking mechanism - File explorer with file based icons (vs-code icon pack) - Client side programming language detection using langline - UI tweaks
2 parents fb9d75f + c48851b commit e3af7ac

File tree

2,193 files changed

+27261
-8337
lines changed

Some content is hidden

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

2,193 files changed

+27261
-8337
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ start.sh
33
setup.sh
44
.git/
55
node_modules/*
6+
make.bat

.github/ISSUE_TEMPLATE/bug_report.md

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Command Line Logs**
27+
Gitconvex displays logs in the command line. Please paste the error logs below
28+
29+
```
30+
# Error Logs...
31+
```
32+
33+
**Desktop (please complete the following information):**
34+
- OS: [e.g. Linux]
35+
- Browser [e.g. chrome, safari]
36+
- Version [e.g. 2.0.0]
37+
38+
**Issue Type**
39+
>mark with [x] to select the check box
40+
41+
- [ ] UI Issue
42+
- [ ] Performance Issue
43+
- [ ] Feature Breaking Issue
44+
- [ ] Security Issue
45+
46+
**Severity**
47+
>mark with [x] to select the check box
48+
49+
- [ ] Critical (The application crashes / breaks completely)
50+
- [ ] High (Blocks you from performing an critical operation)
51+
- [ ] Moderate (Bearable or Manageable issue)
52+
- [ ] Low (Something is not right, but the impact is minimal)
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: Feature request
6+
assignees: neel1996
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/main.yml

+22-23
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ name: Gitconvex build deploy
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ v2.0.0 ]
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
10+
timeout-minutes: 60
1011
steps:
1112

1213
- name: Set up Go 1.x
@@ -22,27 +23,25 @@ jobs:
2223
run: |
2324
go get -v -t -d ./...
2425
25-
- name: Running Test Cases
26-
run: export GOTESTENV=ci && go test -v ./...
27-
28-
- name: Build for windows
26+
- name: Run test cases
2927
run: |
30-
export GOOS=windows && GOARCH=amd64
31-
mkdir -p ./windows
32-
make build
33-
mv dist/ windows/
34-
35-
- name: deploy gitconvex windows build bundles to S3
36-
uses: shallwefootball/upload-s3-action@v1.1.2
37-
with:
38-
aws_key_id: ${{ secrets.AWS_ACCESS_ID }}
39-
aws_secret_access_key: ${{ secrets.AWS_ACCESS_SECRET }}
40-
aws_bucket: ${{ secrets.AWS_BUCKET_URL }}
41-
source_dir: 'windows'
42-
destination_dir: 'windows'
43-
44-
# Runs a set of commands using the runners shell
45-
- name: Run a multi-line script
28+
export GOTESTENV=ci && go test -v ./...
29+
30+
- name: Run sample build
4631
run: |
47-
echo Add other actions to build,
48-
echo test, and deploy your project.
32+
go build -v
33+
34+
# Initiating build and S# deployment
35+
- name: Starting S3 deployment script from droplet
36+
uses: appleboy/ssh-action@master
37+
with:
38+
host: ${{ secrets.DROPLET_HOST }}
39+
username: ${{ secrets.DROPLET_USERNAME }}
40+
key: ${{ secrets.DROPLET_PRIVATE_KEY }}
41+
port: ${{ secrets.DROPLET_PORT }}
42+
script: |
43+
/opt/workroom/aws-build/init-deploy.sh
44+
/opt/workroom/aws-build/windows-deploy.sh
45+
/opt/workroom/aws-build/linux-deploy.sh
46+
/opt/workroom/aws-build/macos-deploy.sh
47+
/opt/workroom/aws-build/cleanup.sh

.gitignore

-7
This file was deleted.

API/addRepoApi.js

-128
This file was deleted.

API/branchCompareApi.js

-16
This file was deleted.

API/codeFileViewApi.js

-54
This file was deleted.

API/commitCompareApi.js

-16
This file was deleted.

0 commit comments

Comments
 (0)