From 419f137c642bdc159d2416a4596d1cf9cbe16595 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 25 Jul 2019 13:08:44 +1000 Subject: Doxygen: update version number --- doc/doxygen/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index de2026a6ca0..a9ae56a0e22 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Blender # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "V2.79" +PROJECT_NUMBER = "V2.80" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a -- cgit v1.2.3 From 2b8bc1a22ecbf2dc7b23ac82f293a4d31b0e8b33 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 29 Jul 2019 16:54:08 +0200 Subject: Doxygen: update version number to 2.81 --- doc/doxygen/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/doxygen/Doxyfile b/doc/doxygen/Doxyfile index a9ae56a0e22..366d0b1b507 100644 --- a/doc/doxygen/Doxyfile +++ b/doc/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Blender # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "V2.80" +PROJECT_NUMBER = "V2.81" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a -- cgit v1.2.3 From 604fdb6e859d322a3a2a89cd065d253620421428 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 31 Jul 2019 14:25:09 +0200 Subject: Spelling fixes in comments and descriptions, patch by luzpaz Differential Revision: https://developer.blender.org/D3744 --- doc/guides/interface_API.txt | 2 +- doc/python_api/rst/info_gotcha.rst | 4 ++-- doc/python_api/rst/info_tips_and_tricks.rst | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'doc') diff --git a/doc/guides/interface_API.txt b/doc/guides/interface_API.txt index 631f2098a22..65f19e2a5a0 100644 --- a/doc/guides/interface_API.txt +++ b/doc/guides/interface_API.txt @@ -177,7 +177,7 @@ font: With the new truetype option in Blender, this is used for all font families When a uiBlock is created, each uiButton that is defined gets the uiBlock properties. -Changing Block properties in between will affact uiButtons defined thereafter. +Changing Block properties in between will effect uiButtons defined thereafter. diff --git a/doc/python_api/rst/info_gotcha.rst b/doc/python_api/rst/info_gotcha.rst index df4cd0d256b..983ce764229 100644 --- a/doc/python_api/rst/info_gotcha.rst +++ b/doc/python_api/rst/info_gotcha.rst @@ -40,7 +40,7 @@ In most cases you can figure out what context an operator needs simply be seeing how it's used in Blender and thinking about what it does. Unfortunately if you're still stuck - the only way to **really** know -whats going on is to read the source code for the poll function and see what its checking. +what's going on is to read the source code for the poll function and see what its checking. For Python operators it's not so hard to find the source since it's included with Blender and the source file/line is included in the operator reference docs. @@ -125,7 +125,7 @@ While a script executes Blender waits for it to finish and is effectively locked while in this state Blender won't redraw or respond to user input. Normally this is not such a problem because scripts distributed with Blender tend not to run for an extended period of time, -nevertheless scripts *can* take ages to execute and its nice to see whats going on in the view port. +nevertheless scripts *can* take ages to execute and its nice to see what's going on in the view port. Tools that lock Blender in a loop and redraw are highly discouraged since they conflict with Blenders ability to run multiple operators diff --git a/doc/python_api/rst/info_tips_and_tricks.rst b/doc/python_api/rst/info_tips_and_tricks.rst index 63f7b9410c8..5b6736973ca 100644 --- a/doc/python_api/rst/info_tips_and_tricks.rst +++ b/doc/python_api/rst/info_tips_and_tricks.rst @@ -239,7 +239,7 @@ Drop Into a Python Interpreter in Your Script ============================================= In the middle of a script you may want to inspect some variables, -run some function and generally dig about to see whats going on. +run some function and generally dig about to see what's going on. .. code-block:: python -- cgit v1.2.3 From 5e77fb24822b58d47a37406547b2463e7450f43e Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Wed, 7 Aug 2019 17:20:40 -0400 Subject: API Docs: Correct Hotkey Here we can link to the manual and keep the hotkey updated in the manual rather than the API docs. Fixes T68371 --- doc/python_api/rst/info_quickstart.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst index aa3a38974c4..75aeb765f53 100644 --- a/doc/python_api/rst/info_quickstart.rst +++ b/doc/python_api/rst/info_quickstart.rst @@ -317,7 +317,9 @@ To run the script: #. Click the button labeled ``New`` and the confirmation pop up in order to create a new text block. #. Press :kbd:`Ctrl-V` to paste the code into the text panel (the upper left frame). #. Click on the button **Run Script**. -#. Move your cursor into the 3D view, press spacebar for the operator search menu, and type "Simple". +#. Move your cursor into the 3D Viewport, + open the :ref:`operator search menu `, + and type "Simple". #. Click on the "Simple Operator" item found in search. -- cgit v1.2.3