Skip to content

Commit

Permalink
Fixes #374: Add lyrics support (#474)
Browse files Browse the repository at this point in the history
* Moving things around

* Adds lyrics screen. Still needs actual lyrics.

* Fixes a bug

* Adds basic lyrics support

* Improves robustness of LyricsService

* Adds AZLyricsAPI

* Adds integration tests for lyrics  API's

* Adds indication of lyrics source

* Adds many more lyrics sources

* Adds integration test for WebSearchLyrics

* Adds basic LRC file support

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Update README.md

* Improves lyrics screen
  • Loading branch information
digimezzo authored Nov 3, 2023
1 parent f4f0410 commit fd8ebb2
Show file tree
Hide file tree
Showing 88 changed files with 2,513 additions and 147 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
{
"parserOptions": {
"ecmaVersion": "latest"
},

"env": {
"es6": true
},
"root": true,
"ignorePatterns": ["projects/**/*"],
"overrides": [
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Clicking the volume icon now (un)mutes
- Dopamine now has a logarithmic volume control, because your ears are worth it!

### Changed

- Updated Russian translation (Thank you adem4ik)

### Fixed

- Loop one icon has no margin
Expand Down
12 changes: 8 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ module.exports = {
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths || {}, {
prefix: '<rootDir>/',
}),
globals: {
'ts-jest': {
tsConfig: '<rootDir>/tsconfig.spec.json',
},
transform: {
'^.+\\.{ts|tsx}?$': [
'ts-jest',
{
babel: true,
tsConfig: 'tsconfig.spec.json',
},
],
},
setupFiles: ['<rootDir>/jest.crypto-setup.js'],
};
Loading

0 comments on commit fd8ebb2

Please sign in to comment.