Skip to content

Commit 6ed5404

Browse files
committed
Merge branch 'master' into feature/bug_php_link
2 parents 8e3c885 + 1822879 commit 6ed5404

File tree

1,365 files changed

+541898
-240361
lines changed

Some content is hidden

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

1,365 files changed

+541898
-240361
lines changed

.codedocs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
EXCLUDE = addon cmake doc examples jquery templates testing winbuild src/logos.cpp src/lodepng.cpp
1+
EXCLUDE = addon cmake doc examples jquery templates testing deps/iconv_winbuild src/logos.cpp src/lodepng.cpp
22
FILE_PATTERNS = *.h *.cpp *.md
33
USE_MDFILE_AS_MAINPAGE = src/doxygen.md

.dockerignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
*~
2+
.*sw?
3+
\#*
4+
.DS_Store
5+
6+
*.rej
7+
*.orig
8+
9+
*.pro
10+
/packages/rpm/doxygen.spec
11+
*.idb
12+
*.pdb
13+
14+
/doxygen_docs
15+
/doxygen.tag
16+
/build*
17+
/qtools_docs
18+
/warnings.log
19+
20+
tags
21+
22+
.idea
23+
24+
/examples/html/*
25+
/examples/latex/*
26+
27+
Dockerfile

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
[*]
44
indent_style = space
55
indent_size = 2
6+
charset = utf-8
7+
8+
[*.py]
9+
indent_size = 4

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
* text=auto eol=lf
2+
* text
3+
4+
### Protected
5+
*.pdf binary
6+
*.ico binary
7+
*.jpg binary
8+
*.png binary
9+
*.lib binary

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: doxygen
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Report a bug or issue
3+
about: Create a report to help us improve doxygen
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
Describe what you see that (you think) is wrong.
12+
13+
**Screenshots**
14+
If useful, add screenshots to help explain your problem.
15+
16+
**To Reproduce**
17+
Attach a self contained example that allows us to reproduce the problem.
18+
Such an example typically exist of some source code (can be dummy code) and a doxygen configuration file used (you can strip it using `doxygen -s -u`). After you verified the example demonstrates the problem, put it in a zip (or tarball) and attach it to the bug report. Try to avoid linking to external sources, since they might disappear in the future.
19+
20+
**Expected behavior**
21+
Describe what you would have expected or think is correct.
22+
23+
**Version**
24+
Mention the version of doxygen used (output of `doxygen --version`) and the platform on which you run doxygen (e.g. Windows 10, 64 bit). If you run doxygen under Linux please also mention the name and version of the distribution used (output of `lsb_release -a`) and mention if you compiled doxygen yourself or that you use a binary that comes with the distribution or from the doxygen website.
25+
26+
**Stack trace**
27+
If you encounter a crash and can build doxygen from sources yourself with debug info (`-DCMAKE_BUILD_TYPE=Debug`), a stack trace can be very helpful (especially if it is not possible to capture the problem in a small example that can be shared).
28+
29+
**Additional context**
30+
Add any other context about the problem here.

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

0 commit comments

Comments
 (0)