Compare commits

...

2 Commits

Author SHA1 Message Date
silentip404
1405bf091c
Merge 01e75ac83d into 3780fff86c 2026-05-19 15:10:35 +00:00
silentip404
01e75ac83d Improve macOS Icon pattern to prevent collaboration issues
Replace invisible CR with character class Icon[^!-~]

The literal CR character is frequently corrupted by:
- Text editors auto-trimming invisible chars
- Formatting tools (editorconfig) normalizing line endings
- Copy/paste operations losing special characters
- IDE auto-formatting and linting tools

Character class pattern is collaboration-safe and functionally identical.
2025-11-10 22:16:16 +08:00

View File

@ -4,7 +4,10 @@
__MACOSX/
.AppleDouble
.LSOverride
Icon[ ]
# Finder custom icons
# Pattern [^!-~] prevents corruption by line-ending converters and editor auto-formatting
Icon[^!-~]
# Resource forks
._*