Skip to content

Commit 1ef3542

Browse files
authored
Merge pull request #110 from fryntiz/dev
Nueva versión v0.5.3
2 parents 0a23fb8 + 87ebc8c commit 1ef3542

File tree

18 files changed

+804
-462
lines changed

18 files changed

+804
-462
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ errores.log
3737
/conf/home/.vim/spec
3838
/conf/home/.vim/syntax_checkers
3939
/conf/home/.vim/test
40+
/.idea

Accesos_Directos/brackets.desktop

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[Desktop Entry]
2+
Name=Brackets
3+
Type=Application
4+
Categories=Development
5+
Exec=/opt/brackets/brackets %U
6+
Icon=brackets
7+
MimeType=text/html;
8+
Keywords=Text;Editor;Write;Web;Development;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<VirtualHost *:80>
2+
ServerName localhost
23
ServerAdmin tecnico@fryntiz.es
34
DocumentRoot /var/www/html
45
ErrorLog ${APACHE_LOG_DIR}/error.log
@@ -7,6 +8,5 @@
78

89

910
#Algunas directivas útiles:
10-
ServerName localhost
1111
#ServerAlias localhost.local
1212
#ServerAlias www.localhost.local
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
<VirtualHost privado.local:80>
1+
<VirtualHost *:80>
2+
ServerName privado.local
23
ServerAdmin tecnico@fryntiz.es
34
DocumentRoot /var/www/html/Privado
45
ErrorLog ${APACHE_LOG_DIR}/error.log
56
CustomLog ${APACHE_LOG_DIR}/access.log combined
67
<Directory /var/www/html/Privado/>
7-
AllowOverride All
8+
AllowOverride All
89
</Directory>
910
</VirtualHost>
1011

11-
1212
#Algunas directivas útiles:
13-
ServerName privado.local
1413
#ServerAlias privado.local
1514
#ServerAlias www.privado.local
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<VirtualHost publico.local:80>
1+
<VirtualHost *:80>
2+
ServerName publico.local
23
ServerAdmin tecnico@fryntiz.es
34
DocumentRoot /var/www/html/Publico
45
ErrorLog ${APACHE_LOG_DIR}/error.log
@@ -7,6 +8,5 @@
78

89

910
#Algunas directivas útiles:
10-
ServerName publico.local
1111
#ServerAlias localhost.local
1212
#ServerAlias www.localhost.local

Apps/Brackets.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
###########################
2727

2828
brackets_descargar() {
29-
descargar 'Brackets.deb' "https://github.com/adobe/brackets/releases/download/release-1.10/Brackets.Release.1.10.64-bit.deb"
29+
descargar 'Brackets.deb' "https://github.com/adobe/brackets/releases/download/release-1.12/Brackets.Release.1.12.64-bit.deb"
3030

3131
descargar 'libgcrypt.deb' "http://security.debian.org/debian-security/pool/updates/main/libg/libgcrypt11/libgcrypt11_1.5.0-5+deb7u6_amd64.deb"
3232
}
@@ -45,6 +45,9 @@ brackets_instalar() {
4545

4646
brackets_postconfiguracion() {
4747
echo -e "$VE Generando Post-Configuraciones$RO Brackets$CL"
48+
49+
echo -e "$VE Generando acceso directo$CL"
50+
cp "$WORKSCRIPT/Accesos_Directos/brackets.desktop" "$HOME/.local/share/applications/"
4851
}
4952

5053
brackets_instalador() {

0 commit comments

Comments
 (0)