Skip to content

Commit

Permalink
feat(series): support for rx6700xt (#2290)
Browse files Browse the repository at this point in the history
  • Loading branch information
aradenac authored Apr 5, 2021
1 parent ba35706 commit 113c9ce
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/reference/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| `MAX_PRICE_SERIES_RYZEN5800` | Maximum price allowed for a match, applies AMD 5800 series cpus |
| `MAX_PRICE_SERIES_RYZEN5900` | Maximum price allowed for a match, applies AMD 5900 series cpus |
| `MAX_PRICE_SERIES_RYZEN5950` | Maximum price allowed for a match, applies AMD 5950 series cpus |
| `MAX_PRICE_SERIES_RX6700XT` | Maximum price allowed for a match, applies AMD RX 6700 XT |
| `MAX_PRICE_SERIES_RX6800` | Maximum price allowed for a match, applies AMD RX 6800 |
| `MAX_PRICE_SERIES_RX6800XT` | Maximum price allowed for a match,applies AMD RX 6800 XT |
| `MAX_PRICE_SERIES_RX6900XT` | Maximum price allowed for a match, applies AMD RX 6900 XT |
Expand Down Expand Up @@ -230,6 +231,7 @@ Used with the `SHOW_ONLY_SERIES` variable.
| AMD Ryzen 5800x | `ryzen5800` |
| AMD Ryzen 5900x | `ryzen5900` |
| AMD Ryzen 5950x | `ryzen5950` |
| AMD RX 6700XT | `rx6700xt` |
| AMD RX 6800 | `rx6800` |
| AMD RX 6800XT | `rx6800xt` |
| AMD RX 6900XT | `rx6900xt` |
Expand Down
3 changes: 3 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ const notifications = {
3090: envOrArray(process.env.DISCORD_NOTIFY_GROUP_3090),
'captcha-deterrent': [],
darkhero: envOrArray(process.env.DISCORD_NOTIFY_GROUP_DARKHERO),
rx6700xt: envOrArray(process.env.DISCORD_NOTIFY_GROUP_RX6700XT),
rx6800: envOrArray(process.env.DISCORD_NOTIFY_GROUP_RX6800),
rx6800xt: envOrArray(process.env.DISCORD_NOTIFY_GROUP_RX6800XT),
rx6900xt: envOrArray(process.env.DISCORD_NOTIFY_GROUP_RX6900XT),
Expand Down Expand Up @@ -389,6 +390,7 @@ const store = {
3090: envOrNumber(process.env.MAX_PRICE_SERIES_3090),
'captcha-deterrent': 0,
darkhero: envOrNumber(process.env.MAX_PRICE_SERIES_DARKHERO),
rx6700xt: envOrNumber(process.env.MAX_PRICE_SERIES_RX6700XT),
rx6800: envOrNumber(process.env.MAX_PRICE_SERIES_RX6800),
rx6800xt: envOrNumber(process.env.MAX_PRICE_SERIES_RX6800XT),
rx6900xt: envOrNumber(process.env.MAX_PRICE_SERIES_RX6900XT),
Expand Down Expand Up @@ -419,6 +421,7 @@ const store = {
'3070',
'3080',
'3090',
'rx6700xt',
'rx6800',
'rx6800xt',
'rx6900xt',
Expand Down
6 changes: 6 additions & 0 deletions src/store/model/ldlc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,12 @@ export const Ldlc: Store = {
series: '3080',
url: 'https://www.ldlc.com/fr-be/fiche/PB00398373.html',
},
{
brand: 'asrock',
model: 'amd reference',
series: 'rx6700xt',
url: 'https://www.ldlc.com/fiche/PB00412453.html',
},
],
name: 'ldlc',
};
1 change: 1 addition & 0 deletions src/store/model/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export type Series =
| '3090'
| 'darkhero'
| 'rx6800'
| 'rx6700xt'
| 'rx6800xt'
| 'rx6900xt'
| 'ryzen5600'
Expand Down

0 comments on commit 113c9ce

Please sign in to comment.