updated some screenshots

This commit is contained in:
hneemann 2019-02-04 17:11:49 +01:00
parent d7e918e84a
commit a5b22ca2f2
5 changed files with 22 additions and 11 deletions

View File

@ -18,8 +18,8 @@ and on MacOS the JAR file can be started directly.
A [Java Runtime Environment](https://www.java.com/) (at least JRE 8) is required A [Java Runtime Environment](https://www.java.com/) (at least JRE 8) is required
to run Digital. to run Digital.
If there are any problems starting Digital on your system, you should try If there are any problems starting Digital on your system, please try to
running Digital from a command line: run Digital from a command line:
``` ```
java -jar Digital.jar java -jar Digital.jar
@ -245,10 +245,12 @@ If you want to build Digital from the source code:
## Credits ## ## Credits ##
* The verilog code generator and almost all the necessary verilog templates where implemented Many thanks to the following persons for their help:
by Ivan de Jesus Deras Tabora; Universidad Tecnológica Centroamericana; Honduras.
* The Portuguese translation was provided by Theldo Cruz Franqueira; * Ivan de Jesus Deras Tabora from the Universidad Tecnológica Centroamericana in Honduras has
Pontifícia Universidade Católica de Minas Gerais; Brazil. implemented the verilog code generator and almost all the necessary verilog templates.
* Theldo Cruz Franqueira from the Pontifícia Universidade Católica de Minas Gerais in Brazil
has provided the Portuguese translation.
## Additional Screenshots ## Additional Screenshots

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 90 KiB

View File

@ -58,7 +58,7 @@ public class ScreenShots {
} }
private static void all() { private static void all() {
// english // English
Lang.setActualRuntimeLanguage(new Language("en")); Lang.setActualRuntimeLanguage(new Language("en"));
Settings.getInstance().getAttributes() Settings.getInstance().getAttributes()
.set(Keys.SETTINGS_GRID, true) .set(Keys.SETTINGS_GRID, true)
@ -67,12 +67,21 @@ public class ScreenShots {
firstSteps(); firstSteps();
hierarchicalDesign(); hierarchicalDesign();
// german // German
Lang.setActualRuntimeLanguage(new Language("de")); Lang.setActualRuntimeLanguage(new Language("de"));
Settings.getInstance().getAttributes() Settings.getInstance().getAttributes()
.set(Keys.SETTINGS_GRID, true)
.set(Keys.SETTINGS_IEEE_SHAPES, false); .set(Keys.SETTINGS_IEEE_SHAPES, false);
firstSteps(); firstSteps();
hierarchicalDesign(); hierarchicalDesign();
// Portuguese
Lang.setActualRuntimeLanguage(new Language("pt"));
Settings.getInstance().getAttributes()
.set(Keys.SETTINGS_GRID, true)
.set(Keys.SETTINGS_IEEE_SHAPES, true);
firstSteps();
hierarchicalDesign();
} }
private static void mainScreenShot() { private static void mainScreenShot() {
@ -91,7 +100,7 @@ public class ScreenShots {
.add((gt) -> graphic.dispose()) .add((gt) -> graphic.dispose())
.delay(500) .delay(500)
.press("F1") .press("F1")
.add(new MainScreenShot("screenshot.png")) .add(new MainScreenShot("distribution/screenshot.png"))
.execute(); .execute();
new GuiTester() new GuiTester()
.press("F10") .press("F10")
@ -131,7 +140,7 @@ public class ScreenShots {
td.pack(); td.pack();
})) }))
.delay(500) .delay(500)
.add(new MainScreenShot("screenshot2.png")) .add(new MainScreenShot("distribution/screenshot2.png"))
.add(new GuiTester.CloseTopMost()) .add(new GuiTester.CloseTopMost())
.add(new GuiTester.CloseTopMost()) .add(new GuiTester.CloseTopMost())
.add(new GuiTester.CloseTopMost()) .add(new GuiTester.CloseTopMost())
@ -188,7 +197,7 @@ public class ScreenShots {
fsmFrame.setTitle(trafficLight.getName()); fsmFrame.setTitle(trafficLight.getName());
mainStatic.requestFocus(); mainStatic.requestFocus();
})) }))
.add(new MainScreenShot("screenshot3.png")) .add(new MainScreenShot("distribution/screenshot3.png"))
.add(new GuiTester.CloseTopMost()) .add(new GuiTester.CloseTopMost())
.add(new GuiTester.CloseTopMost()) .add(new GuiTester.CloseTopMost())
.add(new GuiTester.CloseTopMost()) .add(new GuiTester.CloseTopMost())

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB