README.md in friends-0.22 vs README.md in friends-0.23
- old
+ new
@@ -316,27 +316,54 @@
Opening "./friends.md" in atom
```
#### `graph`
-Graphs (in color!) your relationship with a given friend over time:
+Graphs (in color!) your activities over time:
```bash
-$ friends graph George
+$ friends graph
+Nov 2014 |███
+Dec 2014 |██
+Jan 2015 |███████
+Feb 2015 |█████
+```
+
+Or graph only activities with a certain friend:
+
+```bash
+$ friends graph --with George
Nov 2014 |█
Dec 2014 |
Jan 2015 |█████
Feb 2015 |███
```
-Or just graph all of your activities:
+Or graph only activities with a certain hashtag:
```bash
-$ friends graph
-Nov 2014 |███
-Dec 2014 |██
-Jan 2015 |███████
-Feb 2015 |█████
+$ friends graph --tagged food
+Nov 2014 |█
+Dec 2014 |
+Jan 2015 |
+Feb 2015 |███
+```
+
+Or graph only activities in a certain location:
+
+```bash
+$ friends graph --in Paris
+Nov 2014 |█
+Dec 2014 |
+Jan 2015 |
+Feb 2015 |█
+```
+
+And you can use multiple of these flags together:
+
+```bash
+$ friends graph --in Paris --tagged food --with George
+Nov 2014 |█
```
#### `help`
Displays a help menu. This is equivalent to `friends --help`.