L'estensione per Browser di Bitwarden funziona con Chrome, Firefox, Edge, Opera, Safari, Vivaldi, brave, Tor Browser. L'istanza bitwarden dei devol comprende tutte le funzioni premium di bitwarden https://vaultwarden.devol.it
Go to file
Robyn MacCallum 8c12ba20cb
[Feature] End User Vault Refresh (#2545)
* Initial org filter work

* update jslib

* Move filter to below cipher length check

* don't show vault filter in personal or org folder

* Use family icon for families org

* jslib and auth guard updates

* lint fixes

* rename GroupingsComponent to VaultFilterComponent

* fix no folder showing all items

* Add checks for PersonalOwnership policy

* update css class names

* lint fixes

* cleanup

* Some final cleanup

* import order lint fix

* remove unused import

* Use smaller icon for chevron

* Update src/popup/vault/organization-filter.component.ts

Co-authored-by: Addison Beck <addisonbeck1@gmail.com>

* Update src/popup/vault/organization-filter.component.ts

Co-authored-by: Addison Beck <addisonbeck1@gmail.com>

* fix lint error

* remove extra localizations

* rename orgFilter -> vaultSelect

* Rename orgFilterService to VaultSelectService

* lint fixes

* combine vault select service with vault filter service

* Use base vault filter service methods

* Use VaultFilter model and other small fixes

* lint fixes

* Final restructuring pass

* Update jslib and remove extra function

* Remove extra imports

* remove space

* Remove vaultFilterService from background services

* Update jslib to latest on feature branch

* merge fix

* update jslib

* [feat] Implement EUVR for desktop

Should contain only https://github.com/bitwarden/desktop/pull/1487, with merge resolutions and style fixes

* [fix] Delete unused GroupingsComponentTemplate

* [dep] Update jslib

Co-authored-by: Addison Beck <addisonbeck1@gmail.com>
2022-05-09 08:19:18 -04:00
.github Update provisioning files in desktop build (#2647) 2022-05-06 11:20:10 -05:00
.husky Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
apps [Feature] End User Vault Refresh (#2545) 2022-05-09 08:19:18 -04:00
.editorconfig Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.eslintignore [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.eslintrc.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.git-blame-ignore-revs [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.gitattributes Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.gitignore Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
.gitmodules Merge remote-tracking branch 'desktop/mono-repo-prep' into desktop 2022-05-05 17:22:56 +02:00
.nvmrc [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.prettierignore [EC-184] Desktop cleanup (#2553) 2022-05-05 19:03:56 +02:00
.prettierrc.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
CONTRIBUTING.md Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
LICENSE.txt Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
README.md Add instructions on how to migrate desktop PRs (#2636) 2022-05-05 21:59:17 +02:00
SECURITY.md Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
package-lock.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00
package.json Move desktop into apps/desktop 2022-05-05 17:20:34 +02:00

README.md

Bitwarden

Github Workflow browser build on master Github Workflow desktop build on master gitter chat


Bitwarden Client Applications

This repository houses all Bitwarden client applications except the Mobile application.

Please check the readmes for each application under apps for instructions on how to build the different applications.

We're Hiring!

Interested in contributing in a big way? Consider joining our team! We're hiring for many positions. Please take a look at our Careers page to see what opportunities are currently open as well as what it's like to work at Bitwarden.

Contribute

Code contributions are welcome! Please commit any pull requests against the master branch. Learn more about how to contribute by reading the CONTRIBUTING.md file.

Security audits and feedback are welcome. Please open an issue or email us privately if the report is sensitive in nature. You can read our security policy in the SECURITY.md file.

Git blame

We recommend that you configure git to ignore specific revision using:

git config blame.ignoreRevsFile .git-blame-ignore-revs

Migrate PRs from old repositories

We recently migrated from individual client repositories. And some PRs were unfortunately left behind in the old repositories. Luckily it's fairly straightforward to sync them up again. Please follow all the instructions below in order to avoid most merge conflicts.

Desktop

# Merge master
git merge master

# Merge branch mono-repo-prep
git merge 28bc4113b9bbae4dba2b5af14d460764fce79acf

# Verify files are placed in apps/desktop

# Add remote
git remote add clients git@github.com:bitwarden/clients.git

# Merge against clients master
git fetch clients
git merge clients/master

# Push to clients or your own fork