Skip to content

Commit e009a3b

Browse files
authored
Merge pull request microsoft#158732 from microsoft/isidorn/characteristic-halibut
use .mp3 files for audio cues
2 parents 929a64a + a5db59a commit e009a3b

File tree

12 files changed

+8
-5
lines changed

12 files changed

+8
-5
lines changed

build/filters.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ module.exports.unicodeFilter = [
3939
'!**/test/**',
4040
'!**/*.test.ts',
4141
'!**/*.{d.ts,json,md}',
42+
'!**/*.mp3',
4243

4344
'!build/win32/**',
4445
'!extensions/markdown-language-features/notebook-out/*.js',
@@ -65,6 +66,7 @@ module.exports.indentationFilter = [
6566
'!**/LICENSE.{txt,rtf}',
6667
'!LICENSES.chromium.html',
6768
'!**/LICENSE',
69+
'!**/*.mp3',
6870
'!src/vs/loader.js',
6971
'!src/vs/base/browser/dompurify/*',
7072
'!src/vs/base/common/marked/marked.js',
@@ -135,6 +137,7 @@ module.exports.copyrightFilter = [
135137
'!**/*.cmd',
136138
'!**/*.ico',
137139
'!**/*.opus',
140+
'!**/*.mp3',
138141
'!**/*.icns',
139142
'!**/*.xml',
140143
'!**/*.sh',

src/vs/workbench/contrib/audioCues/browser/audioCueService.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@ export class Sound {
147147
}
148148

149149

150-
public static readonly error = Sound.register({ fileName: 'error.opus' });
151-
public static readonly warning = Sound.register({ fileName: 'warning.opus' });
152-
public static readonly foldedArea = Sound.register({ fileName: 'foldedAreas.opus' });
153-
public static readonly break = Sound.register({ fileName: 'break.opus' });
154-
public static readonly quickFixes = Sound.register({ fileName: 'quickFixes.opus' });
150+
public static readonly error = Sound.register({ fileName: 'error.mp3' });
151+
public static readonly warning = Sound.register({ fileName: 'warning.mp3' });
152+
public static readonly foldedArea = Sound.register({ fileName: 'foldedAreas.mp3' });
153+
public static readonly break = Sound.register({ fileName: 'break.mp3' });
154+
public static readonly quickFixes = Sound.register({ fileName: 'quickFixes.mp3' });
155155

156156
private constructor(public readonly fileName: string) { }
157157
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)