Skip to content

Commit b3f2783

Browse files
committed
minor repo config bits
1 parent 0435135 commit b3f2783

File tree

7 files changed

+42
-60
lines changed

7 files changed

+42
-60
lines changed

.gitattributes

Lines changed: 28 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,38 @@
1-
* text=auto encoding=UTF-8
2-
3-
*.bat text eol=lf encoding=UTF-8
4-
*.c text eol=lf encoding=UTF-8
5-
*.cpp text eol=lf encoding=UTF-8
6-
*.css text eol=lf encoding=UTF-8
7-
*.cxx text eol=lf encoding=UTF-8
8-
*.dox text eol=lf encoding=UTF-8
9-
*.h text eol=lf encoding=UTF-8
10-
*.hint text eol=lf encoding=UTF-8
1+
* text eol=lf encoding=UTF-8
112
*.hlsl text eol=crlf encoding=UTF-8
12-
*.hpp text eol=lf encoding=UTF-8
13-
*.htm text eol=lf encoding=UTF-8
14-
*.html text eol=lf encoding=UTF-8
15-
*.hxx text eol=lf encoding=UTF-8
16-
*.ini text eol=lf encoding=UTF-8
17-
*.inl text eol=lf encoding=UTF-8
18-
*.md text eol=lf encoding=UTF-8
19-
*.natvis text eol=lf encoding=UTF-8
20-
*.props text eol=lf encoding=UTF-8
21-
*.py text eol=lf encoding=UTF-8
223
*.rc text eol=crlf encoding=UTF-8
23-
*.runsettings text eol=lf encoding=UTF-8
244
*.sln text eol=crlf encoding=UTF-8-BOM
25-
*.svg text eol=lf encoding=UTF-8
26-
*.toml text eol=lf encoding=UTF-8
27-
*.txt text eol=lf encoding=UTF-8
285
*.vcxproj text eol=crlf encoding=UTF-8-BOM
296
*.vcxproj.filters text eol=crlf encoding=UTF-8-BOM
30-
*.xml text eol=lf encoding=UTF-8
31-
*.yaml text eol=lf encoding=UTF-8
32-
*.yml text eol=lf encoding=UTF-8
33-
.clang-format text eol=lf encoding=UTF-8
34-
.editorconfig text eol=lf encoding=UTF-8
35-
.gitattributes text eol=lf encoding=UTF-8
36-
.gitignore text eol=lf encoding=UTF-8
37-
Doxyfile text eol=lf encoding=UTF-8
38-
Doxyfile-mcss text eol=lf encoding=UTF-8
39-
meson.build text eol=lf encoding=UTF-8
407

41-
*.cs eol=lf diff=csharp
8+
*.cs eol=lf diff=csharp
429

43-
*.doc diff=astextplain
44-
*.DOC diff=astextplain
45-
*.docx diff=astextplain
46-
*.DOCX diff=astextplain
47-
*.dot diff=astextplain
48-
*.DOT diff=astextplain
49-
*.pdf diff=astextplain
50-
*.PDF diff=astextplain
51-
*.rtf diff=astextplain
52-
*.RTF diff=astextplain
10+
*.doc diff=astextplain
11+
*.DOC diff=astextplain
12+
*.docx diff=astextplain
13+
*.DOCX diff=astextplain
14+
*.dot diff=astextplain
15+
*.DOT diff=astextplain
16+
*.pdf diff=astextplain
17+
*.PDF diff=astextplain
18+
*.rtf diff=astextplain
19+
*.RTF diff=astextplain
5320

54-
*.ai binary
55-
*.bin binary
56-
*.bmp binary
57-
*.dat binary
58-
*.gif binary
59-
*.ico binary
60-
*.jpeg binary
61-
*.jpg binary
62-
*.png binary
63-
*.psd binary
64-
*.rc binary
65-
*.xlsx binary
21+
*.ai binary
22+
*.bin binary
23+
*.bmp binary
24+
*.dat binary
25+
*.gif binary
26+
*.ico binary
27+
*.jpeg binary
28+
*.jpg binary
29+
*.otf binary
30+
*.png binary
31+
*.psd binary
32+
*.rc binary
33+
*.ttf binary
34+
*.woff binary
35+
*.woff2 binary
36+
*.xlsx binary
6637

6738
vendor/* linguist-vendored

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: marzer

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![MIT license](docs/images/badge-license-MIT.svg)](./LICENSE)
66
[![ci](https://github.com/marzer/tomlplusplus/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/marzer/tomlplusplus/actions/workflows/ci.yaml)
77
[![Mentioned in Awesome C++](docs/images/badge-awesome.svg)](https://github.com/fffaraz/awesome-cpp)
8+
[![Sponsor](docs/images/badge-sponsor.svg)](https://github.com/sponsors/marzer)
89
[![Gitter](docs/images/badge-gitter.svg)](https://gitter.im/marzer/tomlplusplus)
910
====
1011

docs/images/badge-sponsor.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/poxy.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ theme = 'dark'
1616
extra_files = [
1717
'images/badge-awesome.svg',
1818
'images/badge-TOML.svg',
19-
'images/badge-gitter.svg'
19+
'images/badge-gitter.svg',
20+
'images/badge-sponsor.svg',
2021
]
21-
html_header = '<style>#poxy-main-banner { padding: 2rem; }</style>'
2222

2323

2424

@@ -72,7 +72,11 @@ macros = [ 'TOML_[A-Z0-9_]+?', 'print_value' ]
7272
'badge-awesome.svg',
7373
'https://github.com/fffaraz/awesome-cpp'
7474
]
75-
'4. Gitter' = [
75+
'4. Sponsor' = [
76+
'badge-sponsor.svg',
77+
'https://github.com/sponsors/marzer'
78+
]
79+
'5. Gitter' = [
7680
'badge-gitter.svg',
7781
'https://gitter.im/marzer/tomlplusplus'
7882
]

toml++.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
<None Include=".clang-format" />
8787
<None Include=".editorconfig" />
8888
<None Include=".gitattributes" />
89+
<None Include=".github\FUNDING.yml" />
8990
<None Include=".github\ISSUE_TEMPLATE\bug_report.md" />
9091
<None Include=".github\ISSUE_TEMPLATE\config.yml" />
9192
<None Include=".github\ISSUE_TEMPLATE\feature_request.md" />

toml++.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,9 @@
245245
<None Include="include\toml++\impl\path.inl">
246246
<Filter>include\impl</Filter>
247247
</None>
248+
<None Include=".github\FUNDING.yml">
249+
<Filter>.github</Filter>
250+
</None>
248251
</ItemGroup>
249252
<ItemGroup>
250253
<Filter Include="docs">

0 commit comments

Comments
 (0)