Skip to content

Commit

Permalink
Changed version number displayed in preparation for 1.3 milestone 1 r…
Browse files Browse the repository at this point in the history
…elease.
  • Loading branch information
[email protected] committed Jun 14, 2011
1 parent 45730de commit cc52ca1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions picedit/src/com/agifans/picedit/CommonHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ public void mousePressed(MouseEvent e) {
*/
protected void showAboutMessage() {
picGraphics.drawMessageBox(64, 69, 255, 116);
picGraphics.drawString(" PICEDIT 1.2.1 beta 1", 72, 77, 0, 15);
picGraphics.drawString(" PICEDIT 1.3M1 ", 72, 77, 0, 15);
picGraphics.drawString(" by ", 72, 89, 0, 15);
picGraphics.drawString(" Lance Ewing ", 72, 101, 0, 15);
waitForKeyStrokeOrMouseClick(null);
Expand All @@ -316,7 +316,7 @@ private void showHelpPage1() {
graphics.fillRect(0, 0, 640, 400);
graphics.setFont(font);
graphics.setColor(new Color(0xAAAAAA));
graphics.drawString(" PICEDIT v1.2.1", 0, 16);
graphics.drawString(" PICEDIT v1.3M1", 0, 16);
graphics.drawString(" ESC Brings up the menu system. Use arrow keys to select.", 0, 48);
graphics.drawString(" TAB Switch between visual\\priority screens.", 0, 64);
graphics.drawString(" PALETTE", 0, 96);
Expand All @@ -331,9 +331,9 @@ private void showHelpPage1() {
graphics.drawString(" shown in the data box (bottom right corner).", 0, 288);
graphics.drawString(" - The brush tool is set up using the buttons immediately to the right of", 0, 304);
graphics.drawString(" the off button.", 0, 320);
graphics.drawString(" - Right clicking on the picture surface turns the current tool off.", 0, 336);
graphics.drawString(" - Toggle the background option to enable tracing of PCX files (background", 0, 352);
graphics.drawString(" image is included as a command line parameter).", 0, 368);
graphics.drawString(" - Right clicking on the picture surface once stops current tool.", 0, 336);
graphics.drawString(" - Right clicking on the picture surface twice switches tool to None.", 0, 352);
graphics.drawString(" - Use the background image option to enable tracing of PNG, JPG, etc.", 0, 368);

picGraphics.setTextImage(image);
editStatus.setTextMode(true);
Expand All @@ -357,7 +357,7 @@ private void showHelpPage2() {
graphics.fillRect(0, 0, 640, 400);
graphics.setFont(font);
graphics.setColor(new Color(0xAAAAAA));
graphics.drawString(" PICEDIT v1.2.1", 0, 16);
graphics.drawString(" PICEDIT v1.3M1", 0, 16);
graphics.drawString(" SHORTCUT KEYS", 0, 64);
graphics.drawString(" L, l, F1: Activates line tool", 0, 96);
graphics.drawString(" P, p, F2: Activates pen tool", 0, 112);
Expand Down
4 changes: 2 additions & 2 deletions picedit/src/com/agifans/picedit/PicEdit.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public final class PicEdit extends Applet {
/**
* Constant for the name of the current version of PICEDIT.
*/
private static final String PICEDIT_NAME = "PICEDIT v1.2.1";
private static final String PICEDIT_NAME = "PICEDIT v1.3M1";

/**
* The graphics routines with which the application draws the screen.
Expand Down Expand Up @@ -52,7 +52,7 @@ public final class PicEdit extends Applet {
@SuppressWarnings("unchecked")
public PicEdit() {
this.editStatus = new EditStatus();
this.editStatus.setZoomFactor(2);
this.editStatus.setZoomFactor(3);

Dimension appDimension = new Dimension(320 * editStatus.getZoomFactor(), 200 * editStatus.getZoomFactor());
this.setPreferredSize(appDimension);
Expand Down

0 comments on commit cc52ca1

Please sign in to comment.