| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2021-12-03 | Update debug logging | Max Isom | 1 | -8/+5 | |
| 2021-12-03 | Return when queue is empty | Max Isom | 1 | -7/+9 | |
| 2021-12-03 | Disable @typescript-eslint/no-implicit-any-catch | Max Isom | 2 | -3/+4 | |
| (Strict mode in TS 4.4 enables useUnknownInCatchVariables, so this is redundant.) | |||||
| 2021-12-03 | add some debug logs | Hellyson Rodrigo Parteka | 1 | -1/+7 | |
| 2021-12-03 | fix(file-cache): add queue to handle eviction of old files | Hellyson Rodrigo Parteka | 1 | -4/+12 | |
| This commit also removes the `await` from every stream creation. The eviction will be handled totally assyncronously. The only drawback is the possibility of exceeding the cache limit for a moment, until the next execution of `evictOldest`. This will only be a problem if the cache is set too close to the remaining disk space, which I wouldn't recomend. I also removed the recursion. | |||||
| 2021-12-03 | fix(file-cache): try/catch to prevent concurrency issues | Hellyson Rodrigo Parteka | 1 | -3/+7 | |
| 2021-11-29 | Bump p-limit from 3.1.0 to 4.0.0 | dependabot[bot] | 2 | -2/+14 | |
| Bumps [p-limit](https://github.com/sindresorhus/p-limit) from 3.1.0 to 4.0.0. - [Release notes](https://github.com/sindresorhus/p-limit/releases) - [Commits](https://github.com/sindresorhus/p-limit/compare/v3.1.0...v4.0.0) --- updated-dependencies: - dependency-name: p-limit dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> | |||||
| 2021-11-29 | Bump inversify from 5.1.1 to 6.0.1 | dependabot[bot] | 2 | -5/+5 | |
| Bumps [inversify](https://github.com/inversify/InversifyJS) from 5.1.1 to 6.0.1. - [Release notes](https://github.com/inversify/InversifyJS/releases) - [Changelog](https://github.com/inversify/InversifyJS/blob/master/CHANGELOG.md) - [Commits](https://github.com/inversify/InversifyJS/compare/5.1.1...v6.0.1) --- updated-dependencies: - dependency-name: inversify dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> | |||||
| 2021-11-29 | Bump array-shuffle from 2.0.0 to 3.0.0 | dependabot[bot] | 2 | -5/+5 | |
| Bumps [array-shuffle](https://github.com/sindresorhus/array-shuffle) from 2.0.0 to 3.0.0. - [Release notes](https://github.com/sindresorhus/array-shuffle/releases) - [Commits](https://github.com/sindresorhus/array-shuffle/compare/v2.0.0...v3.0.0) --- updated-dependencies: - dependency-name: array-shuffle dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> | |||||
| 2021-11-28 | Merge pull request #415 from codetheweb/feature/better-file-caching | Max Isom | 19 | -158/+364 | |
| 2021-11-24 | Add back -re option on uncached streams | Max Isom | 1 | -9/+11 | |
| 2021-11-24 | Change event to close | Max Isom | 1 | -2/+2 | |
| 2021-11-24 | Merge branch 'master' into feature/better-file-caching | Max Isom | 5 | -4/+86 | |
| 2021-11-20 | Merge pull request #417 from DrunkenToast/remove | Max Isom | 5 | -4/+86 | |
| 2021-11-20 | Revert changes to .gitignore | Max Isom | 2 | -9/+1 | |
| 2021-11-20 | Merge branch 'master' into remove | Max Isom | 1 | -2/+6 | |
| 2021-11-20 | Update strings | Max Isom | 2 | -13/+10 | |
| 2021-11-20 | fix: loading message isn't required | DrunkenToast | 1 | -13/+9 | |
| 2021-11-20 | fix: range and q size check | DrunkenToast | 1 | -1/+6 | |
| 2021-11-20 | feat: remove from queue | DrunkenToast | 4 | -2/+86 | |
| + fix typo queuecommand | |||||
| 2021-11-20 | fix: change `player.add(...)` behavior | Hellyson Rodrigo Parteka | 1 | -16/+3 | |
| 2021-11-20 | fix: add missing `DIRECT_MESSAGES` intent | Hellyson Rodrigo Parteka | 1 | -0/+1 | |
| 2021-11-20 | Bump @discordjs/opus to latest | Max Isom | 2 | -465/+415 | |
| 2021-11-20 | chore: update `Lint & build` action to use nodejs 16 | Hellyson Rodrigo Parteka | 1 | -0/+3 | |
| This is the first time I'm working with actions... I hope this works | |||||
| 2021-11-20 | feat: discord.js v13 | Hellyson Rodrigo Parteka | 13 | -159/+382 | |
| 2021-11-20 | Only add event listeners once | Max Isom | 1 | -2/+6 | |
| See #372 | |||||
| 2021-11-19 | Add .removeOrphans() | Max Isom | 1 | -3/+11 | |
| 2021-11-19 | Move file caching logic to new FileCache service | Max Isom | 12 | -52/+154 | |
| Also: removes the -re ffmpeg option. If this option is passed, ffmpeg won't write to fs-capacitor (and the cache file) as fast as possible. In other words, the cache file won't finish writing until the entire stream has been played. | |||||
| 2021-11-19 | Better DX for `yarn dev` | Max Isom | 2 | -86/+163 | |
| 2021-11-18 | Add FileCache model | Max Isom | 7 | -9/+26 | |
| 2021-11-18 | Rename existing cache model | Max Isom | 4 | -8/+8 | |
| 2021-11-17 | Merge pull request #413 from Hellysonrp/fix-player-add-behavior | Max Isom | 1 | -16/+3 | |
| 2021-11-17 | fix: change `player.add(...)` behavior | Hellyson Rodrigo Parteka | 1 | -16/+3 | |
| 2021-11-17 | Merge pull request #373 from codetheweb/bugfix/only-add-listeners-once | Max Isom | 1 | -2/+6 | |
| 2021-11-17 | Merge branch 'master' into bugfix/only-add-listeners-once | Max Isom | 14 | -581/+763 | |
| 2021-11-17 | Merge pull request #397 from Hellysonrp/discord-js-v13 | Max Isom | 14 | -579/+760 | |
| 2021-11-17 | fix: add missing `DIRECT_MESSAGES` intent | Hellyson Rodrigo Parteka | 1 | -0/+1 | |
| 2021-11-16 | Bump @discordjs/opus to latest | Max Isom | 2 | -465/+415 | |
| 2021-11-16 | chore: update `Lint & build` action to use nodejs 16 | Hellyson Rodrigo Parteka | 1 | -0/+3 | |
| This is the first time I'm working with actions... I hope this works | |||||
| 2021-11-12 | gitignore, first commit fork | DrunkenToast | 1 | -0/+8 | |
| 2021-11-12 | feat: discord.js v13 | Hellyson Rodrigo Parteka | 13 | -155/+382 | |
| 2021-10-31 | Add -re flag | Max Isom | 1 | -0/+1 | |
| See #389, https://trac.ffmpeg.org/wiki/StreamingGuide | |||||
| 2021-10-03 | Only add event listeners once | Max Isom | 1 | -2/+6 | |
| See #372 | |||||
| 2021-10-02 | Always autoplay rather than alerting that it is paused | cheqpat | 1 | -1/+2 | |
| 2021-10-02 | implement @udany's fix | cheqpat | 1 | -4/+8 | |
| 2021-10-01 | Update parsing and validation logic for playlist-limit config | Thongrapee Panyapatiphan | 1 | -2/+2 | |
| 2021-10-01 | Remove custom getter | Thongrapee Panyapatiphan | 1 | -6/+2 | |
| 2021-10-01 | Add playlist-limit in config command | Thongrapee Panyapatiphan | 1 | -1/+15 | |
| 2021-10-01 | Simplify code | Thongrapee Panyapatiphan | 1 | -2/+2 | |
| 2021-10-01 | Remove eslint rule disable statement | Thongrapee Panyapatiphan | 1 | -1/+0 | |
