aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2021-10-27Fix markdown list in Bultin-options.md [skip ci]Matthieu Gautier1-3/+4
The broken list was introduce by commit f72ee8e7 which fix too long lines.
2021-10-26doc: Requires hotdoc >=0.13.7Xavier Claessens1-1/+3
Building documentation fails with older hotdoc versions.
2021-10-26message: Allow boolXavier Claessens1-3/+3
It has always been working even if not documented and there is no reason to not accept it. However, change "True/False" to "true/false" to be consistent with meson language. Fixes: #9436
2021-10-25Add sccache support.Jussi Pakkanen1-0/+5
2021-10-25Fix typos in release notes for 0.60.0Nirbheek Chauhan1-2/+2
2021-10-24Create release notes page for 0.60.Jussi Pakkanen33-360/+399
2021-10-24Merge pull request #9377 from mensinda/jsonDocsJussi Pakkanen9-17/+496
docs: Add a JSON documentation backend
2021-10-21Fix typosHofer-Julian4-4/+4
"seperator" -> "separator"
2021-10-11docs: fix a typoed arg name and another missing argEli Schwartz1-1/+5
More stuff that got overlooked during the big refman migration.
2021-10-10Add missing release snippet for option() deprecated kwargXavier Claessens1-0/+23
2021-10-10Add --vsenv command line option and active VS only when neededXavier Claessens1-0/+14
2021-10-10improve wraptool searchDaniel Jacobs1-0/+6
2021-10-10Fix typos discovered by codespellChristian Clauss18-27/+27
2021-10-10clangformat: Only format files tracked by git by defaultXavier Claessens1-0/+5
2021-10-10ar linker: generate thin archives for uninstalled static librariesEli Schwartz1-0/+11
Since they will never be used outside of the build directory, they do not need to literally contain the .o files, and references will be sufficient. This covers a major use of object libraries, which is that the static library would potentially take up a lot of space by including another copy of every .o file. Fixes #9292 Fixes #8057 Fixes #2129
2021-10-10Add release notes for `subprojects packagefiles`.Eli Schwartz1-0/+11
2021-10-10Zipapp docs (#9356)Eli Schwartz1-0/+12
* Revert "README: Don't recommend using as a standalone script" This reverts commit 9763bf65c6285176b578de71b0c3b8c14c72fdf2. zipapps work fine now that we have a single entry point. Time to recommend them again. * update zipapp documentation to recommend the current packaging script Also update the website documentation to mention this at all.
2021-10-09optinterpreter: Add deprecated kwargXavier Claessens1-0/+26
It can be either: - boolean: the option is completely deprecated. - list: some choices are deprecated. - dict: some choices are deprecated and replaced by another. Fixes: #7444
2021-10-09docs: Update docsDaniel Mensinger2-2/+19
2021-10-09docs: GitHub Action up the JSON docsDaniel Mensinger1-8/+41
2021-10-09docs: Add a validator for the new JSON docsDaniel Mensinger1-0/+195
2021-10-09docs: Added JSON generatorDaniel Mensinger3-1/+210
2021-10-08python: Add platlibdir and purelibdir optionsXavier Claessens3-0/+38
2021-10-08doc: fix yaml indentation typo that broke building the websiteEli Schwartz1-6/+6
2021-10-08add install_emptydir functionEli Schwartz3-3/+51
This replaces the absolute hack of using ``` install_subdir('nonexisting', install_dir: 'share') ``` which requires you to make sure you don't accidentally or deliberately have a completely different directory with the same name in your source tree that is full of files you don't want installed. It also avoids splitting the name in two and listing them in the wrong order. You can also set the install mode of each directory component by listing them one at a time in order, and in fact create nested structures at all. Fixes #1604 Properly fixes #2904
2021-10-08Add Mac installation instructions for HomebrewIsmayil Mirzali1-0/+4
2021-10-07docs: restore build_target method documentation which went missingEli Schwartz1-0/+40
In the refman rewrite, these functions vanished. I noticed this when I went looking at the docs for extract_all_objects(), or should I say I tried to go looking.
2021-10-07docs: Added pickle RefMan loaderDaniel Mensinger2-2/+27
2021-10-07docs: minor model refectoringDaniel Mensinger1-4/+4
2021-10-07modules/gnome: deprecate yelp variadic sourcesDylan Baker2-0/+20
Yelp currently can take sources two different ways, the first is via variadic arguments, the second is by a keyword argument. If the keyword is passed then the variadic arguments are silently ignored, which is obviously not ideal. Fortunately the variadic form was never documented, and is likely not in wide use. This patch fixes it by deprecating the variadic form, and warning if both are passed. It does not change behavior as someone may be relying on it.
2021-10-04docs: Temporarily disable modules and move RefMan --> Reference-manualDaniel Mensinger6-7/+16
2021-10-04Minor fixupsDaniel Mensinger6-9/+51
2021-10-03docs: Update YAML docs after rebaseDaniel Mensinger4-13/+59
2021-10-03docs: Added new static docsDaniel Mensinger2-0/+11
2021-10-03docs: Fix mypyDaniel Mensinger4-3/+4
2021-10-03docs: added install_tag docsDaniel Mensinger6-18/+71
2021-10-03docs: added unset_variable()Daniel Mensinger1-0/+11
2021-10-03docs: Document documenting MesonDaniel Mensinger2-0/+191
2021-10-03docs: Fix broken linksDaniel Mensinger30-91/+74
2021-10-03docs: Use a custom hotdoc extension for links to RefManDaniel Mensinger7-77/+171
2021-10-03docs: Remove the old Reference manualDaniel Mensinger2-2997/+0
2021-10-03docs: Fixes found during the YAML conversion processDaniel Mensinger1-0/+3
2021-10-03docs: Hook up the new RefMan generator to MesonDaniel Mensinger2-1/+18
2021-10-03docs: Added Markdown generatorDaniel Mensinger11-0/+662
2021-10-03docs: Added pickle generatorDaniel Mensinger2-1/+30
2021-10-03docs: Add the YAML Reference manualDaniel Mensinger92-0/+4885
2021-10-03docs: Initial reference manual generatorDaniel Mensinger8-0/+781
2021-09-30dependency: Allow searching for multiple namesXavier Claessens2-1/+16
2021-09-30Make custom_target() name argument optionalXavier Claessens2-2/+18
2021-09-30doc: document string.strip() optional argument [skip ci]Stone Tickle1-0/+5