Skip to content

Commit

Permalink
PlantUML Gantt with all project with svg and pdf generator.
Browse files Browse the repository at this point in the history
Add table with dependencies info in about
Fix directive button async await
Refactor view in shared components.
Change console.log() to console.debug()
More translations
  • Loading branch information
nonodev96 committed Apr 14, 2022
1 parent f8de3f8 commit df914a1
Show file tree
Hide file tree
Showing 40 changed files with 1,584 additions and 181 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
root = true

[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 2
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
## <small>1.3.9 (2022-03-31)</small>

* fix files in file system storage (delete item) ([86b65fa](https://github.com/nonodev96/THUMDER/commit/86b65fa))
* Refactor in all firebase method with new modular functions and providers for electron. ([f8de3f8](https://github.com/nonodev96/THUMDER/commit/f8de3f8))
* update wiki and multiview drag and drop ([6d42941](https://github.com/nonodev96/THUMDER/commit/6d42941))



## <small>1.3.8 (2022-03-09)</small>

* Add submodule wiki ([7d7a041](https://github.com/nonodev96/THUMDER/commit/7d7a041))
* Add submodul wiki ([7d7a041](https://github.com/nonodev96/THUMDER/commit/7d7a041))
* CHANGELOG ([f04025e](https://github.com/nonodev96/THUMDER/commit/f04025e))
* Deleted submodule wiki ([41b6bb9](https://github.com/nonodev96/THUMDER/commit/41b6bb9))
* fix karma version ([ee905d3](https://github.com/nonodev96/THUMDER/commit/ee905d3))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ THUMDER
=======

<center>
<img src="./src/assets/icons/favicon.256x256.png" alt="ICON" width="10%" height="10%"/>
<img src="./assets/favicon.256x256.png" alt="ICON" width="10%" height="10%"/>
</center>

<center>
Expand Down
46 changes: 46 additions & 0 deletions UML/0.Project/0.0.Config.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
@startuml(id=Config)
'https://plantuml.com/es/gantt-diagram
!theme plain

'page 2x2
skinparam defaultFontName consolas
skinparam minClassWidth 100
skinparam conditionStyle inside

'printscale daily zoom 2
saturday are closed and are colored in pink
sunday are closed and are colored in pink
@enduml


'2021-08-01 to 2021-08-05 are named [Holidays]
'2021-08-01 to 2021-08-05 are colored in lime


''XL+M+L => 6+2+4 = 12 días
'then [UML Gestión cuentas] lasts 4 days
''L+L+L => 4+4+4 = 12 días
'then [UML Gestión ficheros] lasts 4 days
''M+M+M+L+L+XL => 2+2+2+4+4+6 = 20 días
'then [UML Editor de ficheros] lasts 7 days
''XL+XL+M+M+M+L+L => 6+6+2+2+2+4+4 = 26 días
'then [UML Simulación] lasts 9 days
''M+S+S+S+S+S+S+S+L+XL => 2+1+1+1+1+1+1+1+4+6 = 19 días
'then [UML Configuración] lasts 6 days
'
''M => 2 = 2 días
'then [UML Componente Calculadora] lasts 1 days
''M+XXL => 2+10 = 12 días
'then [UML Componente Memoria] lasts 4 days
''L => 6 = 6 días
'then [UML Componente Código] lasts 2 days
''S+S+M+L+M+M+L+XL => 1+1+2+4+2+2+4+6 = 22 días
'then [UML Componente Registros] lasts 7 days
''XL => 6 = 6 días
'then [UML Componente Pipeline] lasts 2 days
''XL+L+L => 6+4+4 = 14 días
'then [UML Componente Cycle Clock] lasts 5 days
''XL+L+L => 6+4+4 = 14 días
'then [UML Componente Cycle Clock] lasts 5 days
''L+M+L+L+L+XL+L => 4+2+4+4+4+6+4 = 28 días
'then [UML Servidor de pruebas] lasts 9 days
20 changes: 20 additions & 0 deletions UML/0.Project/0.0.Gantt-2021-08.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@startgantt
!include ./0.0.Config.puml!Config

Project starts the 1st of November 2021

-- Planteamiento del proyecto --

-- Desarrollo de los prototipos --

-- Análisis y Diseño--

-- Implementación --

-- Pruebas --

-- Entregas --

-- Reuniones --

@endgantt
33 changes: 33 additions & 0 deletions UML/0.Project/0.0.Gantt-2021-09.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@startgantt
!include ./0.0.Config.puml!Config

Project starts the 1st of September 2021


-- Planteamiento del proyecto --

[Desarrollar la planificación] starts 2021-09-01 and lasts 4 days
[Gantt] lasts 5 days and starts 4 days before [Desarrollar la planificación]'s end

-- Desarrollo de los prototipos --

[Mockups] lasts 3 days and starts 0 days before [Gantt]'s end
[Wireframes] lasts 5 days and starts 0 days before [Mockups]'s end

note bottom
Generar una versión de prueba
con los diseños y prototipos
end note


[Story Case] lasts 5 days and starts 0 days before [Wireframes]'s end
then [Story Case] lasts 3 days
then [State Diagram] lasts 4 days


-- Reuniones --

[1ª Reunión] starts 2021-09-01


@endgantt
26 changes: 26 additions & 0 deletions UML/0.Project/0.0.Gantt-2021-10.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
@startgantt
!include ./0.0.Config.puml!Config

Project starts the 1st of October 2021


-- Desarrollo de los prototipos --

[Presentación análisis] lasts 1 days and starts at 2021/10/01
then [UML - Proyecto plantilla] lasts 3 days
then [Proyecto plantilla] lasts 5 days
then [Proyecto plantilla - Frameworks] lasts 6 days
then [Proyecto plantilla - Tests] lasts 4 days
[Proyecto plantilla - CI] lasts 3 days and starts 0 days before [Proyecto plantilla - Tests]'s end
[Pre release v1.0.0] happens at [Proyecto plantilla - CI]'s end


2021/10/01 to 2021/10/31 are colored in orange and are named [Sprint Init]
2021/11/01 to 2021/11/06 are colored in lightblue and are named [Sprint 1]

-- Reuniones --

[2ª Reunión] starts 2021-10-01


@endgantt
35 changes: 35 additions & 0 deletions UML/0.Project/0.0.Gantt-2021-11.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@startgantt
!include ./0.0.Config.puml!Config
'November
Project starts the 29 of October 2021


-- Análisis, Diseño e Implementación--

[Pre release v1.0.0] happens 2021/10/29

'XL+M+L => 4+2+3 = 9 días
[UML - Manager accounts] lasts 5 days and starts 0 days before [Pre release v1.0.0]'s end
[Servicio - Manager accounts] lasts 10 days and starts 0 days after [UML - Manager accounts]'s end
[Tests - Manager accounts] lasts 3 days and starts 5 days after [Servicio - Manager accounts]'s end

'L+L+L => 3+3+3 = 9 días
[UML - Manager files] lasts 5 days and starts 0 days before [Pre release v1.0.0]'s end
[Component-view Manager files] lasts 13 days and starts 0 days after [UML - Manager accounts]'s end
[Tests - Manager files] lasts 4 days and starts 0 days after [Component-view Manager files]'s end

[Pre release v1.1.0] happens at [Tests - Manager accounts]'s end
[Pre release v1.1.0] happens at [Tests - Manager files]'s end


-- Reuniones --

[3ª Reunión] happens 0 days after [Pre release v1.0.0]'s end
[4ª Reunión] happens 0 days after [Pre release v1.1.0]'s end


2021/11/01 to 2021/11/14 are colored in lightblue and are named [Sprint 1]
2021/11/15 to 2021/11/30 are colored in lightgreen and are named [Sprint 2]
2021/12/01 to 2021/12/05 are colored in lightblue and are named [Sprint 3]

@endgantt
38 changes: 38 additions & 0 deletions UML/0.Project/0.0.Gantt-2021-12.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
@startgantt
!include ./0.0.Config.puml!Config
'December
Project starts 30 29 of November 2021

-- Análisis, Diseño e Implementación--

[Pre release v1.1.0] happens 2021/11/30


'M+S+S+S+S+S+S+S+L+XL => 2+1+1+1+1+1+1+1+3+4 = 16 días
[UML - Config] lasts 2 days and starts 0 days before [Pre release v1.1.0]'s end
then [Component-view Config] lasts 6 days
then [Tests - Config] lasts 2 days

'M+M+M+L+L+XL => 2+2+2+3+3+4 = 16 días
[UML - Editor of files] lasts 2 days and starts 0 days before [Pre release v1.1.0]'s end
[Component-view Editor of files] lasts 5 days and starts 0 days after [UML - Config]'s end
[Tests - Editor of files] lasts 2 days and starts 0 days after [Component-view Config]'s end

[Pre release v1.2.0] happens at 0 day after [Tests - Config]'s end
[Pre release v1.2.0] happens at 0 day after [Tests - Editor of files]'s end



-- Reuniones --

[4ª Reunión] happens 0 days after [Pre release v1.1.0]'s end
[5ª Reunión] happens 0 days after [Pre release v1.2.0]'s end


2021/12/01 to 2021/12/14 are colored in lightblue and are named [Sprint 3]
2021/12/15 to 2021/12/31 are closed
2021/12/15 to 2021/12/31 are named [Holidays]
2021/12/15 to 2022/01/01 are colored salmon
'2021/12/15 to 2022/01/14 are colored in lightgreen and are named [Sprint 3]

@endgantt
35 changes: 35 additions & 0 deletions UML/0.Project/0.0.Gantt-2022-01.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@startgantt
!include ./0.0.Config.puml!Config

Project starts the 14 of December 2021

-- Análisis, Diseño e Implementación--

[Pre release v1.2.0] happens 2021/12/14


'S+S+M+L+M+M+L+XL => 1+1+2+3+2+2+3+4 = 18 días
[UML - Manager Registers] lasts 5 days and starts 0 days after [Pre release v1.2.0]'s end
[Component-view Registers] lasts 10 days and starts 17 days after [UML - Manager Registers]'s end
[Tests - Manager Registers] lasts 5 days and starts 0 days after [Component-view Registers]'s end

'M+XXL => 2+6 = 8 días
[UML - Manager Memory] lasts 5 days and starts 0 days after [Pre release v1.2.0]'s end
[Component-view Memory] lasts 11 days and starts 17 days after [UML - Manager Memory]'s end
[Tests - Manager Memory] lasts 5 days and starts 0 days after [Component-view Memory]'s end

[Pre release v1.3.0] happens at 0 day after [Tests - Manager Registers]'s end
[Pre release v1.3.0] happens at 0 day after [Tests - Manager Memory]'s end


-- Reuniones --

[5ª Reunión] happens 0 days after [Pre release v1.2.0]'s end
[6ª Reunión] happens 0 days after [Pre release v1.3.0]'s end

2021/12/15 to 2021/12/31 are closed
2021/12/15 to 2021/12/31 are named [Holidays]
2022/01/01 to 2022/01/14 are colored in lightblue and are named [Sprint 4]
2022/01/15 to 2022/01/31 are colored in lightgreen and are named [Sprint 5]

@endgantt
33 changes: 33 additions & 0 deletions UML/0.Project/0.0.Gantt-2022-02.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@startgantt
!include ./0.0.Config.puml!Config

Project starts the 31 of January 2022


-- Análisis, Diseño e Implementación--

[Pre release v1.3.0] happens 2021/01/31

'XL+L+L => 4+3+3 = 10 días
[UML - Component Cycle Clock] lasts 4 days and starts 0 days after [Pre release v1.3.0]'s end
then [Component-view Cycle Clock] lasts 13 days
then [Tests - Component Cycle Clock] lasts 3 days

'XL => 4 = 4 días
[UML - Component Pipeline] lasts 2 days and starts 0 days after [Pre release v1.3.0]'s end
[Component-view Pipeline] lasts 10 days and starts 0 days before [UML - Component Cycle Clock]'s end
[Tests - Component Pipeline] lasts 3 days and starts 0 days after [Component-view Cycle Clock]'s end

[Pre release v1.4.0] happens at 0 days after [Tests - Component Cycle Clock]'s end
[Pre release v1.4.0] happens at 0 days after [Tests - Component Pipeline]'s end


-- Reuniones --

[6ª Reunión] happens 0 days after [Pre release v1.3.0]'s end
[7ª Reunión] happens 0 days after [Pre release v1.4.0]'s end

2022/02/01 to 2022/02/14 are colored in lightblue and are named [Sprint 6]
2022/02/15 to 2022/02/28 are colored in lightgreen and are named [Sprint 7]

@endgantt
52 changes: 52 additions & 0 deletions UML/0.Project/0.0.Gantt-2022-03.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
@startgantt
!include ./0.0.Config.puml!Config

Project starts the 28 of February 2022


-- Análisis, Diseño e Implementación--

[Pre release v1.4.0] happens 2022/01/31

' Statistics TODO
[UML - Component Statistics] lasts 1 days and starts 1 days after [Pre release v1.4.0]'s end
then [Component-view Statistics] lasts 6 days
then [Tests - Component Statistics] lasts 2 days

'L => 4 = 4 días
[UML - Component Código] lasts 2 days and starts 0 days before [Pre release v1.4.0]'s end
[Component-view Código] lasts 5 days and starts 0 days after [UML - Component Statistics]'s end
[Tests - Component Código] lasts 2 days and starts 0 days after [Component-view Statistics]'s end


[Pre release v1.5.0] happens at 0 days after [Tests - Component Código]'s end
[Pre release v1.5.0] happens at 0 days after [Tests - Component Statistics]'s end


' Multiview TODO
[UML - Component Multiview] lasts 2 days and starts 0 days before [Pre release v1.5.0]'s end
[Component-view Multiview] lasts 8 days and starts 0 days after [UML - Component Multiview]'s end
[Tests - Component Multiview] lasts 3 days and starts 0 days after [Component-view Multiview]'s end

'M => 2 = 2 días
[UML - Component Calculator] lasts 1 days and starts 0 days before [Pre release v1.5.0]'s end
[Component-view Calculator] lasts 3 days and starts 0 days after [UML - Component Multiview]'s end
[Tests - Component Calculator] lasts 1 days and starts 0 days after [Component-view Multiview]'s end


[Pre release v1.6.0] happens at 0 days after [Tests - Component Multiview]'s end
[Pre release v1.6.0] happens at 0 days after [Tests - Component Calculator]'s end


-- Reuniones --

[7ª Reunión] happens 0 days after [Pre release v1.4.0]'s end
[8ª Reunión] happens 0 days after [Pre release v1.5.0]'s end
[9ª Reunión] happens 0 days after [Pre release v1.6.0]'s end


2022/03/01 to 2022/03/14 are colored in lightblue and are named [Sprint 8]
2022/03/15 to 2022/04/02 are colored in lightgreen and are named [Sprint 9]
2022/04/01 to 2022/04/04 are colored in lightblue and are named [Sprint 10]

@endgantt
36 changes: 36 additions & 0 deletions UML/0.Project/0.0.Gantt-2022-04.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@startgantt
!include ./0.0.Config.puml!Config
'April
Project starts the 31st of March 2022



[Pre release v1.6.0] happens 2022/03/31



' About TODO
[UML - Component Documentation] lasts 3 days and starts 0 days before [Pre release v1.6.0]'s end
then [Component-view Documentation] lasts 6 days
then [Tests - Component Documentation] lasts 1 days

' Documentation TODO
[UML - Component About] lasts 2 days and starts 0 days before [Pre release v1.6.0]'s end
[Component-view About] lasts 5 days and starts 0 days after [UML - Component Documentation]'s end
[Tests - Component About] lasts 1 days and starts 0 days after [Component-view Documentation]'s end


[Pre release v1.7.0] happens at 0 days after [Tests - Component Documentation]'s end
[Pre release v1.7.0] happens at 0 days after [Tests - Component About]'s end


-- Reuniones --

[9ª Reunión] happens 0 days after [Pre release v1.6.0]'s end
[10ª Reunión] happens 0 days after [Pre release v1.7.0]'s end


2022/04/01 to 2022/04/14 are colored in lightblue and are named [Sprint 10]
2022/04/15 to 2022/04/30 are colored in lightgreen and are named [Sprint 11]

@endgantt
Loading

0 comments on commit df914a1

Please sign in to comment.