[PR #2076] [CLOSED] [PS-1499] [TEST] - Update build.yml #3336

Closed
opened 2025-11-26 23:31:24 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bitwarden/android/pull/2076
Author: @mimartin12
Created: 9/15/2022
Status: Closed

Base: rcHead: rc


📝 Commits (10+)

  • ecd4da0 [SG-598] Removed space from copied totp code (#2046)
  • 9163b9e [SG-599] Cannot read authenticator key if you don't include URI before TOTP Secret. (#2047)
  • d204e81 EC-487 Added helper to localize enum values and also a converter to use in xaml (#2048)
  • cdd9a5f Autosync the updated translations (#2050)
  • 673ba9f Fix Content Type for file upload (#2031)
  • b1fb867 [SG-223] Mobile username generator (#2033)
  • 183bfa0 Update PR template (#2051)
  • b628c19 [PS-191] Improve support for larger fonts Android (#2053)
  • 119fc58 Update deprecated Azure Key Vault in workflows (#2059)
  • 68b5bc0 EC-540 fix AppResources encoding to be UTF-8 with BOM (#2065)

📊 Changes

169 files changed (+10398 additions, -1732 deletions)

View changed files

📝 .github/PULL_REQUEST_TEMPLATE.md (+4 -4)
📝 .github/workflows/build.yml (+4 -635)
📝 .github/workflows/crowdin-pull.yml (+11 -4)
📝 src/Android/MainActivity.cs (+21 -2)
📝 src/Android/MainApplication.cs (+8 -0)
📝 src/Android/Properties/AndroidManifest.xml (+1 -1)
📝 src/App/App.csproj (+13 -0)
📝 src/App/Controls/RepeaterView.cs (+3 -1)
src/App/Lists/DataTemplateSelectors/CustomFieldItemTemplateSelector.cs (+28 -0)
src/App/Lists/ItemLayouts/CustomFields/BooleanCustomFieldItemLayout.xaml (+71 -0)
src/App/Lists/ItemLayouts/CustomFields/BooleanCustomFieldItemLayout.xaml.cs (+12 -0)
src/App/Lists/ItemLayouts/CustomFields/HiddenCustomFieldItemLayout.xaml (+98 -0)
src/App/Lists/ItemLayouts/CustomFields/HiddenCustomFieldItemLayout.xaml.cs (+12 -0)
src/App/Lists/ItemLayouts/CustomFields/LinkedCustomFieldItemLayout.xaml (+61 -0)
src/App/Lists/ItemLayouts/CustomFields/LinkedCustomFieldItemLayout.xaml.cs (+12 -0)
src/App/Lists/ItemLayouts/CustomFields/TextCustomFieldItemLayout.xaml (+67 -0)
src/App/Lists/ItemLayouts/CustomFields/TextCustomFieldItemLayout.xaml.cs (+12 -0)
src/App/Lists/ItemViewModels/CustomFields/BaseCustomFieldItemViewModel.cs (+49 -0)
src/App/Lists/ItemViewModels/CustomFields/BooleanCustomFieldItemViewModel.cs (+23 -0)
src/App/Lists/ItemViewModels/CustomFields/CustomFieldItemFactory.cs (+53 -0)

...and 80 more files

📄 Description

Type of change

  • Bug fix
  • New feature development
  • Tech debt (refactoring, code cleanup, dependency upgrades, etc)
  • Build/deploy pipeline (DevOps)
  • Other

Objective

Code changes

  • file.ext: Description of what was changed and why

Screenshots

Before you submit

  • Please check for formatting errors (dotnet format --verify-no-changes) (required)
  • Please add unit tests where it makes sense to do so (encouraged but not required)
  • If this change requires a documentation update - notify the documentation team
  • If this change has particular deployment requirements - notify the DevOps team

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bitwarden/android/pull/2076 **Author:** [@mimartin12](https://github.com/mimartin12) **Created:** 9/15/2022 **Status:** ❌ Closed **Base:** `rc` ← **Head:** `rc` --- ### 📝 Commits (10+) - [`ecd4da0`](https://github.com/bitwarden/android/commit/ecd4da08ee068eaa1a0444db12500db5d6a82d3f) [SG-598] Removed space from copied totp code (#2046) - [`9163b9e`](https://github.com/bitwarden/android/commit/9163b9e4def2166ca8bd2a3f5f7cd56f137ecbf7) [SG-599] Cannot read authenticator key if you don't include URI before TOTP Secret. (#2047) - [`d204e81`](https://github.com/bitwarden/android/commit/d204e812e1c0487e378131383acf910bb6f1bdda) EC-487 Added helper to localize enum values and also a converter to use in xaml (#2048) - [`cdd9a5f`](https://github.com/bitwarden/android/commit/cdd9a5ff4db8a1ec2595cce7c1f75198a3f04da9) Autosync the updated translations (#2050) - [`673ba9f`](https://github.com/bitwarden/android/commit/673ba9f3ccdfc863893a834112d4777e3beb1704) Fix Content Type for file upload (#2031) - [`b1fb867`](https://github.com/bitwarden/android/commit/b1fb867b6e9538b5da8c8c6e0fd3add6f08b35f6) [SG-223] Mobile username generator (#2033) - [`183bfa0`](https://github.com/bitwarden/android/commit/183bfa0ab2160b6f5931deaa883ccbf8d55f11ae) Update PR template (#2051) - [`b628c19`](https://github.com/bitwarden/android/commit/b628c1990eefd9f50f4b9d3eaa08be5f8e830210) [PS-191] Improve support for larger fonts Android (#2053) - [`119fc58`](https://github.com/bitwarden/android/commit/119fc5812bc18fe86db72dcff07845821d376ccd) Update deprecated Azure Key Vault in workflows (#2059) - [`68b5bc0`](https://github.com/bitwarden/android/commit/68b5bc096465c713257025683f0ccf17bd3a6e4e) EC-540 fix AppResources encoding to be UTF-8 with BOM (#2065) ### 📊 Changes **169 files changed** (+10398 additions, -1732 deletions) <details> <summary>View changed files</summary> 📝 `.github/PULL_REQUEST_TEMPLATE.md` (+4 -4) 📝 `.github/workflows/build.yml` (+4 -635) 📝 `.github/workflows/crowdin-pull.yml` (+11 -4) 📝 `src/Android/MainActivity.cs` (+21 -2) 📝 `src/Android/MainApplication.cs` (+8 -0) 📝 `src/Android/Properties/AndroidManifest.xml` (+1 -1) 📝 `src/App/App.csproj` (+13 -0) 📝 `src/App/Controls/RepeaterView.cs` (+3 -1) ➕ `src/App/Lists/DataTemplateSelectors/CustomFieldItemTemplateSelector.cs` (+28 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/BooleanCustomFieldItemLayout.xaml` (+71 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/BooleanCustomFieldItemLayout.xaml.cs` (+12 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/HiddenCustomFieldItemLayout.xaml` (+98 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/HiddenCustomFieldItemLayout.xaml.cs` (+12 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/LinkedCustomFieldItemLayout.xaml` (+61 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/LinkedCustomFieldItemLayout.xaml.cs` (+12 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/TextCustomFieldItemLayout.xaml` (+67 -0) ➕ `src/App/Lists/ItemLayouts/CustomFields/TextCustomFieldItemLayout.xaml.cs` (+12 -0) ➕ `src/App/Lists/ItemViewModels/CustomFields/BaseCustomFieldItemViewModel.cs` (+49 -0) ➕ `src/App/Lists/ItemViewModels/CustomFields/BooleanCustomFieldItemViewModel.cs` (+23 -0) ➕ `src/App/Lists/ItemViewModels/CustomFields/CustomFieldItemFactory.cs` (+53 -0) _...and 80 more files_ </details> ### 📄 Description ## Type of change - [ ] Bug fix - [ ] New feature development - [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc) - [ ] Build/deploy pipeline (DevOps) - [ ] Other ## Objective <!--Describe what the purpose of this PR is. For example: what bug you're fixing or what new feature you're adding--> ## Code changes <!--Explain the changes you've made to each file or major component. This should help the reviewer understand your changes--> <!--Also refer to any related changes or PRs in other repositories--> * **file.ext:** Description of what was changed and why ## Screenshots <!--Required for any UI changes. Delete if not applicable--> ## Before you submit - Please check for formatting errors (`dotnet format --verify-no-changes`) (required) - Please add **unit tests** where it makes sense to do so (encouraged but not required) - If this change requires a **documentation update** - notify the documentation team - If this change has particular **deployment requirements** - notify the DevOps team --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-26 23:31:24 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/android#3336