diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 74a865f254..acbf2d2825 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,7 +38,7 @@ The convention that we follow is inspired from [SemVer](https://semver.org/) con Some examples of good PR titles are: - `refactor: rename FooWidget to BarWidget` -- `feat(android-settings): add High Contrast toggle to unified settings panel` +- `feat(high-contrast-settings): add High Contrast toggle to settings panel` ## Further Guidance diff --git a/README.md b/README.md index 626923a5f9..7cb1a1c738 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,7 @@ Licensed under the MIT License. [![Chrome Web Store](https://img.shields.io/chrome-web-store/users/pbjjkligggfmakdaogkfomddhfmpjeni.svg)](https://chrome.google.com/webstore/detail/accessibility-insights-fo/pbjjkligggfmakdaogkfomddhfmpjeni) [![Chrome Web Store](https://img.shields.io/chrome-web-store/stars/pbjjkligggfmakdaogkfomddhfmpjeni.svg)](https://chrome.google.com/webstore/detail/accessibility-insights-fo/pbjjkligggfmakdaogkfomddhfmpjeni/reviews) -One project is built from this repository: - -- **Accessibility Insights for Web** is a browser extension for Google Chrome and the new Microsoft Edge, used for assessing the accessibility of web sites and web applications. - -### Notice -The Accessibility Insights team is proud to provide accessibility scanning solutions across multiple platforms including Web, Windows Desktop, and Android. Unfortunately, the usage of Accessibility Insights for Android did not meet expectations and we will be **ending support of that product** effective June 1 2023, so we can focus on our more popular products for Web and Windows Desktop. The product download link will be removed to promote security and discourage use of an unmaintained version of the product. The source code will remain available under the MIT open-source license. We are grateful to the community who continue to use our accessibility testing products! +This repository contains the code for **Accessibility Insights for Web**, which is a browser extension for Google Chrome and the new Microsoft Edge. It is used for assessing the accessibility of web sites and web applications. ### Install Accessibility Insights for Web diff --git a/src/common/configuration/configuration-defaults.ts b/src/common/configuration/configuration-defaults.ts index 8bca0894ac..d9f933a5c0 100644 --- a/src/common/configuration/configuration-defaults.ts +++ b/src/common/configuration/configuration-defaults.ts @@ -9,6 +9,5 @@ export const defaults = { icon48: `icons/brand/blue/brand-blue-48px.png`, icon128: `icons/brand/blue/brand-blue-128px.png`, telemetryBuildName: 'unknownBuild', - unifiedAppVersion: '0.0.0', }, }; diff --git a/src/common/configuration/configuration-types.ts b/src/common/configuration/configuration-types.ts index 4c384af6e3..e862fbee57 100644 --- a/src/common/configuration/configuration-types.ts +++ b/src/common/configuration/configuration-types.ts @@ -11,7 +11,6 @@ export type InsightsConfigurationOptions = { appInsightsInstrumentationKey?: string; bundled?: string; telemetryBuildName: string; - unifiedAppVersion: string; }; export interface ConfigAccessor { diff --git a/src/icons/brand/blue/electron-icons/icon.icns b/src/icons/brand/blue/electron-icons/icon.icns deleted file mode 100644 index 5a2d380c4b..0000000000 Binary files a/src/icons/brand/blue/electron-icons/icon.icns and /dev/null differ diff --git a/src/icons/brand/blue/electron-icons/icon.ico b/src/icons/brand/blue/electron-icons/icon.ico deleted file mode 100644 index 792510529f..0000000000 Binary files a/src/icons/brand/blue/electron-icons/icon.ico and /dev/null differ diff --git a/src/icons/brand/blue/electron-icons/icon.png b/src/icons/brand/blue/electron-icons/icon.png deleted file mode 100644 index 2be06236e2..0000000000 Binary files a/src/icons/brand/blue/electron-icons/icon.png and /dev/null differ diff --git a/src/tests/unit/tests/common/configuration/global-variable-configuration.test.ts b/src/tests/unit/tests/common/configuration/global-variable-configuration.test.ts index a67ea84298..88757e95a0 100644 --- a/src/tests/unit/tests/common/configuration/global-variable-configuration.test.ts +++ b/src/tests/unit/tests/common/configuration/global-variable-configuration.test.ts @@ -12,7 +12,6 @@ describe('GlobalVariableConfiguration', () => { const defaultTelemetryBuildName = 'unknownBuild'; const defaultName = 'Accessibility Insights for Web'; - const defaultUnifiedAppVersion = '0.0.0'; const newName = 'New Extension Name'; it('reflects the expected default values if none have been set (fullName)', () => { @@ -20,11 +19,6 @@ describe('GlobalVariableConfiguration', () => { expect(config.config.options.fullName).toBe(defaultName); }); - it('reflects the expected default values if none have been set (unifiedAppVersion)', () => { - expect(config.getOption('unifiedAppVersion')).toBe(defaultUnifiedAppVersion); - expect(config.config.options.unifiedAppVersion).toBe(defaultUnifiedAppVersion); - }); - it('reflects the expected default values if none have been set (telemetryBuildName)', () => { expect(config.getOption('telemetryBuildName')).toBe(defaultTelemetryBuildName); expect(config.config.options.telemetryBuildName).toBe(defaultTelemetryBuildName);