I find it important that examples actually follow best practices. The
current regex does not escaping dots in URIs when writing regex is a
mistake that is often made, even by advanced regex people. I think this
comes from the way we humans look at URIs. Dots are so common in there,
aren’t they? Yes, but we write proper regular expressions here, not
something in between.
Updates: #41
Alternative: #158
Replaces: #160
* - Few Typos
- New 2FA FAQ Item
- Corrected recommendation in /forgot-master-password/
- Added 'Delete a Collection' section to /create-collections/
- Fix recommendation for 2FA Recovery Code
- Update plans flowchart & text
- Added 2019-2020 plans comparison tables
- Added linking to feature table in /about-bitwarden-plans/
- Added search example for org
- Added additional information about removing and org user to
/managing-users/ and /delete-your-account/
* typo fix
- A typo
- Clarification on yubico validation URLs
- Post-release updates to "About Bitwarden Plans"
- Improvements to Lost Two Step Device vs. Recovery Code articles
* Organizations revisions initial commit.
* API doc updates
* Fix absolute link causing build failure.
* Add import to org article, and downstream order changes.
* Bitwarden 101 videos: 1st steps toward proliferating these throughout /help.
* Added 'Create Your Account' article, which references B101 Videos.
* About SSO redirect & promote importing for orgs up the list
* Create Org FAQs & trim Feature FAQs accordingly.
* Image for Org FAQs
* Move 'About the Business Portal' to Orgs category, and re-order accordingly.
* Final edits.
* Update to API doc.
* Returned missing getting-started-organizations article
Huawei devices have a thing called dropzone which blocks the autofill overlay from appearing.
This will tell them how to enable dropzone for bitwarden.
* Updated the shortcut modification documentation
Shortcut modification is possible in Firefox since Firefox 66 (https://www.bleepingcomputer.com/news/software/firefox-66-lets-you-reconfigure-keyboard-shortcuts-for-extensions/)
Brave and Edge are Chromium-based and therefore support the `chrome://extensions` modification method. The latest Edge browser support it too (the `chrome://extensions` will be translated to `edge://extensions` automatically).
* Update auto-fill-browser.md
Co-authored-by: Kyle Spearrin <kspearrin@users.noreply.github.com>
* New Version Update
Updated the Android Auto-fill article to include instructions for the latest version of the app as well as added additional troubleshooting steps for the Accessibility Service.
* additional notes
Co-authored-by: Aaron Marshall <marshall@linux.com>
I couldn't figure out why my auto-fill shortcut was not working. It was driving me absolutely insane. I finally figured out that the AMD Radeon software was causing this. I thought I'd add this information so other people can find it more easily.
* Add examples to clarify Host/Regular expression
Add an example to the Host section illustrating that Host not only doesn't match parent domains but also doesn't match subdomains
Add an example to Regular expression illustrating that the example regex matches substrings of the URI (because there is no end of string character)
* Revert the regex example and change the regex
Instead of adding an example to the Regular expression section to clarify that
the regex shown doesn't require the string end in google.com, let's instead
change the regex to end in a `$` and all the existing examples make a lot more
sense.