Skip to content

Commit fefe433

Browse files
authored
Merge pull request #200 from fryntiz/dev
Versión 0.8.9
2 parents 6c4f4f6 + 32956e5 commit fefe433

File tree

217 files changed

+2200
-559
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

217 files changed

+2200
-559
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ npm-debug.log
4444
.ropeproject
4545
__pycache__
4646
/.env
47+
__init__.py

Apps/0_Main.sh

+6-8
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##
@@ -50,7 +50,7 @@ source "$WORKSCRIPT/Apps/IDEs/0_Main.sh"
5050
##
5151
menuAplicaciones() {
5252
todas_aplicaciones() {
53-
clear
53+
clear_screen
5454
echo -e "$VE Instalando todas las aplicaciones$CL"
5555
aplicaciones_basicas
5656
aplicaciones_firmware
@@ -65,16 +65,14 @@ menuAplicaciones() {
6565
aplicaciones_sonido
6666
aplicaciones_video
6767
aplicaciones_virtualizacion
68-
69-
menuPaquetes -a
7068
}
7169

7270
## Si la función recibe "-a" indica que ejecute todas las aplicaciones
7371
if [[ "$1" = '-a' ]]; then
7472
todas_aplicaciones
7573
else
7674
while true :; do
77-
clear
75+
clear_screen
7876
local descripcion='Menú de aplicaciones
7977
1) Aplicaciones Básicas
8078
2) Firmware
@@ -128,7 +126,7 @@ menuAplicaciones() {
128126
break;;
129127

130128
0) ## SALIR
131-
clear
129+
clear_screen
132130
echo -e "$RO Se sale del menú$CL"
133131
echo ''
134132
break;;

Apps/1_Aplicaciones_Basicas.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
##
1212
## Guía de estilos aplicada:
13-
## @style https://github.com/fryntiz/Bash_Style_Guide
13+
## @style https://github.com/fryntiz/bash-guide-style
1414

1515
############################
1616
## INSTRUCCIONES ##

Apps/2_Aplicaciones_Extras.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
##
1212
## Guía de estilos aplicada:
13-
## @style https://github.com/fryntiz/Bash_Style_Guide
13+
## @style https://github.com/fryntiz/bash-guide-style
1414

1515
############################
1616
## INSTRUCCIONES ##
@@ -47,7 +47,7 @@ aplicaciones_extras() {
4747
instalar_todas_aplicaciones_extras
4848
else
4949
while true :; do
50-
clear
50+
clear_screen
5151
local descripcion='Menú de aplicaciones
5252
1) DBeaver
5353
2) GitKraken
@@ -76,7 +76,7 @@ aplicaciones_extras() {
7676
7) instalar_todas_aplicaciones_extras; break;;
7777

7878
0) ## SALIR
79-
clear
79+
clear_screen
8080
echo -e "$RO Se sale del menú$CL"
8181
echo ''
8282
break;;

Apps/3_Aplicaciones_Usuario.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
##
1212
## Guía de estilos aplicada:
13-
## @style https://github.com/fryntiz/Bash_Style_Guide
13+
## @style https://github.com/fryntiz/bash-guide-style
1414

1515
############################
1616
## INSTRUCCIONES ##

Apps/DBeaver.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/Firefox.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/Geany.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2018 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
7+
## @email dev@fryntiz.es
88
## @web http://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/GitKraken.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/Haroopad.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/IDEs/0_Main.sh

+10-7
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##
@@ -30,6 +30,7 @@ source "$WORKSCRIPT/Apps/IDEs/webstorm.sh"
3030
source "$WORKSCRIPT/Apps/IDEs/netbeans.sh"
3131
source "$WORKSCRIPT/Apps/IDEs/aptanastudio.sh"
3232
source "$WORKSCRIPT/Apps/IDEs/Arduino.sh"
33+
source "$WORKSCRIPT/Apps/IDEs/android_studio.sh"
3334

3435
############################
3536
## FUNCIONES ##
@@ -40,21 +41,22 @@ source "$WORKSCRIPT/Apps/IDEs/Arduino.sh"
4041
##
4142
menuIDES() {
4243
todos_IDES() {
43-
clear
44+
clear_screen
4445
echo -e "$VE Instalando todos los IDES$CL"
4546
atom_instalador
4647
brackets_instalador
4748
phpstorm_instalador
4849
ninjaide_instalador
4950
pycharm_pro_instalador
51+
android_studio
5052
}
5153

5254
## Si la función recibe "-a" indica que se instalen todos los IDES
5355
if [[ "$1" = '-a' ]]; then
5456
todos_IDES
5557
else
5658
while true :; do
57-
clear
59+
clear_screen
5860
local descripcion='Menú de aplicaciones
5961
1) Atom
6062
2) Brackets
@@ -63,7 +65,7 @@ menuIDES() {
6365
5) PyCharm Comunidad (No implementado)
6466
6) Ninja IDE
6567
7) NetBeans (No implementado)
66-
8) Aptana Studio (No implementado)
68+
8) Android Studio (Experimental)
6769
9) Web Storm
6870
10) Arduino
6971
11) Todos los pasos anteriores
@@ -84,13 +86,14 @@ menuIDES() {
8486
4) pycharm_pro_instalador;; ## Instala Pycharm Profesional
8587
#5) ;; ##
8688
6) ninjaide_instalador;; ## Instala Ninja IDE
89+
8) android_instalador; android_studio_instalador;; ##
8790
9) webstorm_instalador;; ##
8891
10) arduino_instalador;; ##
8992
11) todos_IDES ## Todos los IDES
9093
break;;
9194

9295
0) ## SALIR
93-
clear
96+
clear_screen
9497
echo -e "$RO Se sale del menú$CL"
9598
echo ''
9699
break;;

Apps/IDEs/Arduino.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2018 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/IDEs/Atom_IDE.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/IDEs/Brackets.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

Apps/IDEs/Ninja-IDE.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
## @author Raúl Caro Pastorino
55
## @copyright Copyright © 2017 Raúl Caro Pastorino
66
## @license https://wwww.gnu.org/licenses/gpl.txt
7-
## @email tecnico@fryntiz.es
8-
## @web www.fryntiz.es
7+
## @email dev@fryntiz.es
8+
## @web https://fryntiz.es
99
## @github https://github.com/fryntiz
1010
## @gitlab https://gitlab.com/fryntiz
1111
## @twitter https://twitter.com/fryntiz
1212
##
1313
## Guía de estilos aplicada:
14-
## @style https://github.com/fryntiz/Bash_Style_Guide
14+
## @style https://github.com/fryntiz/bash-guide-style
1515

1616
############################
1717
## INSTRUCCIONES ##

0 commit comments

Comments
 (0)