diff --git a/README.md b/README.md
index 33be742..0bb75b5 100644
--- a/README.md
+++ b/README.md
@@ -9,8 +9,8 @@ To load the Tampermonkey script:
## Wishlist / Todo
### Functionality For Release
-- [ ] Add this link to the settings div: https://leads.needtosellmyhousefast.com/qhrei
-- [ ] Add donation/support message to div
+- [X] Add this link to the settings div: https://leads.needtosellmyhousefast.com/qhrei (added this instead because it made more sense:https://info.qhrei.com/temp/alwayswin-ntsmhf/index.htm)
+- [X] Add donation/support message to div
- [ ] Read from /app/subscriptions to get list of initial counties - if county is missing it automatically gets added.
- [x] Expose Sitewide bidcap (if any county bid exceeds X only bid up to X for that county)
- [x] Save button to persist changes (instead of waiting for refresh code to run)
@@ -29,7 +29,7 @@ To load the Tampermonkey script:
```
Options = [General Cap, Row Cap, Highest Cap, Lowest Cap]
```
-- [ ] Apply presidence logic to get true cap
+- [X] Apply presidence logic to get true cap
### Feature Requests / Future Releases
- [ ] Post stats to API instead of storing in local storage
@@ -47,9 +47,9 @@ To load the Tampermonkey script:
- [ ] cooloff time (auto drops all bids for a specified amount of time then continues to win again.)
- [ ] Add settings option on where to apply the GeneralBidCap
- *SettingsBidCap [200] applies to [options🔽] rows*
+ *General Cap [200] applies to [applyTo] rows. Presidence [presidence🔽]*
```
- Options = [None of the, All, Capped Only, Uncapped Only]
+ applyTo Options = [None of the, All, Capped Only, Uncapped Only]
```
diff --git a/tampermonkey.js b/tampermonkey.js
index c4bd96f..1953df1 100644
--- a/tampermonkey.js
+++ b/tampermonkey.js
@@ -796,20 +796,29 @@ jQuery(window).on('load',function() {
newHtml += ' ';
newHtml += ': to seconds ';
- newHtml += ' ';
- newHtml += ' per county ';
- newHtml += ' ';
-
+ newHtml += '';
+ newHtml += ' ';
+ newHtml += ''+ getCapPresidenceOptions(capPresidence) +' ';
newHtml += '
';
+ newHtml += '
Note: The bidcap functionality is currently under development is not being applied to any bids at the moment.