diff --git a/sohstationviewer/documentation/01 _ Table of Contents.help.md b/sohstationviewer/documentation/01 _ Table of Contents.help.md
index cf5d429ebcc7266484d20ae6df37fec2fb2111a0..33b78b5de4539ea0dd6babab963c58b9e47ac0dd 100644
--- a/sohstationviewer/documentation/01 _ Table of Contents.help.md	
+++ b/sohstationviewer/documentation/01 _ Table of Contents.help.md	
@@ -52,7 +52,11 @@ The home button can be used to return to this page at any time.
 
 + [GPS Dialog](30%20_%20GPS%20Dialog.help.md)
 
-+ [View-Edit Database Tables](31%20_%20View-Edit%20Database%20Tables.help.md)
++ [Reset Database](31%20_%20Reset%20Database.help.md)
+
++ [Options Menu](32%20_%20Options%20Menu.help.md)
+
++ [View-Edit Database Tables](33%20_%20View-Edit%20Database%20Tables.help.md)
 
 + [Firmware Notice](40%20_%20Firmware%20Notice.help.md)
 
diff --git a/sohstationviewer/documentation/05 _ Read Data.help.md b/sohstationviewer/documentation/05 _ Read Data.help.md
index 5f9f777e366a2fe18fdfc07a734d1c4b4067494d..5039880c3446e5464907e9007af69654d7493ed3 100644
--- a/sohstationviewer/documentation/05 _ Read Data.help.md	
+++ b/sohstationviewer/documentation/05 _ Read Data.help.md	
@@ -67,4 +67,22 @@ RT130 DASs will be listed for user to select for reading.
 Note: DASs list will be displayed in the File List box no matter the From Data
 Card checkbox is checked or not.
 <br />
-<br />
\ No newline at end of file
+
+# Limit time period to plot
+
+<br />
+<img alt="DAS in CF Card" src="images/read_data/from_to_date_editor.png" height="75" />
+<br />
+<br />
+<img alt="DAS in CF Card" src="images/read_data/date_editor_calendar.png" height="600" />
+<br />
+
+If only a specific time period in a data set needs to be plotted, the program can 
+limit plotting to only that time period. This is done by using the From and To Date 
+editors, located near the top right corner of the main window. In order to select 
+a date, click on the dropdown button. A calendar will be displayed, and the date 
+can be chosen. If the day of year is desired, check the Show DOY box and the day 
+of year will be displayed for each day in the calendar. 
+
+NOTE: the format the chosen date is shown in can be changed by changing the date 
+format in the Options menu (see the Options Menu section).
diff --git a/sohstationviewer/documentation/40 _ Firmware Notice.help.md b/sohstationviewer/documentation/40 _ Firmware Notice.help.md
index c7a398f87e0a8e9bb15e9b07c10b042782cd9bc5..10ea1e1dd8dc470ead2b9dd787dfdf8d94571ffb 100644
--- a/sohstationviewer/documentation/40 _ Firmware Notice.help.md	
+++ b/sohstationviewer/documentation/40 _ Firmware Notice.help.md	
@@ -1,5 +1,18 @@
-Pegasus firmware was updated to record VEI in millivolts. 
-Previous versions of the firmware recorded VEI in microvolts.
+# Firmware notices
 
-We decided to apply VEI's conversion factor in newer version of Pegasus. 
-If user observe values higher than expected values for Pegasus, the data is of the older version.
\ No newline at end of file
+---------------------------
+---------------------------
+
+## Old Pegasus firmwares
+
+Some old Pegasus firmwares record a number of SOH channels in different units. 
+These channels included:
++ VEI: microvolts in old firmware, millivolts in new firmware
++ VDT: microdegrees C in old firmware, centidegrees C in new firmware
++ VM1-6: microvolts in old firmware, millivolts in new firmware
+
+Currently, SOHViewer only supports new versions of the Pegasus firmware. If the 
+plotted values of the channels listed above are higher than expected, the data 
+is recorded using old firmwares. This problem can be fixed by editing the 
+affected channels' conversion factor to reflect the old units (refer to the 
+View-Edit Database Tables section).
diff --git a/sohstationviewer/documentation/images/read_data/date_editor_calendar.png b/sohstationviewer/documentation/images/read_data/date_editor_calendar.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a757fb22f7566a642f6fc570fd567e850308328
Binary files /dev/null and b/sohstationviewer/documentation/images/read_data/date_editor_calendar.png differ
diff --git a/sohstationviewer/documentation/images/read_data/from_to_date_editor.png b/sohstationviewer/documentation/images/read_data/from_to_date_editor.png
new file mode 100644
index 0000000000000000000000000000000000000000..b3edd0243a1e519540d986a44986d22402d5c72d
Binary files /dev/null and b/sohstationviewer/documentation/images/read_data/from_to_date_editor.png differ
diff --git a/sohstationviewer/view/db_config/db_config_dialog.py b/sohstationviewer/view/db_config/db_config_dialog.py
index 358715fee84b54fc380455df89a4b8a8a98a5312..32aedbdc72bd7656304b698a44a350ce870769a6 100755
--- a/sohstationviewer/view/db_config/db_config_dialog.py
+++ b/sohstationviewer/view/db_config/db_config_dialog.py
@@ -440,7 +440,6 @@ class UiDBInfoDialog(OneWindowAtATimeDialog):
         )
         self.data_table_widget.verticalHeader().hide()
         self.data_table_widget.setColumnCount(self.total_col)
-        print(self.total_col, len(self.column_headers))
         # Make the two last columns have an empty header.
         self.column_headers.extend(['', ''])
         self.data_table_widget.setHorizontalHeaderLabels(self.column_headers)