forked from NimbleOak/growlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow-to.html
418 lines (372 loc) · 18.5 KB
/
how-to.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
---
---
<!DOCTYPE html>
<html lang="en">
<title>How to use the Growlog.</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Lato", sans-serif
}
.w3-bar,
h1,
button {
font-family: "Montserrat", sans-serif
}
.fa-anchor,
.fa-coffee {
font-size: 200px
}
</style>
<body>
{% include navbar.html %}
<div class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<h1 id="how-to-use-the-growlog">How to use the Growlog</h1>
<h3><a href="#add-a-new-plant">Add a new plant</a></h3>
<h3><a href="#edit-name-and-photo-of-a-plant">Edit name and photo of a plant</a></h3>
<h3><a href="#delete-a-plant">Delete a plant</a></h3>
<h3><a href="#add-a-plant-action">Add a plant action</a></h3>
<h3><a href="#edit-a-plant-action-name">Edit a plant action name</a></h3>
<h3><a href="#delete-a-plant-action">Delete a plant action</a></h3>
<h3><a href="#record-a-plant-action">Record a plant action</a></h3>
<h3><a href="#edit-date-and-time-of-an-action">Edit date and time of an action</a></h3>
<h3><a href="#add-note-for-a-plant">Add a note for a plant</a></h3>
<h3><a href="#set-reminder-for-an-action">Set reminder for an action</a></h3>
<h3><a href="#postpone-a-reminder">Postpone a reminder</a></h3>
<h3><a href="#disable-reminder-for-an-action">Disable reminder for an action</a></h3>
<h3><a href="#enable-notification-for-reminders">Enable notification for reminders</a></h3>
<h3><a href="#disable-notification-for-reminders">Disable notification for reminders</a></h3>
<h3><a href="#change-notification-time-for-reminders">Change notification time for reminders</a></h3>
<h3><a href="#access-action-history">Access action history</a></h3>
<h3><a href="#backup-plant-data">Backup plant data</a></h3>
<h3><a href="#restore-plant-data">Restore plant data</a></h3>
</div>
</div>
<div id="add-a-new-plant" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Add a new plant</h1>
<ol>
<li>Go to the home screen that has the title 'Your plants'.</li>
<li>Tap the plus button at the right bottom corner. This opens the screen for adding a new plant.
</li>
<li>Write plant name in 'Plant name' field.</li>
<li>Add plant photo using either the Gallery or Camera button.</li>
<li>Save the plant using check mark button at the top right corner.</li>
</ol>
</div>
<!-- Add a plant screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="edit-name-and-photo-of-a-plant" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Edit name and photo of a plant</h1>
<ol>
<li>Go to the home screen that has the title 'Your plants'.</li>
<li>Tap on the plant whose name or photo you want to change. This will open the plant actions list.
</li>
<li>Tap the overflow (triple dot) menu in top right corner and select 'Edit Plant'. This will open
the 'Edit plant' screen.</li>
<li>Write the new name, if you want to edit the name.</li>
<li>Choose a new photo, if you want to edit the photo.</li>
<li>Save the plant using the check mark button in top right corner.</li>
</ol>
</div>
<!-- Edit plant screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="delete-a-plant" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Delete a plant</h1>
<ol>
<li>Go to the home screen that has the title 'Your plants'.</li>
<li>Tap on the plant that you want to delete. This will open the plant actions list.</li>
<li>Tap the overflow (triple dot) menu in top right corner and select 'Delete Plant'.</li>
<li>Tap Delete button in confirmation dialog.</li>
</ol>
</div>
<!-- Delete plant screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="add-a-plant-action" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Add a plant action</h1>
<ol>
<li>Go to the home screen that has the title 'Your plants'.</li>
<li>Tap on the plant for which you want to add an action. This will open the plant actions list
screen with the name of that plant as the title.</li>
<li>In plant action list screen, tap the plus button in the bottom right corner to open the dialog
for plant action name.</li>
<li>Enter the name of the plant action and tap Add button.</li>
</ol>
</div>
<!-- Add a plant action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="edit-a-plant-action-name" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Edit a plant action name</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the calendar button of that action to open the history screen.</li>
<li>In the history screen toolbar, tap pencil button to open the edit dialog.</li>
<li>Enter the name of the plant action and tap Update button.</li>
</ol>
</div>
<!-- Edit a plant action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="delete-a-plant-action" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Delete a plant action</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the calendar button of that action to open the history screen.</li>
<li>In the history screen toolbar, tap bin button to open the confirmation dialog.</li>
<li>In the confirmation dialog tap the delete button.</li>
</ol>
</div>
<!-- Delete a plant action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="record-a-plant-action" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Record a plant action</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the big checkmark button of the action that you want to perform.</li>
<li>This will mark that action as done and the app will automatically generate the date and time
history for you.</li>
</ol>
</div>
<!-- Record a plant action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="edit-date-and-time-of-an-action" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Edit date and time of an action</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the pencil button of the action that you want to edit the date and time for. This will open
the calendar to pick date.</li>
<li>Select the date and tap OK to open the clock.</li>
<li>Select the time and tap OK.</li>
</ol>
</div>
<!-- Edit date and time of an action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="add-note-for-a-plant" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Add a note for a plant</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the note button in the toolbar to open the notes screen for that plant.</li>
<li>Write your note.</li>
<li>Tap checkmark button in the toolbar to save the note.</li>
</ol>
</div>
<!-- Add a note for plant screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="set-reminder-for-an-action" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Set reminder for an action</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the alarm button of the action that you want to set the reminder for. This will open the alarm dialog.</li>
<li>Pick the number of days after which to repeat the alarm.</li>
<li>Tap Done.</li>
</ol>
</div>
<!-- Set reminder for a plant action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="postpone-a-reminder" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Postpone a reminder</h1>
<ol>
<li>Go to 'Your reminders' screen.</li>
<li>Tap the snooze button of the action that you want to postpone the reminder for. This will open Postpone Alarm dialog.</li>
<li>Pick the number of days to postpone the reminder.</li>
<li>Tap Done.</li>
</ol>
</div>
<!-- Postpone reminder for a plant action screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="disable-reminder-for-an-action" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Disable reminder for an action</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the alarm button of the action that you want to disable the reminder for. This will open the alarm dialog.</li>
<li>Pick zero to disable the alarm.</li>
<li>Tap Done.</li>
</ol>
</div>
<!-- Disable reminder screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="enable-notification-for-reminders" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Enable notification for reminders</h1>
<ol>
<li>Swipe right from the left edge of the screen to open the navigation menu. You can also open the navigation menu by going to 'Your plants' screen and tapping the hamburger button.</li>
<li>Tap the Settings to open the settings screen.</li>
<li>Tap the toggle button of the Action Reminder setting to the enabled position.</li>
</ol>
</div>
<!-- Enable reminder notification screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="disable-notification-for-reminders" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Disable notification for reminders</h1>
<ol>
<li>Swipe right from the left edge of the screen to open the navigation menu. You can also open the navigation menu by going to 'Your plants' screen and tapping the hamburger button.</li>
<li>Tap the Settings to open the settings screen.</li>
<li>Tap the toggle button of the Action Reminder setting to the disabled position.</li>
</ol>
</div>
<!-- Disable reminder notification screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="change-notification-time-for-reminders" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Change notification time for reminders</h1>
<ol>
<li>Swipe right from the left edge of the screen to open the navigation menu. You can also open the navigation menu by going to 'Your plants' screen and tapping the hamburger button.</li>
<li>Tap the Settings to open the settings screen.</li>
<li>Tap Action Reminder Time setting to open the clock.</li>
<li>Select the new time for notification and tap OK.</li>
</ol>
</div>
<!-- Change reminder notification time screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="access-action-history" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Access action history</h1>
<ol>
<li>Go to the action list screen of the plant.</li>
<li>Tap the calender button of the action that you want to access the history for. This will open the action history screen.</li>
</ol>
</div>
<!-- Access action history screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="backup-plant-data" class="w3-row-padding w3-light-grey w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Backup plant data</h1>
<ol>
<li>Swipe right from the left edge of the screen to open the navigation menu. You can also open the navigation menu by going to 'Your plants' screen and tapping the hamburger button.</li>
<li>Tap Backup to open the Backup screen.</li>
<li>Tap the Backup button to open file explorer.</li>
<li>Select the folder in which you want to store the backup file.</li>
<li>Tap the Save button in the bottom right corner.</li>
</ol>
</div>
<!-- Backup plant data screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
<div id="restore-plant-data" class="w3-row-padding w3-padding-64 w3-container">
<div class="w3-content">
<div class="w3-twothird">
<h1>Restore plant data</h1>
<ol>
<li>Swipe right from the left edge of the screen to open the navigation menu. You can also open the navigation menu by going to 'Your plants' screen and tapping the hamburger button.</li>
<li>Tap Restore to open the Restore screen.</li>
<li>Tap the Restore button to open file explorer.</li>
<li>Navigate to the folder where you previously saved the backup file.</li>
<li>Tap the backup file to start the restore operation. If you are selecting the file from the cloud like Google Drive, the progress will stay on zero while the file is being downloaded to your device.</li>
</ol>
</div>
<!-- Restore plant data screenshot -->
<div class="w3-third w3-center">
<i class="fa fa-anchor w3-padding-64 w3-text-red"></i>
</div>
</div>
</div>
{% include footer.html %}
</body>
</html>