Skip to content

Commit

Permalink
Novos links para versão
Browse files Browse the repository at this point in the history
  • Loading branch information
AdsonEsteves committed Nov 27, 2020
1 parent baffee2 commit 39942b7
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 23 deletions.
14 changes: 7 additions & 7 deletions docs/version.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
var versionInfo = {
"links": {
"windows": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.4-windows.exe",
"osx": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.4-osx.dmg",
"linux": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.4-linux.run.zip",
"linux_x64": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.4-linux-x64.run.zip",
"others": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/tag/v2.7.4"
"windows": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.5-windows.exe",
"osx": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.5-osx.dmg",
"linux": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.5-linux.run.zip",
"linux_x64": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/download/v2.7.4/portugol-studio-2.7.5-linux-x64.run.zip",
"others": "https://github.com/UNIVALI-LITE/Portugol-Studio/releases/tag/v2.7.5"
},
"versionString": "2.7.4",
"releaseDate": 1563571770181
"versionString": "2.7.5",
"releaseDate": 1606436483088
}
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,8 @@ private void carregaImagens() {
}

private void abreLinkCursoAtual() {
if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) {
Curso curso = cursos.get(cursoAtual);
try {
Desktop.getDesktop().browse(new URI(curso.getLink()));
} catch (Exception ex) {
ex.printStackTrace();
}
}
Curso curso = cursos.get(cursoAtual);
WebConnectionUtils.abrirSite(curso.getLink());
}

private void mostraCursoAnterior() throws IOException {
Expand Down
8 changes: 4 additions & 4 deletions ide/src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
majorVersion=2
buildVersion=4
buildVersion=5
mavenGroupId=br.univali.portugol
releaseName=
buildDate=1606436483088
majorVersion=2
minorVersion=7
buildDate=1563571770181
mavenGroupId=br.univali.portugol
8 changes: 4 additions & 4 deletions installer/arquivos/linux/package/leia.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ $ cd /home/pedro/Downloads.
Logo ap�s, digite os comandos abaixo em sequ�ncia (sem o $):


$ chmod 755 portugol-studio-2.7.4.run
$ chmod 755 portugol-studio-2.7.5.run

ou caso seu linux seja 64 bits:

$ chmod 755 portugol-studio-2.7.4-x64.run
$ chmod 755 portugol-studio-2.7.5-x64.run


Feito isso, execute o progama de instala��o digitando o comando abaixo:


$ sudo ./portugol-studio-2.7.4.run
$ sudo ./portugol-studio-2.7.5.run

ou caso seu linux seja 64 bits:

$ sudo ./portugol-studio-2.7.4-x64.run
$ sudo ./portugol-studio-2.7.5-x64.run


Note que existe um ponto "." e uma barra "/" antes do nome do arquivo. Estes
Expand Down

0 comments on commit 39942b7

Please sign in to comment.