Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #201

Merged
merged 11 commits into from
Dec 21, 2023
Merged

Dev #201

Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.6.0](https://github.com/Mirasaki/cftools-discord-bot/compare/v1.5.1...v1.6.0) (2023-11-30)


### Features

* allow dynamic events to be included in the kill-feed module ([be0c117](https://github.com/Mirasaki/cftools-discord-bot/commit/be0c11740e62dd4e7f644783fc5c4a55d6d07c1f))

## [1.5.1](https://github.com/Mirasaki/cftools-discord-bot/compare/v1.5.0...v1.5.1) (2023-11-27)


Expand Down
10 changes: 5 additions & 5 deletions config/servers.example.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = [
CFTOOLS_SERVER_API_ID: 'YOUR_SERVER_API_ID',
SERVER_IPV4: '0.0.0.0',
SERVER_PORT: 2302,
CFTOOLS_WEBHOOK_CHANNEL_ID: '806479539110674472',
CFTOOLS_WEBHOOK_CHANNEL_ID: '1182012252715499591',
CFTOOLS_WEBHOOK_USER_ID: '290182686365188096',

// Command config
Expand All @@ -23,7 +23,7 @@ module.exports = [

// Live Discord > DayZ chat feed configuration
USE_CHAT_FEED: true,
CHAT_FEED_CHANNEL_IDS: [ '806479539110674472' ],
CHAT_FEED_CHANNEL_IDS: [ '1182012252715499591' ],
CHAT_FEED_REQUIRED_ROLE_IDS: [],
CHAT_FEED_USE_DISCORD_PREFIX: true,
CHAT_FEED_USE_DISPLAY_NAME: true,
Expand Down Expand Up @@ -58,13 +58,13 @@ module.exports = [
TELEPORT_LOCATIONS_FILE_NAME: 'chernarus',

// Watch list config
WATCH_LIST_CHANNEL_ID: '806479539110674472',
WATCH_LIST_CHANNEL_ID: '1182012252715499591',
WATCH_LIST_NOTIFICATION_ROLE_ID: '1112020551817502860',

// Kill Feed config
USE_KILL_FEED: true,
KILL_FEED_DELAY: 5,
KILL_FEED_CHANNEL_ID: '806479539110674472',
KILL_FEED_CHANNEL_ID: '1182012252715499591',
KILL_FEED_MESSAGE_IDENTIFIER: ' got killed by ',
KILL_FEED_REMOVE_IDENTIFIER: false,

Expand All @@ -90,7 +90,7 @@ module.exports = [

// Automatic Leaderboard
AUTO_LB_ENABLED: true,
AUTO_LB_CHANNEL_ID: '806479539110674472',
AUTO_LB_CHANNEL_ID: '1182012252715499591',
AUTO_LB_INTERVAL_IN_MINUTES: 60,
AUTO_LB_REMOVE_OLD_MESSAGES: true,
AUTO_LB_PLAYER_LIMIT: 100,
Expand Down
123 changes: 54 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cftools-discord-bot",
"description": "A discord bot template using discord.js",
"version": "1.5.1",
"version": "1.6.0",
"main": "src/index.js",
"scripts": {
"start": "node .",
Expand Down Expand Up @@ -48,14 +48,14 @@
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/github": "^9.2.4",
"@semantic-release/npm": "^11.0.1",
"@semantic-release/release-notes-generator": "^12.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"eslint": "^8.55.0",
"eslint-plugin-sonarjs": "^0.23.0",
"nodemon": "^3.0.1",
"nodemon": "^3.0.2",
"semantic-release": "^22.0.8"
},
"repository": {
Expand Down
Loading