Skip to content

Commit

Permalink
release 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Jan 18, 2020
1 parent 9c167f6 commit 91eaf80
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
![ZX-Poly logo](docs/zxpoly_logo.png)

# Changelog
- __2.0.4 (SNAPSHOT)__
- __2.0.4 (18-jan-2020)__
- added support of beeper (turned off by default)
- added more ROM sources
- fixed ROM loading from WoS
Expand Down
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- __2.0.4 (SNAPSHOT)__
- __2.0.4 (18-jan-2020)__
- added support of beeper (turned off by default)
- added more ROM sources
- fixed ROM loading from WoS
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.0.4-SNAPSHOT</version>
<version>2.0.4</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.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

<description>ZX-Poly emulator</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -966,14 +966,14 @@ public void menuSelected(javax.swing.event.MenuEvent evt) {
menuOptionsTurbo.addActionListener(this::menuOptionsTurboActionPerformed);
menuOptions.add(menuOptionsTurbo);

menuOptionsEnableTrapMouse.setText("Enable trap mouse");
menuOptionsEnableTrapMouse.setText("Trap mouse");
menuOptionsEnableTrapMouse.setToolTipText("Trap mouse as kempston-mouse");
menuOptionsEnableTrapMouse.setIcon(new ImageIcon(getClass().getResource("/com/igormaznitsa/zxpoly/icons/pointer.png"))); // NOI18N
menuOptionsEnableTrapMouse.addActionListener(this::menuOptionsEnableTrapMouseActionPerformed);
menuOptions.add(menuOptionsEnableTrapMouse);

menuOptionsEnableSpeaker.setText("Enable beeper");
menuOptionsEnableSpeaker.setToolTipText("Enable beeper sound");
menuOptionsEnableSpeaker.setText("Beeper");
menuOptionsEnableSpeaker.setToolTipText("Turn on beeper sound");
menuOptionsEnableSpeaker.setIcon(new ImageIcon(getClass().getResource("/com/igormaznitsa/zxpoly/icons/speaker.png"))); // NOI18N
menuOptionsEnableSpeaker.addActionListener(this::menuOptionsEnableSpeakerActionPerformed);
menuOptions.add(menuOptionsEnableSpeaker);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
* Copyright (C) 2014-2020 Igor Maznitsa
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.igormaznitsa.zxpoly.components;

import static com.igormaznitsa.zxpoly.components.VideoController.CYCLES_BETWEEN_INT;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private void initComponents() {
gridBagConstraints.insets = new Insets(8, 8, 0, 0);
getContentPane().add(jLabel3, gridBagConstraints);

spinnerScrRefreshIntTicks.setModel(new SpinnerNumberModel(4, 1, 50, 1));
spinnerScrRefreshIntTicks.setModel(new SpinnerNumberModel(3, 1, 50, 1));
spinnerScrRefreshIntTicks.setToolTipText("INT ticks between refresh screen buffer requests");
gridBagConstraints = new GridBagConstraints();
gridBagConstraints.gridx = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public synchronized void setActiveRom(final String romPath) {
}

public synchronized int getIntBetweenFrames() {
return preferences.getInt(Option.INTBETWEENFRAMES.name(), 5);
return preferences.getInt(Option.INTBETWEENFRAMES.name(), 3);
}

public synchronized void setIntBetweenFrames(final int value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ <h3>Emulated components</h3>
<li>ZX-Spectrum keyboard (<b>SHIFT = CAPS SHIFT</b>, <b>ALT = SYMBOL SHIFT</b>)</li>
<li>Beta-disk interface</li>
<li>Kempston mouse (one click by mouse on the emulator form - trap mouse, ESC - free mouse)</li>
<li>Kempston joystick (emulated by cursor keys of keypad!)</li>
<li>Kempston joystick (emulated by cursor keys of keypad!)</li>
<li>Tape (only reading)</li>
<li>Beeper (by default is turned off, can be enabled through <b>Options->Beeper</b>)</li>
</ol>
</p>
<h3>Keyboard shortcuts</h3>
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.0.4-SNAPSHOT</version>
<version>2.0.4</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 @@ -4,7 +4,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>zxpoly</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

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

0 comments on commit 91eaf80

Please sign in to comment.