diff --git a/README.md b/README.md index 74d7744..7e3ca40 100644 --- a/README.md +++ b/README.md @@ -55,12 +55,12 @@ Because Jace provides an annotation processor for compilation, there is a chicke JACE will always be free, but it does take considerable time to refine and add new features. If you would like to show your support and encourage the author to keep maintaining this emulator, why not throw him some change to buy him a drink? (The emulator was named for the Jack and Cokes consumed during its inception.) - -* Donate to support JACE! (BTC address: 1TmP94jrEtJNqz7wrCpViA6musGsiTXEq) -* Donate to support JACE! (Paypal) +Donate here to support Jace developement: + -![Airheart](https://lh3.googleusercontent.com/AVWYkQH91Nn_zgHdZge4Kp89eJpdppl9mN5fls2jgJKXNyMYrxkPNRFVYQhnAL4gLxVzz398B6rcOXQCeSjBI7L2WI1M8uEvEK41CdHNkRXec_I-dnTZcRUCbAvHgFMDfA=w1280) -![Color swatches](https://lh6.googleusercontent.com/UJZ6PoPnXf9sTsQHQjSae5F5GR-XKd8pmEzW5NZHRtCNQcjWbm2a1E9UISnr6mC9Ew3_ZKRaU9vHD7CBH7IzEniMQfvADvpmfdzVI16QqS2PAf0uC-yU1m0p3vaorQYI4A=w1280) -![Desktop II](https://lh4.googleusercontent.com/HlnVOLcMjYE9AMwLR70_p00Z79afqoK1wqyGuW8vyh_m-Z197GakHy550RaQa4Xey8I4p0RhT9FDcnJkkWD2TAxX6_sa3yAkmQ6skio47eQ_4qiypDVNmw2Pw3Wefq69yw=w1280) +* BTC address: 1TmP94jrEtJNqz7wrCpViA6musGsiTXEq +* Paypal + + More information here: https://sites.google.com/site/brendanrobert/projects/java-apple-computer-emulator diff --git a/images/airheart.png b/images/airheart.png new file mode 100644 index 0000000..11f4541 Binary files /dev/null and b/images/airheart.png differ diff --git a/images/colors.png b/images/colors.png new file mode 100644 index 0000000..ca9c757 Binary files /dev/null and b/images/colors.png differ diff --git a/images/desktop2.png b/images/desktop2.png new file mode 100644 index 0000000..de971f4 Binary files /dev/null and b/images/desktop2.png differ diff --git a/images/donate.png b/images/donate.png new file mode 100644 index 0000000..22d0473 Binary files /dev/null and b/images/donate.png differ diff --git a/src/main/java/jace/JaceApplication.java b/src/main/java/jace/JaceApplication.java index 4824c74..f615fe0 100644 --- a/src/main/java/jace/JaceApplication.java +++ b/src/main/java/jace/JaceApplication.java @@ -48,8 +48,8 @@ public class JaceApplication extends Application { Scene s = new Scene(node); s.setFill(Color.BLACK); primaryStage.setScene(s); - primaryStage.titleProperty().set("jace"); - Utility.loadIcon("jace_icon.png").ifPresent(icon -> { + primaryStage.titleProperty().set("Jace"); + Utility.loadIcon("app_icon.png").ifPresent(icon -> { primaryStage.getIcons().add(icon); }); } catch (IOException exception) { diff --git a/src/main/resources/jace/data/app_icon.png b/src/main/resources/jace/data/app_icon.png new file mode 100644 index 0000000..f64e5b2 Binary files /dev/null and b/src/main/resources/jace/data/app_icon.png differ