Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c5d448d
Update dependencies
krypciak Feb 20, 2024
9873d66
Add 'mod-add' command
krypciak Feb 20, 2024
85b4683
Move CCModDB repo info to secrets.json
krypciak Feb 21, 2024
1df0795
Fix .ccmod's not working
krypciak Feb 21, 2024
c052f29
Fix 'mod-add' not accepting some .zip urls
krypciak Feb 24, 2024
01ffc06
Change 'mod-add' to 'publish-mod'
krypciak Mar 11, 2024
3267bbe
Adapt .prettierrc.json options to better match the already existing c…
krypciak Apr 25, 2024
7c3ed27
Format structures.ts & mod-database.ts
krypciak Apr 25, 2024
5df0206
Use typings directly from CCModDB
krypciak Apr 25, 2024
7be88f6
Convert the .cc mods & .cc tools implementation to the new ccmod.json…
krypciak Apr 25, 2024
2f3b387
Silence typescript errors
krypciak Apr 25, 2024
0f47be9
Display more mod and tool metadata
krypciak Apr 25, 2024
6d71fb9
Also remove icons from mod names
krypciak Apr 26, 2024
b8a0290
Add CCModDB testing branch publish-mod support
krypciak May 4, 2024
2b54b91
Move to the new multi-branch mod database setupp
krypciak Jul 24, 2024
4cdce49
Allow the publish-mod command only in the specified channel
krypciak Aug 6, 2024
df82483
Force update the ccmoddb when an already existing mod archive url is …
krypciak Aug 6, 2024
73ec380
Supress publish-mod embeds
krypciak Aug 6, 2024
6ae27f9
Fix error related to deprecation of the mod package.json
krypciak Aug 6, 2024
bb4478d
Add the source argument to publish-mod
krypciak Aug 8, 2024
742450f
Make the publishChannelId secrets field an array
krypciak Aug 22, 2024
cfcb50b
Update mod endpoints to CCDirectLink
krypciak Sep 18, 2024
750c9b1
Update package.json CCModDB repo
krypciak Sep 18, 2024
ad1bfb1
Fix npm run lint not working
krypciak Oct 23, 2024
c0b65bc
Fix eslint not passing
krypciak Oct 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ overrides:
require-await: off
'@typescript-eslint/no-dynamic-delete': off
no-undefined: off
'node/no-unpublished-import': off
no-lone-blocks: off
11 changes: 11 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"semi": true,
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 170,
"quoteProps": "as-needed",
"bracketSpacing": false,
"arrowParens": "avoid"
}
4 changes: 2 additions & 2 deletions dynamic-data/init-entities.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
{
"type": "mod-database",
"refreshMs": 3600000,
"endpoint": "https://github.com/CCDirectLink/CCModDB/master/npDatabase.json"
"endpoint": "https://github.com/CCDirectLink/CCModDB/stable/npDatabase.min.json"
},
{
"type": "tool-database",
"refreshMs": 3600000,
"endpoint": "https://github.com/CCDirectLink/CCModDB/master/tools.json"
"endpoint": "https://github.com/CCDirectLink/CCModDB/stable/tools.json"
},
{
"type": "purge-database",
Expand Down
Loading