Skip to content

Commit 73d7072

Browse files
authored
Merge pull request #121 from AY1920S1-CS2103T-W12-3/developer-guide
Release v1.3
2 parents bed81dc + 2c1b2db commit 73d7072

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

docs/UserGuide.adoc

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
= PalPay - User Guide
1+
= PalPay - User Guide
22
:site-section: UserGuide
33
:toc:
44
:toc-title:
@@ -89,6 +89,13 @@ Examples:
8989
Adds an expenditure of personal finance +
9090
Format: `out $/AMOUNT n/ITEM [c/CATEGORY]`
9191

92+
****
93+
* `AMOUNT` inputs the value of the expenditure
94+
* `DATE` accepts the date of this transaction
95+
* `CATEGORY` accepts the CATEGORY for this expenditure
96+
* `in` will update the Bank Account with a net **negative** amount (e.g. `out n/milk $/2 d/10102019` will **decrease** Bank Acount balance by $2)
97+
****
98+
9299
Examples:
93100
* `out $/100 n/milk c/food`
94101
* `out $/29 n/taxi c/transport`
@@ -99,6 +106,13 @@ Examples:
99106
Adds an income of personal finance +
100107
Format: `in $/AMOUNT n/ITEM [c/CATEGORY]`
101108

109+
****
110+
* `AMOUNT` inputs the value of the income
111+
* `DATE` accepts the date of this transaction
112+
* `CATEGORY` accepts the CATEGORY for this income
113+
* `in` will update the Bank Account with a net positive amount (e.g. `in n/work $/1000 d/10102019` will **increase** Bank Acount balance by $1000)
114+
****
115+
102116
Examples:
103117
* `in $/100 n/errand c/work`
104118
* `in $/200 n/mom c/family`

src/main/java/seedu/address/MainApp.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*/
3838
public class MainApp extends Application {
3939

40-
public static final Version VERSION = new Version(1, 2, 1, true);
40+
public static final Version VERSION = new Version(1, 3, 0, true);
4141

4242
private static final Logger logger = LogsCenter.getLogger(MainApp.class);
4343

@@ -121,7 +121,7 @@ protected Config initConfig(Path configFilePath) {
121121
initializedConfig = configOptional.orElse(new Config());
122122
} catch (DataConversionException e) {
123123
logger.warning("Config file at " + configFilePathUsed + " is not in the correct format. "
124-
+ "Using default config properties");
124+
+ "Using default config properties");
125125
initializedConfig = new Config();
126126
}
127127

@@ -149,7 +149,7 @@ protected UserPrefs initPrefs(UserPrefsStorage storage) {
149149
initializedPrefs = prefsOptional.orElse(new UserPrefs());
150150
} catch (DataConversionException e) {
151151
logger.warning("UserPrefs file at " + prefsFilePath + " is not in the correct format. "
152-
+ "Using default user prefs");
152+
+ "Using default user prefs");
153153
initializedPrefs = new UserPrefs();
154154
} catch (IOException e) {
155155
logger.warning("Problem while reading from the file. Will be starting with an empty AddressBook");

0 commit comments

Comments
 (0)