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

Logs 🎉 #13

Merged
merged 23 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
da055e1
Update dependencies: Astro v4.11.5, Starlight v0.24.5
thomasbnt Jul 4, 2024
b28a8db
Refacto menu
thomasbnt Jul 4, 2024
252e575
The mod permission is now affected by filters
thomasbnt Jul 4, 2024
1995415
Logs part :tada:
thomasbnt Jul 4, 2024
33816ff
faq: Slash commands, close #7
thomasbnt Jul 4, 2024
67dcba1
Merge branch 'main' into feat-logs
thomasbnt Jul 4, 2024
c063d9d
fix typo beta
thomasbnt Jul 8, 2024
2099dbc
add img logs
thomasbnt Jul 9, 2024
a46abb7
logs: Part "Déplacer le salon des logs" and "J'ai supprimé le salon d…
thomasbnt Jul 9, 2024
b205cc1
config: redirect 'logs' to 'configuration/logs' (fr)
thomasbnt Jul 9, 2024
441091b
Add i18n note for translating commands
thomasbnt Jul 9, 2024
07d37e1
img swear system: change to local source for img
thomasbnt Jul 9, 2024
8c2d22f
img swear system: change to local source for img
thomasbnt Jul 9, 2024
fe339b1
logs: remove prefix command like "gérer"
thomasbnt Jul 9, 2024
4c3a830
pnpm install --no-frozen-lockfile
thomasbnt Jul 9, 2024
7a559a1
Merge branch 'main' into feat-logs
thomasbnt Jul 9, 2024
68807dc
pnpm install --no-frozen-lockfile
thomasbnt Jul 9, 2024
a335a94
pnpm install because lockfile is broken
thomasbnt Jul 9, 2024
e34ba3f
add link to add the bot on Header
thomasbnt Jul 9, 2024
7d22cf3
update package
thomasbnt Jul 29, 2024
c17c2ba
add banner to logs index
thomasbnt Jul 29, 2024
89ce90a
modify Header and PageSidebar
thomasbnt Jul 29, 2024
9b37061
del support link discord badge
thomasbnt Jul 31, 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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ sidebar: [
]
```

> ![NOTE]
> Each command must be translated into the good language if present.
> Example : `/aide` (in French, default command name) is `/help` in english.

## 🧞 Commands

Expand Down
29 changes: 19 additions & 10 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ export default defineConfig({
plugins: [
lunaria(),
],
components: {
Header: "./src/components/Header.astro",
PageSidebar: "./src/components/PageSidebar.astro",
},
head: [
{
tag: 'meta',
Expand Down Expand Up @@ -128,16 +132,18 @@ export default defineConfig({
autogenerate: {directory: 'getting-started'},
},
{
label: 'Configuration',
autogenerate: {directory: 'configuration'},
items: [
/*{ label: 'Internationalization (i18n)', link: '/guides/i18n/' },*/
{
label: 'Filtre contre les insultes',

autogenerate: {directory: 'configuration/swear'},
},
],
label: 'Système des logs',
translations: {
en: 'Logs system',
},
autogenerate: {directory: 'configuration/logs'},
},
{
label: 'Filtre contre les insultes',
translations: {
en: 'Swear filter',
},
autogenerate: {directory: 'configuration/swear'},
},
{
label: 'Commandes utilitaires',
Expand Down Expand Up @@ -246,4 +252,7 @@ export default defineConfig({
],
}),
],
redirects: {
'/logs': '/configuration/logs'
}
});
Loading
Loading