diff --git a/.editorconfig b/.editorconfig index e844ca00..f3416ab7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -## IDE-independent coding style via EditorConfig: http://editorconfig.org/ +## IDE-independent coding style via EditorConfig: https://editorconfig.org/ root = true @@ -8,4 +8,4 @@ indent_size = 4 end_of_line = crlf charset = utf-8 trim_trailing_whitespace = true -insert_final_newline = true \ No newline at end of file +insert_final_newline = true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e0217867..9bab5f16 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,7 +41,7 @@ To learn how to build the code and run tests, follow the instructions in the [RE ### Style guidelines The code in this project uses several different coding styles, depending on the age and history of the code. Please attempt to match the style of surrounding code as much as possible. In new -components, prefer the patterns described in the [C++ core guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) +components, prefer the patterns described in the [C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) and the [modern C++/WinRT language projections](https://docs.microsoft.com/en-us/windows/uwp/cpp-and-winrt-apis/). ### Testing @@ -91,4 +91,4 @@ You don't need to sign a CLA until you're ready to create a pull request. When y created, it is classified by a bot. If the change is trivial (i.e. you just fixed a typo) then the bot will label the PR `cla-not-required`. Otherwise, it's classified as `cla-required`. In that case, the system will also tell you how you can sign the CLA. Once you have signed a CLA, the -current and all future pull requests will be labeled as `cla-signed`. \ No newline at end of file +current and all future pull requests will be labeled as `cla-signed`. diff --git a/NOTICE.txt b/NOTICE.txt index 60d809cb..d115a691 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -2,7 +2,7 @@ THIRD PARTY SOFTWARE NOTICES AND INFORMATION Do Not Translate or Localize This software incorporates material from third parties. Microsoft makes certain -open source code available at http://3rdpartysource.microsoft.com, or you may +open source code available at https://3rdpartysource.microsoft.com, or you may send a check or money order for US $5.00, including the product name, the open source component name, and version number, to: diff --git a/README.md b/README.md index ba76c48b..23afe0de 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ For information regarding Windows Calculator plans and release schedule, please ## Data / Telemetry This project collects usage data and sends it to Microsoft to help improve our products and services. -Read our [privacy statement](http://go.microsoft.com/fwlink/?LinkId=521839) to learn more. +Read our [privacy statement](https://go.microsoft.com/fwlink/?LinkId=521839) to learn more. Telemetry is disabled in development builds by default, and can be enabled with the `SEND_TELEMETRY` build flag. diff --git a/docs/ManualTests.md b/docs/ManualTests.md index 6fbc6716..a1d9de58 100644 --- a/docs/ManualTests.md +++ b/docs/ManualTests.md @@ -124,7 +124,7 @@ Steps: m. “( )" Parenthesis -**All Calulators Test: Verify memory functions** +**All Calculators Test: Verify memory functions** Steps: 1. Launch the "Calculator" app. 2. Navigate to "Standard" Calculator. diff --git a/docs/NewFeatureProcess.md b/docs/NewFeatureProcess.md index 6aa2e22a..66c9a635 100644 --- a/docs/NewFeatureProcess.md +++ b/docs/NewFeatureProcess.md @@ -131,9 +131,9 @@ new features, the Microsoft team considers at least these items: - [ ] Microsoft must plan to keep these dependencies secure and functional for the lifetime of the app (which might be several years). - [ ] The app should be fully functional if some network requests are slow or fail. Tools like - [Fiddler](http://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/perftesting) + [Fiddler](https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/perftesting) can be used to simulate slow or failed requests. ## Step 4: Final product review and merge to master After the technical review is complete, the product team will review the finished product to make -sure the final implementation is ready to [release to Windows customers](Roadmap.md#Releases). \ No newline at end of file +sure the final implementation is ready to [release to Windows customers](Roadmap.md#Releases). diff --git a/internal/Calculator.UIAutomationLibrary/CalculatorAppLauncher.cs b/internal/Calculator.UIAutomationLibrary/CalculatorAppLauncher.cs index b90c984e..df2ad9c3 100644 --- a/internal/Calculator.UIAutomationLibrary/CalculatorAppLauncher.cs +++ b/internal/Calculator.UIAutomationLibrary/CalculatorAppLauncher.cs @@ -20,7 +20,7 @@ namespace Calculator.UIAutomationLibrary { public const string CoreWindowClassName = "Windows.UI.Core.CoreWindow"; - // This doesn't actually work right now becaue popup will disappear + // This doesn't actually work right now because popup will disappear // Bug 13713223: ContentDialog/Popup does not show up in the UIA tree when Windows.Current.Content has an AutomationName set. // public static readonly UICondition TopLevelWindowUICondition = UICondition.CreateFromId(Constants.TopLevelWindowAutomationId); public static readonly UICondition CoreWindowUICondition = UICondition.CreateFromClassName(CoreWindowClassName) diff --git a/internal/Calculator.UIAutomationLibrary/Utilities/PerfTestConstants.cs b/internal/Calculator.UIAutomationLibrary/Utilities/PerfTestConstants.cs index ae329b7c..02c0206d 100644 --- a/internal/Calculator.UIAutomationLibrary/Utilities/PerfTestConstants.cs +++ b/internal/Calculator.UIAutomationLibrary/Utilities/PerfTestConstants.cs @@ -36,6 +36,6 @@ namespace Calculator.UIAutomationLibrary /// /// These are uses with the DataSource test property to specify iteration info. /// - public const string AppLifecycleInterationsSource = "Table:" + ConfigDirectory + "AppLifecycle.Iterations.xml#PerformanceConfigurations"; + public const string AppLifecycleIterationsSource = "Table:" + ConfigDirectory + "AppLifecycle.Iterations.xml#PerformanceConfigurations"; } } diff --git a/internal/Calculator.UITests/Config/AppLifecycle.Iterations.xml b/internal/Calculator.UITests/Config/AppLifecycle.Iterations.xml index 91a96bc8..65cec859 100644 --- a/internal/Calculator.UITests/Config/AppLifecycle.Iterations.xml +++ b/internal/Calculator.UITests/Config/AppLifecycle.Iterations.xml @@ -1,7 +1,7 @@  diff --git a/src/CalculatorUnitTests/UnitTestApp.xaml.cpp b/src/CalculatorUnitTests/UnitTestApp.xaml.cpp index c9d685ad..de9d5bb1 100644 --- a/src/CalculatorUnitTests/UnitTestApp.xaml.cpp +++ b/src/CalculatorUnitTests/UnitTestApp.xaml.cpp @@ -25,7 +25,7 @@ using namespace Windows::UI::Xaml::Interop; using namespace Windows::UI::Xaml::Media; using namespace Windows::UI::Xaml::Navigation; -// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=402347&clcid=0x409 +// The Blank Application template is documented at https://go.microsoft.com/fwlink/?LinkId=402347&clcid=0x409 /// /// Initializes the singleton application object. This is the first line of authored code diff --git a/src/CalculatorUnitTests/UnitTestApp.xaml.h b/src/CalculatorUnitTests/UnitTestApp.xaml.h index f7918dbb..9877eea4 100644 --- a/src/CalculatorUnitTests/UnitTestApp.xaml.h +++ b/src/CalculatorUnitTests/UnitTestApp.xaml.h @@ -9,10 +9,10 @@ #pragma once #include "UnitTestApp.g.h" -#include "CalcViewModel\DateCalculatorViewModel.h" -#include "CalcViewModel\StandardCalculatorViewModel.h" -#include "CalcViewModel\UnitConverterViewModel.h" -#include "CalcViewModel\MemoryItemViewModel.h" +#include "CalcViewModel/DateCalculatorViewModel.h" +#include "CalcViewModel/StandardCalculatorViewModel.h" +#include "CalcViewModel/UnitConverterViewModel.h" +#include "CalcViewModel/MemoryItemViewModel.h" namespace CalculatorUnitTests { diff --git a/src/CalculatorUnitTests/pch.h b/src/CalculatorUnitTests/pch.h index ecfd700f..7f46aeac 100644 --- a/src/CalculatorUnitTests/pch.h +++ b/src/CalculatorUnitTests/pch.h @@ -38,11 +38,11 @@ #include // C++\WinRT Headers -#include "winrt\base.h" -#include "winrt\Windows.Foundation.Diagnostics.h" -#include "winrt\Windows.Globalization.h" -#include "winrt\Windows.Globalization.DateTimeFormatting.h" -#include "winrt\Windows.System.UserProfile.h" +#include "winrt/base.h" +#include "winrt/Windows.Foundation.Diagnostics.h" +#include "winrt/Windows.Globalization.h" +#include "winrt/Windows.Globalization.DateTimeFormatting.h" +#include "winrt/Windows.System.UserProfile.h" namespace CalculatorApp { @@ -74,21 +74,21 @@ namespace CalculatorApp::Common::Automation {} namespace CustomPeers = CalculatorApp::Common::Automation; //CalcManager Headers -#include "CalcManager\CalculatorVector.h" -#include "CalcManager\ExpressionCommand.h" -#include "CalcManager\CalculatorResource.h" -#include "CalcManager\CalculatorManager.h" -#include "CalcManager\UnitConverter.h" +#include "CalcManager/CalculatorVector.h" +#include "CalcManager/ExpressionCommand.h" +#include "CalcManager/CalculatorResource.h" +#include "CalcManager/CalculatorManager.h" +#include "CalcManager/UnitConverter.h" // CalcViewModel Headers -#include "CalcViewModel\Common\DelegateCommand.h" -#include "CalcViewModel\Common\Utils.h" -#include "CalcViewModel\Common\MyVirtualKey.h" -#include "CalcViewModel\Common\NavCategory.h" -#include "CalcViewModel\Common\CalculatorButtonUser.h" -#include "CalcViewModel\Common\NetworkManager.h" +#include "CalcViewModel/Common/DelegateCommand.h" +#include "CalcViewModel/Common/Utils.h" +#include "CalcViewModel/Common/MyVirtualKey.h" +#include "CalcViewModel/Common/NavCategory.h" +#include "CalcViewModel/Common/CalculatorButtonUser.h" +#include "CalcViewModel/Common/NetworkManager.h" -#include "Mocks\CurrencyHttpClient.h" +#include "Mocks/CurrencyHttpClient.h" #include "Helpers.h" #include "UnitTestApp.xaml.h" diff --git a/src/nuget.config b/src/nuget.config index 2d76b6fe..63a9d4e6 100644 --- a/src/nuget.config +++ b/src/nuget.config @@ -4,7 +4,7 @@ - +