Skip to content

Commit

Permalink
release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Dec 22, 2020
1 parent 6ed137f commit 2a6b06c
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 14 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@

# Changelog

__2.1.2 (SNAPSHOT)__
__2.1.2 (22-dec-2020)__

- added support of flags `GFXLeveledAND`,`GFXLeveledOR` and `GFXLeveledXOR` into Spec256 configuration
- added full-screen mode support, menu item `View -> Full Screen`
- added black-white video filter
- updated dependencies

__2.1.1 (26-sep-2020)__

Expand All @@ -36,7 +37,7 @@ Both the concept and emulator and all its parts are published under [GNU GPL3 li

# Emulator GUI
Keyboard plays role of ZX-Keyboard (ALT = SS, SHIFT = CS, CTRL+WHEEL = scaling), F5 shows ZX-keys on the screen. Numpad plays role of Kempson joystick.
![The Main Window of the Emulator](docs/screenshots/pidentity48.png)
![The Main Window of the Emulator](docs/screenshots/Aliens_Neoplasma_Screenshot.png)

# Supported snapshot formats

Expand All @@ -45,10 +46,11 @@ Keyboard plays role of ZX-Keyboard (ALT = SS, SHIFT = CS, CTRL+WHEEL = scaling),
- Disks: .TRD, .SCL

# Prebuilt versions

The pre-built versions of the emulator and sprite editor can be downloaded
from [the release page](https://github.com/raydac/zxpoly/releases/tag/2.1.1).
from [the release page](https://github.com/raydac/zxpoly/releases/tag/2.1.2).
The emulator is written in Java and its JAR file can be started just through command
line `java -jar zxpoly-emul-2.1.1.jar`
line `java -jar zxpoly-emul-2.1.2.jar`
By default it starts embedded ZX-Poly Test ROM image, but it can be replaced by ZX-128 SOS in **File->Options->Active
ROM**, the ROM will be downloaded from one of remote network resources.
![Test-ROM](docs/screenshots/testromscr1.png)
Expand Down
3 changes: 2 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
__2.1.2 (SNAPSHOT)__
__2.1.2 (22-dec-2020)__
- added support of flags `GFXLeveledAND`,`GFXLeveledOR` and `GFXLeveledXOR` into Spec256 configuration
- added full-screen mode support, menu item `View -> Full Screen`
- added black-white video filter
- updated dependencies

__2.1.1 (26-sep-2020)__
- added support of reading WAV files through TAPE
Expand Down
Binary file added docs/screenshots/Aliens_Neoplasma_Screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions 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.2-SNAPSHOT</version>
<version>2.1.2</version>
<packaging>pom</packaging>

<url>https://github.com/raydac/zxpoly</url>
Expand All @@ -13,7 +13,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<netbeans.hint.license>gpl30</netbeans.hint.license>
<jbbp.version>2.0.1</jbbp.version>
<jbbp.version>2.0.2</jbbp.version>
</properties>

<issueManagement>
Expand Down
10 changes: 5 additions & 5 deletions 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.2-SNAPSHOT</version>
<version>2.1.2</version>
</parent>

<description>ZX-Poly emulator</description>
Expand Down Expand Up @@ -35,22 +35,22 @@
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.6</version>
<version>3.7.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
<version>3.11</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.10</version>
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.19</version>
<version>1.20</version>
</dependency>
<dependency>
<groupId>net.java.jinput</groupId>
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.2-SNAPSHOT</version>
<version>2.1.2</version>
</parent>

<artifactId>zxpoly-sprite-corrector</artifactId>
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.2-SNAPSHOT</version>
<version>2.1.2</version>
</parent>

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

0 comments on commit 2a6b06c

Please sign in to comment.