﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ADoc%2FTools%2FBlender_Tools_Repo</id>
	<title>Dev:Doc/Tools/Blender Tools Repo - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ADoc%2FTools%2FBlender_Tools_Repo"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/Blender_Tools_Repo&amp;action=history"/>
	<updated>2026-06-24T18:08:00Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/Blender_Tools_Repo&amp;diff=145829&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/Blender_Tools_Repo&amp;diff=145829&amp;oldid=prev"/>
		<updated>2018-06-28T21:06:54Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 21:06時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/Blender_Tools_Repo&amp;diff=145828&amp;oldid=prev</id>
		<title>2015年8月3日 (月) 07:54にwiki&gt;Ideasman42による</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Doc/Tools/Blender_Tools_Repo&amp;diff=145828&amp;oldid=prev"/>
		<updated>2015-08-03T07:54:30Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Blender Tools ==&lt;br /&gt;
&lt;br /&gt;
For developer tools we have a separate [https://developer.blender.org/diffusion/BDT Git Repository].&lt;br /&gt;
&lt;br /&gt;
This is to be used to keep tools which are not needed for building Blender but developers may find useful.&lt;br /&gt;
&lt;br /&gt;
* Utility scripts for running checks on code for style, spelling.&lt;br /&gt;
* Utility scripts for code-base analysis, creating credits for eg.&lt;br /&gt;
* Configurations for 3rd party applications, IDE's.&lt;br /&gt;
* Any tools we develop specifically for working with Blender.&lt;br /&gt;
&lt;br /&gt;
=== Repository Overview ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;./check_source/check_style_c.py&amp;lt;/tt&amp;gt; - style checker.&amp;lt;br&amp;gt;''Depends on '''pygments''' Python module''.&lt;br /&gt;
* &amp;lt;tt&amp;gt;./check_source/check_spelling.py&amp;lt;/tt&amp;gt; - spell checker.&amp;lt;br&amp;gt;''Depends on '''enchant''' Python module''.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;./config/ide&amp;lt;/tt&amp;gt; - style configuration for QtCreator and Eclipse.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;tt&amp;gt;./utils/uncrustify.cfg&amp;lt;/tt&amp;gt; - configuration for '''Uncrustify''' style checker.&amp;lt;br&amp;gt;http://uncrustify.sourceforge.net&lt;br /&gt;
* &amp;lt;tt&amp;gt;./utils/blender_update_themes.py&amp;lt;/tt&amp;gt; - run to add new fields into existing XML themes.&lt;br /&gt;
* &amp;lt;tt&amp;gt;./utils/make_cursor_gui.py&amp;lt;/tt&amp;gt; - simple paint program to create pixmap cursors for &amp;lt;tt&amp;gt;wm_cursors.c&amp;lt;/tt&amp;gt;&lt;br /&gt;
* &amp;lt;tt&amp;gt;./utils/make_gl_stipple_from_xpm.py&amp;lt;/tt&amp;gt; - Converter from 32x32 XPM images to a GL-Stipple array, typically for &amp;lt;tt&amp;gt;glutil.c&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up the Repo ===&lt;br /&gt;
&lt;br /&gt;
Using the git command line run:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
git clone git://git.blender.org/blender-dev-tools.git source/tools&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example of running the style checker:&lt;br /&gt;
&amp;lt;source lang=bash&amp;gt;&lt;br /&gt;
python3 source/tools/check_source/check_style_c.py source/blender/bmesh/intern/bmesh_polygon.c&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>wiki&gt;Ideasman42</name></author>
		
	</entry>
</feed>