File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed
src/main/java/seedu/address Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
- = PalPay - User Guide
1
+ = PalPay - User Guide
2
2
:site-section: UserGuide
3
3
:toc:
4
4
:toc-title:
@@ -89,6 +89,13 @@ Examples:
89
89
Adds an expenditure of personal finance +
90
90
Format: `out $/AMOUNT n/ITEM [c/CATEGORY]`
91
91
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
+
92
99
Examples:
93
100
* `out $/100 n/milk c/food`
94
101
* `out $/29 n/taxi c/transport`
@@ -99,6 +106,13 @@ Examples:
99
106
Adds an income of personal finance +
100
107
Format: `in $/AMOUNT n/ITEM [c/CATEGORY]`
101
108
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
+
102
116
Examples:
103
117
* `in $/100 n/errand c/work`
104
118
* `in $/200 n/mom c/family`
Original file line number Diff line number Diff line change 37
37
*/
38
38
public class MainApp extends Application {
39
39
40
- public static final Version VERSION = new Version (1 , 2 , 1 , true );
40
+ public static final Version VERSION = new Version (1 , 3 , 0 , true );
41
41
42
42
private static final Logger logger = LogsCenter .getLogger (MainApp .class );
43
43
@@ -121,7 +121,7 @@ protected Config initConfig(Path configFilePath) {
121
121
initializedConfig = configOptional .orElse (new Config ());
122
122
} catch (DataConversionException e ) {
123
123
logger .warning ("Config file at " + configFilePathUsed + " is not in the correct format. "
124
- + "Using default config properties" );
124
+ + "Using default config properties" );
125
125
initializedConfig = new Config ();
126
126
}
127
127
@@ -149,7 +149,7 @@ protected UserPrefs initPrefs(UserPrefsStorage storage) {
149
149
initializedPrefs = prefsOptional .orElse (new UserPrefs ());
150
150
} catch (DataConversionException e ) {
151
151
logger .warning ("UserPrefs file at " + prefsFilePath + " is not in the correct format. "
152
- + "Using default user prefs" );
152
+ + "Using default user prefs" );
153
153
initializedPrefs = new UserPrefs ();
154
154
} catch (IOException e ) {
155
155
logger .warning ("Problem while reading from the file. Will be starting with an empty AddressBook" );
You can’t perform that action at this time.
0 commit comments