-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* - fix github links * fixed install scripts * Update launch.json * Update extensions.json * Tutorial (#75) * Iniziato il task del tutorial * modificato card tutorial * creato tutorial service e implementato next e close in tutorial component * aggiunto pakage-json.lock e yarn.lock a gitignore * implementata logica di blur su tutti i componenti * Blur filter updated * Attenzione al codice di src/app/widgets/code-editor/code-editor/code-editor.component.html * Problema: Quando si chiude il tutorial prima di accedere alla execbar i bottoni restano comunque non-cliccabili * Trying to solve the problem * Auto stash before merge of "tutorial" and "origin/tutorial" * fix display visibility * Aperto la beta * Sistemato il bottone indietro * TODO: da fixare la posizione della card in base agli elementi * Card del tutorial aggiornata * Funziona * Perché mi si chiude cosí presto? * Gestire i pulsanti di Log API, terminal e output quando sono disattivati e si clicca sul bottone di chiusura (rimangono bloccati) * Fixato le ultime cose del tutorial TODO: cache? * Ora la card funziona sia in dark sia in light mode * Implementato la sessione per evitare che venga sempre visualizzato il tutorial * TODO: perché si sblocca solo la topbar? * Funziona tutto perfettamente * All works! --------- Co-authored-by: enrico <[email protected]> --------- Co-authored-by: Cesare Montresor <[email protected]> Co-authored-by: enrico <[email protected]>
- Loading branch information
1 parent
0a4d81c
commit 083a52e
Showing
53 changed files
with
2,216 additions
and
15,418 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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 | ||
"recommendations": ["angular.ng-template"] | ||
"recommendations": [ | ||
"angular.ng-template", | ||
"firefox-devtools.vscode-firefox-debug" | ||
] | ||
} |
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
Submodule TALight
added at
25e584
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,36 @@ | ||
#! /bin/bash | ||
sudo dnf update | ||
|
||
|
||
sudo dnf -y install git curl cmake curl wget | ||
# Rust | ||
sudo dnf -y install cargo | ||
sudo dnf -y install pkg-config | ||
sudo dnf -y group install "C Development Tools and Libraries" "Development Tools" | ||
sudo dnf -y install webkit2gtk4.0-devel \ | ||
openssl-devel \ | ||
gtk3-devel \ | ||
libindicator \ | ||
librsvg2-devel | ||
|
||
# NodeJS | ||
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash | ||
export NVM_DIR="$HOME/.nvm" | ||
sh $NVM_DIR/nvm.sh install --lts | ||
|
||
# Yarn | ||
npm install -g yarn | ||
|
||
# TypeScript | ||
yarn global add typescript | ||
|
||
# Angular | ||
yarn global add @angular/cli | ||
|
||
# Project dependencies | ||
yarn install | ||
|
||
# TALight ( for the server ) | ||
./install_talight.sh | ||
|
||
|
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.