Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into update-remove-android
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveTryon committed Jun 23, 2023
2 parents 232d8c1 + 5c8fb72 commit b44fa09
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion src/common/configuration/configuration-defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
};
1 change: 0 additions & 1 deletion src/common/configuration/configuration-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export type InsightsConfigurationOptions = {
appInsightsInstrumentationKey?: string;
bundled?: string;
telemetryBuildName: string;
unifiedAppVersion: string;
};

export interface ConfigAccessor {
Expand Down
Binary file removed src/icons/brand/blue/electron-icons/icon.icns
Binary file not shown.
Binary file removed src/icons/brand/blue/electron-icons/icon.ico
Binary file not shown.
Binary file removed src/icons/brand/blue/electron-icons/icon.png
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,13 @@ 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)', () => {
expect(config.getOption('fullName')).toBe(defaultName);
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);
Expand Down

0 comments on commit b44fa09

Please sign in to comment.