﻿<?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%3A2.8%2FSource%2FPackageManager</id>
	<title>Dev:2.8/Source/PackageManager - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3A2.8%2FSource%2FPackageManager"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.8/Source/PackageManager&amp;action=history"/>
	<updated>2026-07-05T20:54:29Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:2.8/Source/PackageManager&amp;diff=150955&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.8/Source/PackageManager&amp;diff=150955&amp;oldid=prev"/>
		<updated>2018-06-28T21:16:11Z</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:16時点における版&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:2.8/Source/PackageManager&amp;diff=150954&amp;oldid=prev</id>
		<title>wiki&gt;Lijenstina: /* Big Picture */</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:2.8/Source/PackageManager&amp;diff=150954&amp;oldid=prev"/>
		<updated>2017-01-30T01:17:06Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Big Picture&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Package Manager Design Doc =&lt;br /&gt;
&lt;br /&gt;
Some design overview of how addons auto-update should work (or how it should not work)&lt;br /&gt;
&lt;br /&gt;
== Basic Requirements ==&lt;br /&gt;
&lt;br /&gt;
Add-on update should:&lt;br /&gt;
&lt;br /&gt;
* Be unblocking, meaning interface should be responsive during all update procedure&lt;br /&gt;
* Non-intrusive, meaning it should not do things silently, without artists asking to actually update addon or all add-ons.&lt;br /&gt;
* Gracefully handle any exceptions, rollback to a previously installed addon if any update error happens&lt;br /&gt;
* Perform functionality to update to any version (including older ones)&amp;lt;br&amp;gt;for the cases when some regression happens in addon and stops production&lt;br /&gt;
* Any failure with installation/connections/partially successful downloads… etc&amp;lt;br&amp;gt;must be cleanly recovered from.&lt;br /&gt;
* Hanging processes must be handled elegantly. (using time-out for eg).&lt;br /&gt;
* Be flexible in design to support both public addons update and addons which are distributed via cloud, blender market and so on&lt;br /&gt;
* Never store any credential details&lt;br /&gt;
* Not require any separate tool (git / svn / hg) to be installed separately from Blender&amp;lt;br&amp;gt;(Plain Python + Requests should easily be enough in this case).&lt;br /&gt;
* Support multiple repositories&amp;lt;br&amp;gt;(not be locked into a single repository).&lt;br /&gt;
* Possibilities to be used for non-addons (Not essential, however as add-ons are simply a package of data we’re not concerned with exact details of their contents, there is no reason to hard-code in add-ons… other kinds of extensions may be useful)&lt;br /&gt;
&lt;br /&gt;
== Open Topics ==&lt;br /&gt;
* Support mirrors?&lt;br /&gt;
* Package signing?&lt;br /&gt;
* Binary packages? (please no!)&lt;br /&gt;
* Package format? (we can postpone this one)&lt;br /&gt;
* How to handle version compatibility?&amp;lt;br&amp;gt;(when updating Blender breaks a package or the other way around).&lt;br /&gt;
* Support for multiple Blender versions.&amp;lt;br&amp;gt;(The possibility for a package provider to host a single package for multiple versions - but maybe eventually useful to support!).&lt;br /&gt;
* Authentication?&amp;lt;br&amp;gt;(which auth model to use, do we support multiple ones etc)&lt;br /&gt;
* Find a good real-world addon(s) which can be used for demonstrating the system in real action&amp;lt;br&amp;gt;(without all this “works with my localhost!” rubbish)&lt;br /&gt;
&lt;br /&gt;
== Big Picture ==&lt;br /&gt;
* Q: Why do this at all?&amp;lt;br&amp;gt;A: As add-on development has increased, developers are choosing not to use Blender’s repositories for their own projects and instead using 3rd party source hosting.&amp;lt;br&amp;gt;Having to manually install and update add-ons isn’t so convenient.&amp;lt;br&amp;gt;Its also nice for developers to be able to send updates to users more easily.&lt;br /&gt;
&lt;br /&gt;
* Q: Who is this for?&amp;lt;br&amp;gt;A: This is for users, developers who want their users to be able to access their latest work.&amp;lt;br&amp;gt;Also for companies who develop add-ons, however this will remain vendor agnostic.&lt;/div&gt;</summary>
		<author><name>wiki&gt;Lijenstina</name></author>
		
	</entry>
</feed>