poxy 0.18.0__py3-none-any.whl → 0.19.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. poxy/generated/poxy.css +2 -1
  2. poxy/main.py +9 -2
  3. poxy/mcss/CONTRIBUTING.rst +1 -1
  4. poxy/mcss/CREDITS.rst +2 -0
  5. poxy/mcss/css/m-components.css +1 -1
  6. poxy/mcss/css/m-debug.css +1 -1
  7. poxy/mcss/css/m-documentation.css +1 -1
  8. poxy/mcss/css/m-grid.css +1 -1
  9. poxy/mcss/css/m-layout.css +1 -1
  10. poxy/mcss/documentation/__init__.py +1 -1
  11. poxy/mcss/documentation/_search.py +1 -1
  12. poxy/mcss/documentation/doxygen.py +202 -25
  13. poxy/mcss/documentation/python.py +66 -22
  14. poxy/mcss/documentation/search.js +1 -1
  15. poxy/mcss/plugins/ansilexer.py +1 -1
  16. poxy/mcss/plugins/dot2svg.py +1 -1
  17. poxy/mcss/plugins/latex2svgextra.py +1 -1
  18. poxy/mcss/plugins/m/__init__.py +1 -1
  19. poxy/mcss/plugins/m/abbr.py +1 -1
  20. poxy/mcss/plugins/m/alias.py +1 -1
  21. poxy/mcss/plugins/m/code.py +4 -5
  22. poxy/mcss/plugins/m/components.py +1 -1
  23. poxy/mcss/plugins/m/dot.py +1 -1
  24. poxy/mcss/plugins/m/dox.py +1 -1
  25. poxy/mcss/plugins/m/filesize.py +1 -1
  26. poxy/mcss/plugins/m/gh.py +1 -1
  27. poxy/mcss/plugins/m/gl.py +1 -1
  28. poxy/mcss/plugins/m/htmlsanity.py +14 -6
  29. poxy/mcss/plugins/m/images.py +1 -1
  30. poxy/mcss/plugins/m/link.py +1 -1
  31. poxy/mcss/plugins/m/math.py +1 -1
  32. poxy/mcss/plugins/m/metadata.py +1 -1
  33. poxy/mcss/plugins/m/plots.py +1 -1
  34. poxy/mcss/plugins/m/qr.py +1 -1
  35. poxy/mcss/plugins/m/sphinx.py +1 -1
  36. poxy/mcss/plugins/m/vk.py +1 -1
  37. poxy/project.py +25 -5
  38. poxy/run.py +103 -17
  39. poxy/version.txt +1 -1
  40. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/METADATA +182 -170
  41. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/RECORD +46 -46
  42. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/WHEEL +1 -1
  43. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/LICENSE.txt +0 -0
  44. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/entry_points.txt +0 -0
  45. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/top_level.txt +0 -0
  46. {poxy-0.18.0.dist-info → poxy-0.19.1.dist-info}/zip-safe +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: poxy
3
- Version: 0.18.0
3
+ Version: 0.19.1
4
4
  Summary: Documentation generator for C++.
5
5
  Author-email: Mark Gillard <mark.gillard@outlook.com.au>
6
6
  License: MIT
@@ -18,14 +18,14 @@ Classifier: Topic :: Utilities
18
18
  Requires-Python: >=3.7
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE.txt
21
- Requires-Dist: misk >=0.8.1
21
+ Requires-Dist: misk>=0.8.1
22
22
  Requires-Dist: bs4
23
23
  Requires-Dist: jinja2
24
24
  Requires-Dist: pygments
25
25
  Requires-Dist: html5lib
26
26
  Requires-Dist: lxml
27
27
  Requires-Dist: tomli
28
- Requires-Dist: schema !=0.7.5
28
+ Requires-Dist: schema!=0.7.5
29
29
  Requires-Dist: requests
30
30
  Requires-Dist: trieregex
31
31
  Requires-Dist: colorama
@@ -221,352 +221,364 @@ Poxy bundles a fork of m.css, used per the [MIT/Expat license](https://github.co
221
221
 
222
222
  # Changelog
223
223
 
224
+ ## v0.19.1 - 2024-10-30
225
+
226
+ - fixed `ModuleNotFoundError` error in Python 3.12
227
+
228
+ ## v0.19.0 - 2024-09-15
229
+
230
+ - fixed crash when using simple type specifiers in friend declarations (#37) (@benjaminulmer)
231
+ - added workaround for [this issue](https://github.com/mosra/m.css/issues/239) introduced in Doxygen 1.9.7
232
+ - added auto-linking for various cppreference.com pages
233
+ - made `--bug-report` keep a copy of the original (pre-pre-processed?) XML
234
+ - updated m.css
235
+
224
236
  ## v0.18.0 - 2024-08-03
225
237
 
226
- - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
238
+ - added config option `excluded_symbols` (a.k.a. Doxygen's `EXCLUDE_SYMBOLS`) (#36) (@Guekka)
227
239
 
228
240
  ## v0.17.2 - 2024-06-16
229
241
 
230
- - fixed qualified return types appearing squashed together without whitespace in some circumstances
231
- - fixed performance regression in post-process step
232
- - updated m.css
233
- - minor style fixes
242
+ - fixed qualified return types appearing squashed together without whitespace in some circumstances
243
+ - fixed performance regression in post-process step
244
+ - updated m.css
245
+ - minor style fixes
234
246
 
235
247
  ## v0.17.1 - 2024-06-14
236
248
 
237
- - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
249
+ - fixed `'tuple' object has no attribute 'week'` error on Python &lt;= 3.8
238
250
 
239
251
  ## v0.17.0 - 2024-04-21
240
252
 
241
- - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
253
+ - added arguments `--min-version` and `--squash-patches` for more control over `--git-tags` mode
242
254
 
243
255
  ## v0.16.0 - 2024-01-28
244
256
 
245
- - added multi-version mode argument `--git-tags`
246
- - added colour to output
257
+ - added multi-version mode argument `--git-tags`
258
+ - added colour to output
247
259
 
248
260
  ## v0.15.0 - 2023-12-08
249
261
 
250
- - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
251
- - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
262
+ - added config option `main_page` (a.k.a. `USE_MDFILE_AS_MAINPAGE`)
263
+ - fixed searching for `CHANGELOG` too far up the directory heirarchy (now stops when a `.git` folder is encountered)
252
264
 
253
265
  ## v0.14.0 - 2023-11-25
254
266
 
255
- - added the use of `*` wildcards in `implementation_headers`
267
+ - added the use of `*` wildcards in `implementation_headers`
256
268
 
257
269
  ## v0.13.9 - 2023-09-10
258
270
 
259
- - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
271
+ - fixed crash on Doxygen &lt;= 1.8.17 (#33) (@tim-janik)
260
272
 
261
273
  ## v0.13.8 - 2023-09-09
262
274
 
263
- - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
275
+ - fixed regression for Python &lt;= 3.8 (#32) (@tim-janik)
264
276
 
265
277
  ## v0.13.7 - 2023-08-17
266
278
 
267
- - fixed minor syntax highlighting issues
279
+ - fixed minor syntax highlighting issues
268
280
 
269
281
  ## v0.13.6 - 2023-08-10
270
282
 
271
- - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
283
+ - update m.css to fix libgs.so lookup (#31) (@wroyca, @mosra)
272
284
 
273
285
  ## v0.13.5 - 2023-08-09
274
286
 
275
- - fixed `--bug-report` regression (#29) (@wroyca)
287
+ - fixed `--bug-report` regression (#29) (@wroyca)
276
288
 
277
289
  ## v0.13.4 - 2023-08-06
278
290
 
279
- - fixed excessive `template<>` noise in details views
291
+ - fixed excessive `template<>` noise in details views
280
292
 
281
293
  ## v0.13.3 - 2023-08-01
282
294
 
283
- - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
295
+ - fixed floating TOCs sometimes clipping off the bottom of the screen when the viewport was vertically narrow
284
296
 
285
297
  ## v0.13.2 - 2023-07-31
286
298
 
287
- - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
288
- - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
289
- - minor style fixes
299
+ - fixed doxygen's `@ref` links to `#id` anchors on the same page being treated as external links
300
+ - added auto-linking for C++ [named requirements](https://en.cppreference.com/w/cpp/named_req)
301
+ - minor style fixes
290
302
 
291
303
  ## v0.13.1 - 2023-07-29
292
304
 
293
- - fixed crash regression with Doxygen 1.9.7
294
- - fixed issues with \[tag\] substitution
295
- - minor style fixes
305
+ - fixed crash regression with Doxygen 1.9.7
306
+ - fixed issues with \[tag\] substitution
307
+ - minor style fixes
296
308
 
297
309
  ## v0.13.0 - 2023-07-28
298
310
 
299
- - migrated to `pyproject.toml`
300
- - fixed footer being off-center (#24) (@wroyca)
301
- - fixed redundant `auto` in trailing return types (#26) (@wroyca)
302
- - added config option `sponsor`
303
- - added config option `twitter`
311
+ - migrated to `pyproject.toml`
312
+ - fixed footer being off-center (#24) (@wroyca)
313
+ - fixed redundant `auto` in trailing return types (#26) (@wroyca)
314
+ - added config option `sponsor`
315
+ - added config option `twitter`
304
316
 
305
317
  ## v0.12.7 - 2023-07-27
306
318
 
307
- - allowed the use of square-bracket \[tags\] in more places
319
+ - allowed the use of square-bracket \[tags\] in more places
308
320
 
309
321
  ## v0.12.6 - 2023-07-25
310
322
 
311
- - fixed overlong `template<>` lines in summary views
312
- - fixed function parameter names greedily wrapping in details tables
323
+ - fixed overlong `template<>` lines in summary views
324
+ - fixed function parameter names greedily wrapping in details tables
313
325
 
314
326
  ## v0.12.5 - 2023-07-20
315
327
 
316
- - fixed overlong `template<>` lines in page headers (they now wrap)
328
+ - fixed overlong `template<>` lines in page headers (they now wrap)
317
329
 
318
330
  ## v0.12.4 - 2023-03-23
319
331
 
320
- - fixed changelog not auto-linking with some versions of Doxygen
332
+ - fixed changelog not auto-linking with some versions of Doxygen
321
333
 
322
334
  ## v0.12.3 - 2023-02-09
323
335
 
324
- - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
336
+ - fixed backwards-incompatible use of a newer `argparse` feature on Python &lt;= 3.8 (#20) (@fwerner)
325
337
 
326
338
  ## v0.12.2 - 2023-02-08
327
339
 
328
- - switched default TOML lib to `tomli`
340
+ - switched default TOML lib to `tomli`
329
341
 
330
342
  ## v0.12.1 - 2022-11-22
331
343
 
332
- - fixed `github` and `gitlab` config options not accepting periods (`.`)
344
+ - fixed `github` and `gitlab` config options not accepting periods (`.`)
333
345
 
334
346
  ## v0.12.0 - 2022-11-13
335
347
 
336
- - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
337
- - added command-line option `--bug-report`
338
- - improved diagnostic text in some areas
348
+ - fixed `AttributeError` during XML post-processing (#17) (@wroyca)
349
+ - added command-line option `--bug-report`
350
+ - improved diagnostic text in some areas
339
351
 
340
352
  ## v0.11.1 - 2022-10-23
341
353
 
342
- - fixed crash when using `<a>` tags in navbar
354
+ - fixed crash when using `<a>` tags in navbar
343
355
 
344
356
  ## v0.11.0 - 2022-10-21
345
357
 
346
- - added syntax highlighting for functions
347
- - improved syntax highlighting of typenames
358
+ - added syntax highlighting for functions
359
+ - improved syntax highlighting of typenames
348
360
 
349
361
  ## v0.10.2 - 2022-10-16
350
362
 
351
- - fixed crash when tagfile is disabled
352
- - fixed a few syntax highlighting edge-cases
353
- - fixed non-determinism in XML output formatting
354
- - improved performance of syntax highlighting post-process
355
- - minor style fixes
363
+ - fixed crash when tagfile is disabled
364
+ - fixed a few syntax highlighting edge-cases
365
+ - fixed non-determinism in XML output formatting
366
+ - improved performance of syntax highlighting post-process
367
+ - minor style fixes
356
368
 
357
369
  ## v0.10.1 - 2022-10-15
358
370
 
359
- - minor style fixes
371
+ - minor style fixes
360
372
 
361
373
  ## v0.10.0 - 2022-10-14
362
374
 
363
- - fixed `static` keyword sometimes appearing twice on variables
364
- - fixed `constexpr` keyword sometimes leaking into variable type
365
- - fixed newer versions of pygments adding unnecessary markup to whitespace
366
- - fixed malformed trailing return types in some circumstances
367
- - fixed changelog page sometimes not having a table-of-contents
368
- - added support for C++20's `constinit`
369
- - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
370
- - added command-line options `--html`, `--no-html`
371
- - added command-line options `--xml`, `--no-xml`
372
- - added command-line option `--no-werror`
373
- - added `CHANGES` to the set of candidate changelog filenames
374
- - deprecated command-line option `--xmlonly`
375
- - removed command-line option `--doxygen`
375
+ - fixed `static` keyword sometimes appearing twice on variables
376
+ - fixed `constexpr` keyword sometimes leaking into variable type
377
+ - fixed newer versions of pygments adding unnecessary markup to whitespace
378
+ - fixed malformed trailing return types in some circumstances
379
+ - fixed changelog page sometimes not having a table-of-contents
380
+ - added support for C++20's `constinit`
381
+ - added fallback to `tomllib` or `tomli` if `pytomlpp` is not available
382
+ - added command-line options `--html`, `--no-html`
383
+ - added command-line options `--xml`, `--no-xml`
384
+ - added command-line option `--no-werror`
385
+ - added `CHANGES` to the set of candidate changelog filenames
386
+ - deprecated command-line option `--xmlonly`
387
+ - removed command-line option `--doxygen`
376
388
 
377
389
  ## v0.9.1 - 2022-10-04
378
390
 
379
- - fixed SVG inlining not preserving original image class attributes
380
- - fixed `ValueError` when reading some SVG files
381
- - fixed `navbar` option allowing duplicates
382
- - fixed custom navbar items always being transformed to lowercase
383
- - fixed navbar generating links to empty pages
384
- - added `concepts` to the default set of links in `navbar`
385
- - added `navbar` values `all` and `default`
386
- - reduced I/O churn during HTML post-processing
387
- - removed command-line option `--dry`
391
+ - fixed SVG inlining not preserving original image class attributes
392
+ - fixed `ValueError` when reading some SVG files
393
+ - fixed `navbar` option allowing duplicates
394
+ - fixed custom navbar items always being transformed to lowercase
395
+ - fixed navbar generating links to empty pages
396
+ - added `concepts` to the default set of links in `navbar`
397
+ - added `navbar` values `all` and `default`
398
+ - reduced I/O churn during HTML post-processing
399
+ - removed command-line option `--dry`
388
400
 
389
401
  ## v0.9.0 - 2022-10-03
390
402
 
391
- - added support for C++20 concepts
403
+ - added support for C++20 concepts
392
404
 
393
405
  ## v0.8.2 - 2022-10-01
394
406
 
395
- - added post-process to inline all local SVGs
396
- - minor style fixes
407
+ - added post-process to inline all local SVGs
408
+ - minor style fixes
397
409
 
398
410
  ## v0.8.1 - 2022-09-30
399
411
 
400
- - minor style fixes
412
+ - minor style fixes
401
413
 
402
414
  ## v0.8.0 - 2022-09-29
403
415
 
404
- - added config option `gitlab` (#13) (@wroyca)
405
- - added ixx module extension in source patterns (#11) (@wroyca)
406
- - added support for multi-codepoint emojis
407
- - improved `doxygen.exe` location discovery on Windows
408
- - improved `CHANGELOG` location discovery
409
- - moved all poxy assets in the generated HTML to `html/poxy`
410
- - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
411
- - removed ability to override m.css implementation
412
- - removed legacy support for reading config options from neighbouring Doxyfiles
413
- - overhauled the light theme
414
- - many minor style fixes and tweaks
416
+ - added config option `gitlab` (#13) (@wroyca)
417
+ - added ixx module extension in source patterns (#11) (@wroyca)
418
+ - added support for multi-codepoint emojis
419
+ - improved `doxygen.exe` location discovery on Windows
420
+ - improved `CHANGELOG` location discovery
421
+ - moved all poxy assets in the generated HTML to `html/poxy`
422
+ - self-hosted google fonts in generated HTML (instead of requiring additional HTTP requests on page load) (#6)
423
+ - removed ability to override m.css implementation
424
+ - removed legacy support for reading config options from neighbouring Doxyfiles
425
+ - overhauled the light theme
426
+ - many minor style fixes and tweaks
415
427
 
416
428
  ## v0.7.1 - 2022-08-17
417
429
 
418
- - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
430
+ - fixed crash on python &lt;= 3.8 (#9) (@wroyca)
419
431
 
420
432
  ## v0.7.0 - 2022-08-16
421
433
 
422
- - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
423
- - added `theme` command-line option
424
- - added `html_header` config option option
425
- - added automatic generation of github links in changelog when config option `github` is set
426
- - added new light theme
427
- - added dynamic switch for dark/light theme
428
- - removed text from github icon on navbar (#5) (@wroyca)
429
- - removed excessive spacing between article sections (#5) (@wroyca)
430
- - many minor style fixes and tweaks
434
+ - fixed some `<link>`, `<meta>` and `<script>` tags not being included in `<head>` when a file was excluded from post-processing
435
+ - added `theme` command-line option
436
+ - added `html_header` config option option
437
+ - added automatic generation of github links in changelog when config option `github` is set
438
+ - added new light theme
439
+ - added dynamic switch for dark/light theme
440
+ - removed text from github icon on navbar (#5) (@wroyca)
441
+ - removed excessive spacing between article sections (#5) (@wroyca)
442
+ - many minor style fixes and tweaks
431
443
 
432
444
  ## v0.6.1 - 2022-08-16
433
445
 
434
- - fixed multi-row navbar occluding page content (#3) (@wroyca)
446
+ - fixed multi-row navbar occluding page content (#3) (@wroyca)
435
447
 
436
448
  ## v0.6.0 - 2022-08-14
437
449
 
438
- - fixed malformed error messages in some circumstances
439
- - added builtin C++ standard macros for C++23
440
- - added `changelog` config option
441
- - updated cppreference.com tagfile
450
+ - fixed malformed error messages in some circumstances
451
+ - added builtin C++ standard macros for C++23
452
+ - added `changelog` config option
453
+ - updated cppreference.com tagfile
442
454
 
443
455
  ## v0.5.7 - 2022-05-17
444
456
 
445
- - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
457
+ - fixed being able to pass >= 33 threads to Doxygen's `NUM_PROC_THREADS`
446
458
 
447
459
  ## v0.5.6 - 2022-05-14
448
460
 
449
- - fixed path error when using `--dry`
450
- - fixed `friend` keyword sometimes leaking into function return types
451
- - added additional language code block aliases
452
- - added `--nocleanup` to `--help` output
453
- - added support for C++20's `consteval` keyword
461
+ - fixed path error when using `--dry`
462
+ - fixed `friend` keyword sometimes leaking into function return types
463
+ - added additional language code block aliases
464
+ - added `--nocleanup` to `--help` output
465
+ - added support for C++20's `consteval` keyword
454
466
 
455
467
  ## v0.5.5 - 2022-04-16
456
468
 
457
- - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
469
+ - fixed C++20 concepts causing a crash in m.css (they are now skipped with a warning) (#1) (@jake-arkinstall)
458
470
 
459
471
  ## v0.5.4 - 2022-04-15
460
472
 
461
- - updated m.css
462
- - updated emoji database
473
+ - updated m.css
474
+ - updated emoji database
463
475
 
464
476
  ## v0.5.3 - 2021-12-12
465
477
 
466
- - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
467
- - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
478
+ - fixed Doxygen bug that would sometimes treat keywords like `friend` as part of a function's return type
479
+ - Blacklisted schema 0.7.5 because [it's broken](https://github.com/keleshev/schema/issues/272)
468
480
 
469
481
  ## v0.5.2 - 2021-11-02
470
482
 
471
- - fixed over-eager link-replacement for internal `#anchor` links
472
- - added command-line options `--ppinclude` and `--ppexclude`
483
+ - fixed over-eager link-replacement for internal `#anchor` links
484
+ - added command-line options `--ppinclude` and `--ppexclude`
473
485
 
474
486
  ## v0.5.1 - 2021-10-09
475
487
 
476
- - fixed over-eager link replacement causing text to be deleted
488
+ - fixed over-eager link replacement causing text to be deleted
477
489
 
478
490
  ## v0.5.0 - 2021-09-11
479
491
 
480
- - fixed a crash during HTML post-processing
481
- - fixed `implementation_headers` not working when paths use backslashes
482
- - added warnings when `implementation_headers` doesn't match anything
492
+ - fixed a crash during HTML post-processing
493
+ - fixed `implementation_headers` not working when paths use backslashes
494
+ - added warnings when `implementation_headers` doesn't match anything
483
495
 
484
496
  ## v0.4.5 - 2021-06-08
485
497
 
486
- - added command-line option `--xmlonly`
498
+ - added command-line option `--xmlonly`
487
499
 
488
500
  ## v0.4.3 - 2021-05-31
489
501
 
490
- - fixed regression in `[code_blocks]` functionality
491
- - fixed minor issues in syntax highlighter
492
- - added symbols from doxygen tagfiles to the syntax highlighter
493
- - minor style tweaks
502
+ - fixed regression in `[code_blocks]` functionality
503
+ - fixed minor issues in syntax highlighter
504
+ - added symbols from doxygen tagfiles to the syntax highlighter
505
+ - minor style tweaks
494
506
 
495
507
  ## v0.4.1 - 2021-05-30
496
508
 
497
- - fixed `.dirs` being glommed as source paths
498
- - added config option `scripts`
499
- - added config option `stylesheets`
500
- - added config option `jquery`
501
- - added `custom` theme
502
- - added ability to use `HOME.md` as main page
503
- - added additional fix for inline `<code>` blocks
504
- - added `.poxy-toc` to table-of-contents elements
505
- - added floating page table-of-contents
506
- - removed m.css favicon fallback
507
- - made improvements to the `light` and `dark` themes
508
- - updated C++ doxygen tagfile
509
+ - fixed `.dirs` being glommed as source paths
510
+ - added config option `scripts`
511
+ - added config option `stylesheets`
512
+ - added config option `jquery`
513
+ - added `custom` theme
514
+ - added ability to use `HOME.md` as main page
515
+ - added additional fix for inline `<code>` blocks
516
+ - added `.poxy-toc` to table-of-contents elements
517
+ - added floating page table-of-contents
518
+ - removed m.css favicon fallback
519
+ - made improvements to the `light` and `dark` themes
520
+ - updated C++ doxygen tagfile
509
521
 
510
522
  ## v0.4.0 - 2021-05-29
511
523
 
512
- - added config option `theme`
513
- - added version number to CSS and javascript filenames to prevent browser cache issues
514
- - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
515
- - added `POXY_IGNORE(...)` magic macro
516
- - fixed alignment of nested images inside detail blocks
524
+ - added config option `theme`
525
+ - added version number to CSS and javascript filenames to prevent browser cache issues
526
+ - added `POXY_IMPLEMENTATION_DETAIL(...)` magic macro
527
+ - added `POXY_IGNORE(...)` magic macro
528
+ - fixed alignment of nested images inside detail blocks
517
529
 
518
530
  ## v0.3.4 - 2021-05-28
519
531
 
520
- - added basic `using` alias detection to syntax highlighter
521
- - added missing badges for C++23, 26 and 29
532
+ - added basic `using` alias detection to syntax highlighter
533
+ - added missing badges for C++23, 26 and 29
522
534
 
523
535
  ## v0.3.3 - 2021-05-23
524
536
 
525
- - fixed sorting of namespace and group members
526
- - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
527
- - added google structured data to `\pages`
537
+ - fixed sorting of namespace and group members
538
+ - fixed m.css failing with new versions of doxygen due to `Doxyfile.xml`
539
+ - added google structured data to `\pages`
528
540
 
529
541
  ## v0.3.2 - 2021-05-19
530
542
 
531
- - fixed formatting of `<meta>` tags
532
- - added config option `author`
533
- - added config option `robots`
534
- - added markup tag `[p]`
535
- - added markup tag `[center]`
543
+ - fixed formatting of `<meta>` tags
544
+ - added config option `author`
545
+ - added config option `robots`
546
+ - added markup tag `[p]`
547
+ - added markup tag `[center]`
536
548
 
537
549
  ## v0.3.1 - 2021-05-13
538
550
 
539
- - added config option `macros`
540
- - added command-line option `--version`
551
+ - added config option `macros`
552
+ - added command-line option `--version`
541
553
 
542
554
  ## v0.3.0 - 2021-05-09
543
555
 
544
- - Improved handling of m.css and Doxygen warnings and errors
545
- - added command-line option `--doxygen`
546
- - added command-line option `--werror`
547
- - added markup tag `[set_parent_class]`
548
- - added markup tag `[add_parent_class]`
549
- - added markup tag `[remove_parent_class]`
550
- - added config option `images`
551
- - added config option `examples`
552
- - added ability to specify tagfiles as URIs
556
+ - Improved handling of m.css and Doxygen warnings and errors
557
+ - added command-line option `--doxygen`
558
+ - added command-line option `--werror`
559
+ - added markup tag `[set_parent_class]`
560
+ - added markup tag `[add_parent_class]`
561
+ - added markup tag `[remove_parent_class]`
562
+ - added config option `images`
563
+ - added config option `examples`
564
+ - added ability to specify tagfiles as URIs
553
565
 
554
566
  ## v0.2.1 - 2021-05-07
555
567
 
556
- - fixed some minor autolinking issues
568
+ - fixed some minor autolinking issues
557
569
 
558
570
  ## v0.2.0 - 2021-05-06
559
571
 
560
- - added config option `source_patterns`
572
+ - added config option `source_patterns`
561
573
 
562
574
  ## v0.1.2 - 2021-05-02
563
575
 
564
- - fixed the Z-order of the nav bar being higher than the search overlay
565
- - added `NDEBUG` to the default set of defines
576
+ - fixed the Z-order of the nav bar being higher than the search overlay
577
+ - added `NDEBUG` to the default set of defines
566
578
 
567
579
  ## v0.1.1 - 2021-04-26
568
580
 
569
- - added an additional cleanup step to the HTML postprocessor
581
+ - added an additional cleanup step to the HTML postprocessor
570
582
 
571
583
  ## v0.1.0 - 2021-04-26
572
584