-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: generated v1.5.1 executables for macos (#77)
* feat: generated v1.5.1 executables for macos * wip: created a modal for randomized segments * feat: updated menu fonts. * chore: added vscode settings * test: added test mp4 file * feat: added timeline util methods * feat: added random timeline generation * feat: allow random segment generation * chore: updated doc * chore: generated executable v1.6.0 for win32 --------- Co-authored-by: Hanxiong Shi <[email protected]>
- Loading branch information
1 parent
bfe874c
commit 6937866
Showing
16 changed files
with
369 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
{ | ||
"workbench.iconTheme": "material-icon-theme", | ||
"workbench.colorTheme": "Blackboard", | ||
"editor.tabSize": 2, | ||
"editor.minimap.enabled": false, | ||
"javascript.updateImportsOnFileMove.enabled": "always", | ||
"javascript.validate.enable": false, | ||
"files.eol": "\n", | ||
"extensions.ignoreRecommendations": false, | ||
"colorize.include": ["**/*.js"], | ||
"editor.suggestSelection": "first", | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[ruby]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[python]": { | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"git.enableSmartCommit": true, | ||
"sonarlint.rules": { | ||
"typescript:S3699": { | ||
"level": "off" | ||
}, | ||
"typescript:S1488": { | ||
"level": "off" | ||
}, | ||
"javascript:S4138": { | ||
"level": "off" | ||
} | ||
}, | ||
"[html]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"diffEditor.ignoreTrimWhitespace": false, | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"explorer.confirmDelete": false, | ||
"[markdown]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"editor.fontFamily": "Consolas, 'Courier New', monospace", | ||
"jupyter.askForKernelRestart": false, | ||
"json.maxItemsComputed": 50000, | ||
"workbench.editorAssociations": { | ||
"*.ipynb": "jupyter-notebook" | ||
}, | ||
"security.workspace.trust.untrustedFiles": "open", | ||
"search.showLineNumbers": true, | ||
"editor.bracketPairColorization.enabled": true, | ||
"[dockercompose]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"code-runner.clearPreviousOutput": true, | ||
"prettier.singleQuote": true, | ||
"prettier.trailingComma": "all", | ||
"prettier.printWidth": 120, | ||
"[dockerfile]": { | ||
"editor.defaultFormatter": "ms-azuretools.vscode-docker" | ||
}, | ||
"code-runner.runInTerminal": false, | ||
"code-runner.executorMap": { | ||
"javascript": "node", | ||
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt", | ||
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"php": "php", | ||
"python": "python -u", | ||
"perl": "perl", | ||
"perl6": "perl6", | ||
"ruby": "ruby", | ||
"go": "go run", | ||
"lua": "lua", | ||
"groovy": "groovy", | ||
"powershell": "powershell -ExecutionPolicy ByPass -File", | ||
"bat": "cmd /c", | ||
"shellscript": "bash", | ||
"fsharp": "fsi", | ||
"csharp": "scriptcs", | ||
"vbscript": "cscript //Nologo", | ||
"typescript": "ts-node", | ||
"coffeescript": "coffee", | ||
"scala": "scala", | ||
"swift": "swift", | ||
"julia": "julia", | ||
"crystal": "crystal", | ||
"ocaml": "ocaml", | ||
"r": "Rscript", | ||
"applescript": "osascript", | ||
"clojure": "lein exec", | ||
"haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt", | ||
"rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt", | ||
"racket": "racket", | ||
"scheme": "csi -script", | ||
"ahk": "autohotkey", | ||
"autoit": "autoit3", | ||
"dart": "dart", | ||
"pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt", | ||
"d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt", | ||
"haskell": "runhaskell", | ||
"nim": "nim compile --verbosity:0 --hints:off --run", | ||
"lisp": "sbcl --script", | ||
"kit": "kitc --run", | ||
"v": "v run", | ||
"sass": "sass --style expanded", | ||
"scss": "scss --style expanded", | ||
"less": "cd $dir && lessc $fileName $fileNameWithoutExt.css", | ||
"FortranFreeForm": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"fortran-modern": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"fortran_fixed-form": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"fortran": "cd $dir && gfortran $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt", | ||
"sml": "cd $dir && sml $fileName" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-338 KB
...Resources/generated-8cb2455f77fe4dc4a5ecf642c291c7e8ac9c966e5b7b85adf5f6464564b20f75.icns
Binary file not shown.
Binary file not shown.
File renamed without changes.
Binary file renamed
BIN
+43.1 MB
..._loom_1_4_2.app/Contents/MacOS/video_loom → ..._loom_1_5_1.app/Contents/MacOS/video_loom
Binary file not shown.
Binary file added
BIN
+2.06 MB
...Resources/generated-8cb2455f77fe4dc4a5ecf642c291c7e8ac9c966e5b7b85adf5f6464564b20f75.icns
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.