forked from dmikushin/tray
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c4801d
commit d2fc2dd
Showing
17 changed files
with
312 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,6 @@ | |
# build directories | ||
build/ | ||
cmake-*/ | ||
|
||
# doxyconfig | ||
docs/*-doxyconfig* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
|
||
build: | ||
os: ubuntu-24.04 | ||
tools: | ||
python: "miniconda-latest" | ||
commands: | ||
# because we are overriding the build commands, we need to setup the environment ourselves | ||
- cat third-party/doxyconfig/environment.yml | ||
- conda env create --quiet --name ${READTHEDOCS_VERSION} --file third-party/doxyconfig/environment.yml | ||
- npm install "@fortawesome/fontawesome-free" | ||
- mkdir -p ${READTHEDOCS_OUTPUT}html/assets/fontawesome/css | ||
- mkdir -p ${READTHEDOCS_OUTPUT}html/assets/fontawesome/js | ||
- cp node_modules/@fortawesome/fontawesome-free/css/all.min.css ${READTHEDOCS_OUTPUT}html/assets/fontawesome/css | ||
- cp node_modules/@fortawesome/fontawesome-free/js/all.min.js ${READTHEDOCS_OUTPUT}html/assets/fontawesome/js | ||
- cp -r node_modules/@fortawesome/fontawesome-free/webfonts ${READTHEDOCS_OUTPUT}html/assets/fontawesome/ | ||
- | | ||
wget "https://raw.githubusercontent.com/LizardByte/.github/master/branding/logos/favicon.ico" \ | ||
-O ${READTHEDOCS_OUTPUT}lizardbyte.ico | ||
- | | ||
wget "https://raw.githubusercontent.com/LizardByte/.github/master/branding/logos/logo-128x128.png" \ | ||
-O ${READTHEDOCS_OUTPUT}lizardbyte.png | ||
- cp ./third-party/doxyconfig/Doxyfile ./docs/Doxyfile-doxyconfig | ||
- cp ./third-party/doxyconfig/header.html ./docs/header-doxyconfig.html | ||
- cat ./docs/Doxyfile >> ./docs/Doxyfile-doxyconfig | ||
- cd docs && doxygen Doxyfile-doxyconfig | ||
|
||
# using conda, we can get newer doxygen and graphviz than ubuntu provide | ||
# https://github.com/readthedocs/readthedocs.org/issues/8151#issuecomment-890359661 | ||
conda: | ||
environment: third-party/doxyconfig/environment.yml | ||
|
||
submodules: | ||
include: all | ||
recursive: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This file describes the settings to be used by the documentation system | ||
# doxygen (www.doxygen.org) for a project. | ||
# | ||
# All text after a double hash (##) is considered a comment and is placed in | ||
# front of the TAG it is preceding. | ||
# | ||
# All text after a single hash (#) is considered a comment and will be ignored. | ||
# The format is: | ||
# TAG = value [value, ...] | ||
# For lists, items can also be appended using: | ||
# TAG += value [value, ...] | ||
# Values that contain spaces should be placed between quotes (\" \"). | ||
# | ||
# Note: | ||
# | ||
# Use doxygen to compare the used configuration file with the template | ||
# configuration file: | ||
# doxygen -x [configFile] | ||
# Use doxygen to compare the used configuration file with the template | ||
# configuration file without replacing the environment variables or CMake type | ||
# replacement variables: | ||
# doxygen -x_noenv [configFile] | ||
|
||
# must be first | ||
DOXYFILE_ENCODING = UTF-8 | ||
|
||
# project metadata | ||
DOCSET_BUNDLE_ID = dev.lizardbyte.tray | ||
DOCSET_PUBLISHER_ID = dev.lizardbyte.tray.documentation | ||
PROJECT_BRIEF = "Cross-platform, super tiny C99 implementation of a system tray icon with a popup menu and notifications." | ||
PROJECT_NAME = tray | ||
|
||
# project specific settings | ||
DOT_GRAPH_MAX_NODES = 50 | ||
IMAGE_PATH = ../docs/images | ||
INCLUDE_PATH = | ||
|
||
# files and directories to process | ||
USE_MDFILE_AS_MAINPAGE = ../README.md | ||
INPUT = ../README.md \ | ||
../third-party/doxyconfig/docs/source_code.md \ | ||
../src |
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.