Skip to content

Commit

Permalink
Release tutorial (#76)
Browse files Browse the repository at this point in the history
* - 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
3 people authored Feb 26, 2024
1 parent 0a4d81c commit 083a52e
Show file tree
Hide file tree
Showing 53 changed files with 2,216 additions and 15,418 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
/node_modules
npm-debug.log
yarn-error.log
yarn.lock
package-lock.json

# IDEs and editors
.idea/
Expand Down Expand Up @@ -41,4 +43,4 @@ testem.log
.DS_Store
Thumbs.db

/TALight/*
/TALight/*
5 changes: 4 additions & 1 deletion .vscode/extensions.json
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"
]
}
11 changes: 9 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "pwa-chrome",
"name": "ng serve firefox",
"type": "firefox",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng serve chrome",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
Expand Down
1 change: 1 addition & 0 deletions TALight
Submodule TALight added at 25e584
36 changes: 36 additions & 0 deletions install-fedora.sh
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


2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sudo apt install libwebkit2gtk-4.0-dev \
librsvg2-dev

# NodeJS
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
export NVM_DIR="$HOME/.nvm"
sh $NVM_DIR/nvm.sh install --lts

Expand Down
Loading

0 comments on commit 083a52e

Please sign in to comment.