Add an Acknowledgements section crediting the openSUSE maintainer for the packaging work under packaging/opensuse/. Drop the AI-assistant line from .gitignore (that ignore now lives in .git/info/exclude). Core code unchanged.
49 lines
548 B
Text
49 lines
548 B
Text
# Build outputs
|
|
/vaptvupt
|
|
/zupt
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.so.*
|
|
*.dylib
|
|
*.exe
|
|
*.obj
|
|
*.lib
|
|
|
|
# Python bytecode caches
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Coverage / profiling
|
|
*.gcda
|
|
*.gcno
|
|
*.gcov
|
|
*.profraw
|
|
|
|
# CMake / out-of-tree build dirs
|
|
/build/
|
|
/cmake-build-*/
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
|
|
# Distribution tarballs and packages (published as release assets, not committed)
|
|
/*.tar.gz
|
|
/*.tar.xz
|
|
/*.zip
|
|
/*.deb
|
|
/*.rpm
|
|
/*.AppImage
|
|
*.AppDir/
|
|
SHA256SUMS.txt
|
|
|
|
# Test/scratch binaries
|
|
/test_*
|
|
!/tests/test_*.c
|
|
!/tests/test_*.sh
|
|
|
|
# Editor / OS noise
|
|
*.swp
|
|
*~
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|