* Add Length_Angstrom as a new unit constant
Adds Angstrom as a length unit to the list of unit constants in UnitConverterDataConstants.h file.
* Add Angstrom unit to Length units in UnitConverterDataLoader.cpp
Adds the Angstrom unit of length to the list of length units in UnitConverterDataLoader.cpp and its conversion data is added to the GetConversionData() function.
It is assigned the value of 15.
* Add Angstrom as a Unit of Length
Adds new data entries to Resources.resw for unit abbreviation of Angstrom, and the unit name for Angstrom.
* Add conversion data "Meters-Angstroms" in Test.resw
Adds new data entry for "Meters-Angstroms" to Test.resw file
* Changes order of units of Length to add Angstroms
This commit changes the order of the units of length so that Angstrom is before Nanometers.
Increments orders of all other units by 1 and sets order of Angstroms to 1.
* Fixes 'TestStandardUnitConverterAndDateViewModels' test case failing
This commit fixes the "TestStandardUnitConverterAndDateViewModels" failing by introducing a new resource entry to the Test.resw file.
These changes needed to be made because adding the new unit changed the order of units, hence the test case expected a different value, since it was converting other units.
* Higher quality, transparent screenshots
* Adjust for HQ screenshots
This commit adjusts the calculator screenshot to be smaller horizontally
---------
Co-authored-by: pikiwedia <165537498+wikiwedia@users.noreply.github.com>
* Merged PR 10748585: Recall | Connect UserActivity to support restoring from snapshots
## What
Thanks to @<Brendan Elliott ⌨> for his PoC !10573092
This PR is going to use `UserActivity` APIs to connect the app to Recall so that we can take a snapshot when asked and then retore our states from the snapshot later.
## How
- Add a new type `SnapshotLaunchArguments` to identify a protocol launch requested by Recall.
- Add an extension `LaunchExtensions` as helper to retrieve key information from fundamental types.
- Refactor `App::OnActivated()` and `MainPage::OnNavigatedTo()` to handle different protocols properly.
- Create or parse `UserActivity` in `MainPage` in the way like what the PoC is doing.
- Improve the coding style a bit for `MainPage`.
## Note
The serialization work and restoring from JSON is going to be done in a separate PR.
## Testing
Manually tested.
Some typical test cases:
- Launch the app from *Start menu*
- Launch the app from *Task bar*
- Launch the app from *Command line*
- Launch with the protocol for Recall
- Launch with the protocol that is injected with evil data.
Related work items: #50854714
* Merged PR 10741448: [Recall] Snapshot saving and restoring
####What
According to PM [Spec](https://microsoft.sharepoint-df.com/:w:/t/PAXEssentialExperiences421/EcpP5tGRtFdIsRrP84ueRfUBjb6tfayxWtF9ujvJuNx6Dg?e=AeRzVf), saving and restoring Calculator snapshot when required.
The current snapshot supports to:
- Restore the calculator mode.
- Restore the current calculation (display value and expression).
- Restore the history of calculations (either in Standard mode or Scientific mode) shown at the time the snapshot was taken.
- Restore the current calculation error state, if applicable.
####How
- Added `SnapshotHelper` to help save and restore snapshots.
- Besides the existing snapshot information from view models, added an extra field `SnapshotVersion` in `ApplicationSnapshot` for backward compatibility.
#### Note
Unit tests will be added in a separate PR.
Related work items: #50701758
* Merged PR 10772614: Recall | Update the LaunchURI design
## What
Since `System.Uri` already has the `Segment` property which contains the parsed path blocks, Query in Uri looks too heavy and intrusive in implementation to retrieve the activity id.
## Changes
Changed the launch URI from something like `ms-calculator:///snapshot?activityId=<a guid>` to `ms-calculator:snapshots/<a guid>`
Related work items: #50854714
* Merged PR 10778666: Recall | Show error dialog if launching from snapshot has failed
## What
Per Figma design, we can show an error dialog with messages for the failures happens during snapshot launch.
## Notes
- Fixed a crash about taking a snapshot when Calculator hasn't initialized a standard calculator.
- Simplified the restore path.
## Screenshot
![image.png](https://dev.azure.com/microsoft/d1a24475-535d-4c83-988a-9491e6dbc858/_apis/git/repositories/6255259e-4ead-4d8d-b165-55eeacc5ca48/pullRequests/10778666/attachments/image.png)
Related work items: #50858262
* Merged PR 10790341: [Recall] Update calculator engine with snapshot for further calculations
####What
When restoring from snapshot, we need to set calculator engine properly to make further calculations correct.
####How
Update calculator engine by a serial of corresponding commands from snapshot.
To get the commands for the display area when saving snapshot,
1. If the expression is not from history and the primary display is the result of the expression, `DisplayCommands` of `StandardCalculatorSnapshot` will be empty, and we will use the commands from `ExpressionDisplay` for restoring in the future.
2. If the expression is not from history and the primary display is not the result of the expression, `DisplayCommands` of `StandardCalculatorSnapshot` will be the commands from the history collector in addition to the operand command in the primary display, and it will be used for restoring in the future.
3. If the expression and primary display are from history, `DisplayCommands` will be incomplete with the operand command in the primary display missing as by current design of history, and the commands from `ExpressionDisplay` will be used for restoring in the future.
Related work items: #51002745
* Merged PR 10802927: Recall | Add threat model
## What
The support for Recall introduced a URI activation process allowing the Recall app to launch Calculator with desired snapshot metadata. This led to a potential security problem, and we need to address it by providing justifications.
Threat model is a well-known practice among Inbox Apps. After offline discussion, we decide to add diagrams for this Recall feature to prepare for the security review.
## Diagram preview
![image.png](https://dev.azure.com/microsoft/d1a24475-535d-4c83-988a-9491e6dbc858/_apis/git/repositories/6255259e-4ead-4d8d-b165-55eeacc5ca48/pullRequests/10802927/attachments/image.png)
![image (2).png](https://dev.azure.com/microsoft/d1a24475-535d-4c83-988a-9491e6dbc858/_apis/git/repositories/6255259e-4ead-4d8d-b165-55eeacc5ca48/pullRequests/10802927/attachments/image%20%282%29.png)
Related work items: #51165486
* Merged PR 10794979: Add Recall Telemetry
**Snapshot**
EventName: `RecallSnapshot`
Payload example:` { "CalcMode": "Standard"}`
**_Fires when a snapshot (UserActivityRequested) is triggered_**
**Restore**
EventName: `RecallRestore`
Payload example:`{ "CalcMode": "Standard"}`
**_Fires when launching by snapshot (recall restore)**
**Error**
EventName: `Exception`
Payload example: `{ "CalcMode": "Standard", "FunctionName" : "MainPage::ShowSnapshotLaunchErrorAsync", "Message": "SnapshotRestoreError" }`
**_Fires when launching by snapshot failed_**
Related work items: #51114542
---------
Co-authored-by: Tian Liao ☕ <tilia@microsoft.com>
Co-authored-by: Jian Zhang <zjian@microsoft.com>
* launch multi instances
* trace error
* simplify the graphing test
* remove an assertion
* simplify some code
* remove some trivial code.
* fix runtime cast