Skip to content

Commit

Permalink
release 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Sep 26, 2020
1 parent eb4a2da commit a4db24e
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 13 deletions.
23 changes: 15 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@

# Changelog

__2.1.1 (26-sep-2020)__

- added support of reading WAV files through TAPE
- improved Z80 emulation
- refactoring

__2.1.0 (12-sep-2020)__
- improved internal timing
- base sound synthesizer frequency increased to 48000 Hz
- added item `Kempston mouse allowed` into `Preferences`, by default active
- added item `Default ZX128` into `Preferences` to activate ZXMode just on start of the emulator
- __improved decode of `#7FFD` port in ZX-mode to increase compatibility__
- added support of loading ROM from local `bootstrap.rom` file placed in emulator folder
- __added support of TurboSound (NedoPC version)__
- embedded GraalVM updated to 20.2.0

- improved internal timing
- base sound synthesizer frequency increased to 48000 Hz
- added item `Kempston mouse allowed` into `Preferences`, by default active
- added item `Default ZX128` into `Preferences` to activate ZXMode just on start of the emulator
- __improved decode of `#7FFD` port in ZX-mode to increase compatibility__
- added support of loading ROM from local `bootstrap.rom` file placed in emulator folder
- __added support of TurboSound (NedoPC version)__
- embedded GraalVM updated to 20.2.0
- __improved Z80 emulation__
- __improved emulation of AY8910__
- improved decoding of AY8910 port
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__2.1.1 (26-sep-2020)__
- added support of reading WAV files through TAPE
- improved Z80 emulation
- refactoring

__2.1.0 (12-sep-2020)__
- improved internal timing
- base sound synthesizer frequency increased to 48000 Hz
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.igormaznitsa</groupId>
<artifactId>zxpoly</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>
<packaging>pom</packaging>

<url>https://github.com/raydac/zxpoly</url>
Expand Down
2 changes: 1 addition & 1 deletion zxpoly-emul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>zxpoly</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>
</parent>

<description>ZX-Poly emulator</description>
Expand Down
2 changes: 1 addition & 1 deletion zxpoly-sprite-corrector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>zxpoly</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>
</parent>

<artifactId>zxpoly-sprite-corrector</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public AboutDialog(final JFrame parent) {
super(parent, true);
initComponents();

this.infoText.setText(this.infoText.getText().replace("${project.version}", "2.1.0"));
this.infoText.setText(this.infoText.getText().replace("${project.version}", "2.1.1"));

this.setLocationRelativeTo(null);
}
Expand Down
2 changes: 1 addition & 1 deletion zxpoly-z80/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>zxpoly</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>
</parent>

<artifactId>zxpoly-z80</artifactId>
Expand Down

0 comments on commit a4db24e

Please sign in to comment.