Skip to content

Commit ac0876a

Browse files
committed
First upload
First upload of FileTags x86 and FileTags x64 libraries and including docs and test projects.
0 parents  commit ac0876a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+5552
-0
lines changed

.gitattributes

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
* text eol=crlf
2+
*.exe binary
3+
*.a binary
4+
*.dll binary
5+
*.zip binary
6+
*.obj binary
7+
*.res binary
8+
*.lib binary
9+
*.dlg binary
10+
*.mnu binary
11+
*.ttf binary
12+
*.ico binary
13+
*.bmp binary
14+
*.png binary
15+
*.jpg binary
16+
*.rst linguist-documentation
17+
*.bat linguist-language=Text
18+
*.tpl linguist-language=Text
19+
*.rap linguist-language=Text
20+
*.bat linguist-language=Text
21+
*.asm linguist-language=Assembly
22+
*.inc linguist-language=Assembly
23+
*.rc linguist-language=Text
24+
*.hsl linguist-language=Text
25+
makefile linguist-language=Text
26+
conf.py linguist-language=Python

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
docs/build*/
2+
bak/
3+
*.chm
4+
package_releases.bat
5+
gendocs.bat
6+
*.old
7+
*.obj
8+
*.used

.readthedocs.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Build PDF, ePub & HTMLZip
9+
formats: all
10+
11+
python:
12+
install:
13+
- requirements: docs/requirements.txt
14+
15+
build:
16+
os: ubuntu-22.04
17+
tools:
18+
python: "3.12"
19+
20+
sphinx:
21+
builder: html
22+
configuration: docs/conf.py
23+
fail_on_warning: false

0 commit comments

Comments
 (0)