﻿<?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%3ARef%2FProposals%2FUI%2FFileBrowserBookmarks</id>
	<title>Dev:Ref/Proposals/UI/FileBrowserBookmarks - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ARef%2FProposals%2FUI%2FFileBrowserBookmarks"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Proposals/UI/FileBrowserBookmarks&amp;action=history"/>
	<updated>2026-09-12T00:33:30Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Ref/Proposals/UI/FileBrowserBookmarks&amp;diff=145743&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Proposals/UI/FileBrowserBookmarks&amp;diff=145743&amp;oldid=prev"/>
		<updated>2018-06-28T21:06:45Z</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:Ref/Proposals/UI/FileBrowserBookmarks&amp;diff=145742&amp;oldid=prev</id>
		<title>wiki&gt;Gregzaal: Created page with &quot;=File Browser Bookmarks Proposal=  ==Problem== As they are now, the functions we can perform with bookmarks are simply creation and deletion. If we decide we want to move Bookmar...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Ref/Proposals/UI/FileBrowserBookmarks&amp;diff=145742&amp;oldid=prev"/>
		<updated>2014-01-03T21:07:50Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;=File Browser Bookmarks Proposal=  ==Problem== As they are now, the functions we can perform with bookmarks are simply creation and deletion. If we decide we want to move Bookmar...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=File Browser Bookmarks Proposal=&lt;br /&gt;
&lt;br /&gt;
==Problem==&lt;br /&gt;
As they are now, the functions we can perform with bookmarks are simply creation and deletion. If we decide we want to move Bookmark-X to the top, we need to delete all the bookmarks and recreate them in the correct order. If we have two folders with the same name (perhaps two ''Textures'' folders on different drives, or an ''Assets'' folder in multiple projects), we cannot distinguish between them without clicking them.&lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
The solution is simple: instead of the current '''X''' button to delete a bookmark, replace it with an '''Edit''' button:&lt;br /&gt;
[[File:UIProposal_better-bookmarks_01.png|center]]&lt;br /&gt;
Once clicking an ''Edit'' button, the bookmark is expanded to show all its options:&lt;br /&gt;
[[File:UIProposal_better-bookmarks_02.png|center]]&lt;br /&gt;
- The ''X'' button functions the same as before, removing a bookmark permanently, only this time it should prompt the user if they are sure about deleting it. Doing this accidentally is frustrating.&lt;br /&gt;
- Each bookmark has two text fields: One for the displayed name of the bookmark, and one for the actual path. This solves the issue of folders with the same name.&lt;br /&gt;
- A small button next to the path field fetches the path from the folder that is currently being browsed. This can be done automatically when clicking the '''Add Bookmark''' button (which seems to have been forgotten in the making of these mockups)&lt;br /&gt;
- A pair of arrow buttons allow the bookmark to be moved up and down the list easily&lt;br /&gt;
- ''Save'' and ''Cancel'' buttons do as they should, saving the changes to the text fields, or breaking out of the edit mode without changing anything.&lt;br /&gt;
&lt;br /&gt;
==Python Implementation==&lt;br /&gt;
The screenshots above are actually from a fully functional (albeit no ''Add Bookmark'' button and some lack of error handling) python addon. My initial idea was to do this as an addon properly, but I'd rather it done officially instead.&lt;br /&gt;
&lt;br /&gt;
    Download: [http://gregzaal.com/files/better_bookmarks.py http://gregzaal.com/files/better_bookmarks.py]&lt;br /&gt;
&lt;br /&gt;
It works from a simple text file, each line formatted as such: &amp;lt;code&amp;gt;index:::Name:::/full/path/to/folder&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;code&amp;gt;7:::Assets (Nestle):::Z:\Projects\Nestle\Production\Assets&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
This should not be so powerful as to perform as some kind of asset management system, but rather just for simple bookmarking. A separate implementation should be made for a serious studio workflow that allows for users to create a standard folder structure, and then simply set a ''Project Path'' that is the root of all the asset, working directory and production folder bookmarks.&lt;br /&gt;
&lt;br /&gt;
It should of course be simple to use, as well as simple to edit. No fancy special pro-knowledge required, just good old-fashioned intuitive bookmarks we all know.&lt;br /&gt;
&lt;br /&gt;
A possible extension would be to allow custom icons for each bookmark. In the case of an implementation similar to the above python one, another item in each line could be added easily without breaking compatibility.&lt;/div&gt;</summary>
		<author><name>wiki&gt;Gregzaal</name></author>
		
	</entry>
</feed>