Skip to content

Commit

Permalink
Merge pull request #42 from IamRENCE/master
Browse files Browse the repository at this point in the history
Minor app look changes and project tidy up
  • Loading branch information
DanKhoo authored Oct 18, 2018
2 parents 91f6801 + 7154a43 commit 4acaab9
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion copyright.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Some code adapted from http://code.makery.ch/library/javafx-8-tutorial/ by Marco Jakob

Copyright by Susumu Yoshida - http://www.mcdodesign.com/
- address_book_32.png
- AddressApp.ico

Copyright by Jan Jan Kovařík - http://glyphicons.com/
Expand Down
Binary file removed docs/images/damithc.jpg
Binary file not shown.
Binary file removed docs/images/lejolly.jpg
Binary file not shown.
Binary file removed docs/images/m133225.jpg
Binary file not shown.
Binary file removed docs/images/yijinl.jpg
Binary file not shown.
Binary file removed docs/images/yl_coder.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/commons/core/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Config {
public static final Path DEFAULT_CONFIG_FILE = Paths.get("config.json");

// Config values customizable through config file
private String appTitle = "Address App";
private String appTitle = "SSENISUB";
private Level logLevel = Level.INFO;
private Path userPrefsFilePath = Paths.get("preferences.json");

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/UiManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class UiManager extends ComponentManager implements Ui {
public static final String FILE_OPS_ERROR_DIALOG_CONTENT_MESSAGE = "Could not save data to file";

private static final Logger logger = LogsCenter.getLogger(UiManager.class);
private static final String ICON_APPLICATION = "/images/address_book_32.png";
private static final String ICON_APPLICATION = "/images/ssenisub.png";

private Logic logic;
private Config config;
Expand Down
Binary file removed src/main/resources/images/address_book_32.png
Binary file not shown.
Binary file added src/main/resources/images/ssenisub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/resources/view/MainWindow.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<fx:root type="javafx.stage.Stage" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
minWidth="450" minHeight="600" onCloseRequest="#handleExit">
<icons>
<Image url="@/images/address_book_32.png" />
<Image url="@/images/ssenisub.png" />
</icons>
<scene>
<Scene>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/address/commons/core/ConfigTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ConfigTest {

@Test
public void toString_defaultObject_stringReturned() {
String defaultConfigAsString = "App title : Address App\n"
String defaultConfigAsString = "App title : SSENISUB\n"
+ "Current log level : INFO\n"
+ "Preference file Location : preferences.json";

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/address/commons/util/AppUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class AppUtilTest {

@Test
public void getImage_exitingImage() {
assertNotNull(AppUtil.getImage("/images/address_book_32.png"));
assertNotNull(AppUtil.getImage("/images/ssenisub.png"));
}


Expand Down

0 comments on commit 4acaab9

Please sign in to comment.