Skip to content

Commit

Permalink
wip: small random changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tabarra committed Nov 5, 2023
1 parent bd9e8df commit 72454b9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -92,7 +92,7 @@ ConVar usage **example** for different port and profile:
```

### Contributing & Development
- All PRs should be based on the develop branch, specially translation PRs.
- All PRs should be based on the develop branch, including translation PRs.
- Before putting effort for any significant PR, make sure to join our discord and talk to us, since the change you want to do might not have been done for a reason or there might be some required context.
- If you want to run it from build & source, please do read [this](docs/development.md).

Expand All @@ -103,4 +103,4 @@ ConVar usage **example** for different port and profile:
- Warning Sounds ([1](https://freesound.org/people/Ultranova105/sounds/136756/)/[2](https://freesound.org/people/Ultranova105/sounds/136754/)) made by Ultranova105 are licensed under [CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/);
- [Announcement Sound](https://freesound.org/people/IENBA/sounds/545495/) made by IENBA is licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/);
- [Message Sound](https://freesound.org/people/Divinux/sounds/198414/) made by Divinux is licensed under [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/);
- Special thanks to everyone that contributed to this project, specially the very fine Discord folks that provide support for others;
- Especial thanks to everyone that contributed to this project, especially the very fine Discord folks that provide support for others;
2 changes: 1 addition & 1 deletion core/components/FxRunner/index.js
Expand Up @@ -433,7 +433,7 @@ export default class FXRunner {
eventType,
JSON.stringify(data),
);
console.verbose.dir({ eventType, data});
// console.verbose.dir({ eventType, data});
return this.srvCmd(eventCommand);
} catch (error) {
console.verbose.error(`Error writing firing server event ${eventType}`);
Expand Down
2 changes: 1 addition & 1 deletion core/webroutes/settings/save.ts
Expand Up @@ -449,7 +449,7 @@ async function handleDiscord(ctx: AuthedCtx) {
Please keep in mind that:
- These permissions are dangerous because if the bot token leaks, an attacker can cause permanent damage to your server.
- No bot should have more permissions than strictly needed, specially \`Administrator\`.
- No bot should have more permissions than strictly needed, especially \`Administrator\`.
- You should never have multiple bots using the same token, create a new one for each bot.`;
}
return ctx.send({
Expand Down
2 changes: 1 addition & 1 deletion docs/dev_notes.md
Expand Up @@ -586,7 +586,7 @@ ui_cards 'list' {

### Update Event + Rollout strategy
This is not compatible with the update events.
If patch, show update notification immediately (specially important to quick-fix a bug).
If patch, show update notification immediately (especially important to quick-fix a bug).
If minor, randomize a delay between 0~24h.
If patch, randomize a delay 0~72h.

Expand Down
1 change: 1 addition & 0 deletions panel/.eslintrc.cjs
Expand Up @@ -16,5 +16,6 @@ module.exports = {
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/ban-ts-comment": "off'
},
};
2 changes: 2 additions & 0 deletions scripts/main-builder.js
Expand Up @@ -163,6 +163,8 @@ const runDevTask = async () => {
console.log(`[BUILDER] Restarting due to stdin request.`);
txInstance.killServer();
txInstance.spawnServer();
} else if (cmd === 'cls' || cmd === 'clear') {
console.clear();
}
});

Expand Down

0 comments on commit 72454b9

Please sign in to comment.