Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Pouya/algorithms core #35

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ _release/*
_documentation/*
node_modules/*
npm-debug.log
www/*
www/*
.vscode/.browse.VC.db
3 changes: 2 additions & 1 deletion .vscode/cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"onresize",
"prismjs",
"Script's",
"subdirs"
"subdirs",
"subfolder"
],
// flagWords - list of words to be always considered incorrect
// This is useful for offensive words and common spelling errors.
Expand Down
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"karyfoundation.comment",
"karyfoundation.theme-karyfoundation-themes",
"karyfoundation.righteous",
"streetsidesoftware.code-spell-checker",
"ybaumes.highlight-trailing-white-spaces"
]
}
6 changes: 2 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontFamily": "SourceCodePro-Medium",
"editor.tabSize": 4,
"editor.wrappingColumn": 0,
"editor.quickSuggestionsDelay": 0,
"editor.insertSpaces": true,
"alex.enable": true
"alex.enable": true,
"typescript.check.workspaceVersion": false
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"command": "bash",
"isShellCommand": false,
"args": [ "build.sh" ],
"showOutput": "silent",
"showOutput": "never",
"echoCommand": false
}
29 changes: 25 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
gulp

cd ./_compiled
electron main.js
cd ..
#
# ─── GULP BUILD ─────────────────────────────────────────────────────────────────
#

gulp

#cd ./_compiled
#electron main.js
#cd ..

#
# ─── PACKING ────────────────────────────────────────────────────────────────────
#

electron-packager _compiled "Graph" --platform=darwin --arch=x64 --overwrite=true --app-copyrigh="Copyright 2016 by Kary Foundation, Inc." --app-version="1" --icon=./designs/icon/icns/icon.icns --name="Graph" --out=_release

#electron-packager ./binary "Comment IV" --platform=win32 --arch=x64 --app-copyrigh="Copyright 2016 by Kary Foundation, Inc." --app-version="IV.3.124" --icon=icon/ico/icon.ico --name="Comment IV" --out=release --overwrite=true

#
# ─── RUNNING ────────────────────────────────────────────────────────────────────
#

#"_release/Orchestra-darwin-x64/Orchestra.app/Contents/MacOS/Orchestra"

# ────────────────────────────────────────────────────────────────────────────────
Loading