Ignore all custom css files (#3359)

For experimenting, I sometimes work with different CSS files. I can
imagine that others do this too.

This setting for the css folder corresponds to the setting we already
have for the config folder.
This commit is contained in:
Kristjan ESPERANTO 2024-01-16 23:16:47 +01:00 committed by GitHub
parent 6dbacbb773
commit 35e4dfb3fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

6
.gitignore vendored
View File

@ -63,8 +63,10 @@ Temporary Items
!/modules/default/** !/modules/default/**
!/modules/README.md** !/modules/README.md**
# Ignore changes to the custom css files. # Ignore changes to the custom css files but keep the sample and main.
/css/custom.css /css/*
!/css/custom.css.sample
!/css/main.css
# Ignore users config file but keep the sample. # Ignore users config file but keep the sample.
/config/* /config/*

View File

@ -18,13 +18,14 @@ _This release is scheduled to be released on 2024-04-01._
- Removing lodash dependency by replacing merge by spread operator (#3339) - Removing lodash dependency by replacing merge by spread operator (#3339)
- Use node prefix for build-in modules (#3340) - Use node prefix for build-in modules (#3340)
- Rework logging colors (#3350) - Rework logging colors (#3350)
- Update electron to v28 and update other dependencies - Update electron to v28 and update other dependencies (#3357)
### Fixed ### Fixed
- Skip changelog requirement when running tests for dependency updates (#3320) - Skip changelog requirement when running tests for dependency updates (#3320)
- [newsfeed] Suppress unsightly animation cases when there are 0 or 1 active news items - [newsfeed] Suppress unsightly animation cases when there are 0 or 1 active news items (#3336)
- [newsfeed] Always compute the feed item URL using the same helper function - [newsfeed] Always compute the feed item URL using the same helper function (#3336)
- Ignore all custom css files (#3359)
### Deleted ### Deleted