Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
3a054e6
initialized the app
jackruan99 Mar 28, 2021
402822a
completed center design task
jackruan99 Mar 29, 2021
497b464
Added comments
jackruan99 Mar 29, 2021
4d40794
initialized the project
jackruan99 Jun 7, 2021
fc5574a
able to center all components, but not connections
jackruan99 Jun 10, 2021
8cbf733
connection still not working
jackruan99 Jun 11, 2021
79419c6
Replace builtin prototype method with `Object.prototype` equivalent
deepsource-autofix[bot] Jun 9, 2021
fbced67
able to center all with control g
jackruan99 Jun 14, 2021
aa87550
added some comments
jackruan99 Jun 14, 2021
82a328e
Merge pull request #1 from CIDARLAB/master
jackruan99 Jun 15, 2021
8ccc342
Update .deepsource.toml
rkrishnasanka Jun 16, 2021
a30e0a4
Update .deepsource.toml
rkrishnasanka Jun 16, 2021
dd8145b
Update .deepsource.toml
rkrishnasanka Jun 16, 2021
54951f1
Update .deepsource.toml
rkrishnasanka Jun 16, 2021
c9f45d9
fixed and cleaned code
jackruan99 Jun 16, 2021
c7eed13
Merge branch 'master' of https://github.com/jackruan99/3DuF
jackruan99 Jun 16, 2021
785c638
Updated some issues with Deep Source (JS-0119, JS-0051, JS-0242, JS-0…
rkrishnasanka Jun 17, 2021
38b86bf
Removed 3DuF.js from source tree
rkrishnasanka Jun 17, 2021
21bf582
Merge branch 'jackruan99-master't push origin master
rkrishnasanka Jun 17, 2021
77f4745
Merge branch 'master' of https://github.com/CIDARLAB/3DuF
rkrishnasanka Jun 17, 2021
8c1cb1e
Fixed constant expressions in conditions
msisk23 Jun 20, 2021
5d6ec9d
Changed == to === and != to !==
msisk23 Jun 23, 2021
1f08df9
Merge branch 'master' into master
rkrishnasanka Jun 23, 2021
40bdeef
Merge branch 'msisk23-master't push origin master
rkrishnasanka Jun 23, 2021
5ed7dd2
Fixed #191
rkrishnasanka Jun 30, 2021
d69ff74
fixed Issue #255 (#307)
jackruan99 Jul 12, 2021
e77d64a
Create main.yml
rkrishnasanka Aug 4, 2021
2bd3faa
Update main.yml
rkrishnasanka Aug 4, 2021
fd137d5
Removed unecessary import from component.js
rkrishnasanka Oct 1, 2021
4067cc4
Add v1 auto-deploy
rkrishnasanka Oct 1, 2021
5e4891e
Add v1 auto-deploy
rkrishnasanka Oct 1, 2021
64c78f5
Removed 3DuFApp.js from ignore list so that we can autodeploy shit
rkrishnasanka Oct 1, 2021
70729eb
No longer sending stuff to test but rather to gh-pages
rkrishnasanka Oct 1, 2021
c134536
Fixed issue #445
rkrishnasanka Apr 20, 2022
2d25802
Fixed issue where the component constructor was not starting correctly
rkrishnasanka Apr 20, 2022
315c1b4
just making an update to see the update
rkrishnasanka Apr 20, 2022
2240cb1
Added a null check to the sinks serialization incase that is crapping…
rkrishnasanka May 4, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .deepsource.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
version = 1

exclude_patterns = ["lib/**","orbit_bundle.js","src/test/**"]

[[analyzers]]
name = "javascript"
enabled = true
Expand Down
45 changes: 45 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ webpack-build ]
pull_request:
branches: [ webpack-build ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run : |
npm ci
npm run vue-lint
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Run a one-line script
run: |
npm ci
npm run vue-build

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
50 changes: 50 additions & 0 deletions .github/workflows/v1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This is a basic workflow to help you get started with Actions

name: v1-workflow

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2.3.1

# Runs a single command using the runners shell
- name: Run a one-line script
run: |
npm ci
npm run compile

build-and-deploy:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm ci
npm run publish

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages # The branch the action should deploy to.
folder: . # The folder the action should deploy.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ old/*.scad
.idea/
*tmp-browserify*

3DuFapp.js
publish.sh

docs/
Loading