dev: Rename tools directory to scripts (#5035)

This commit is contained in:
pajlada 2023-12-17 13:37:30 +01:00 committed by GitHub
parent aa11a24163
commit 5dd8c1c88a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 5 additions and 1 deletions

View file

@ -33,4 +33,4 @@ jobs:
clangFormatVersion: 16
- name: Check line-endings
run: ./tools/check-line-endings.sh
run: ./scripts/check-line-endings.sh

View file

@ -82,6 +82,7 @@
- Dev: Refactor `DebugCount` and add copy button to debug popup. (#4921)
- Dev: Refactor `common/Credentials`. (#4979)
- Dev: Changed lifetime of context menus. (#4924)
- Dev: Renamed `tools` directory to `scripts`. (#5035)
- Dev: Refactor `ChannelView`, removing a bunch of clang-tidy warnings. (#4926)
- Dev: Refactor `IrcMessageHandler`, removing a bunch of clang-tidy warnings & changing its public API. (#4927)
- Dev: `Details` file properties tab is now populated on Windows. (#4912)

3
scripts/README.md Normal file
View file

@ -0,0 +1,3 @@
# scripts
This directory contains scripts that may be useful for a contributor to run while working on Chatterino

View file