Snapshot 25
[MacVim.git] / src / MacVim / macvim_latest.xml
blob6bbf7f89efd108797982c28962bccf9419098b80
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle"> 
3   <channel>
4     <title>MacVim Cutting Edge</title>
5     <link>http://bjorn.winckler.googlepages.com/macvim_latest.xml</link>
6     <description>Most recent changes with links to updates.</description>
8     <!--
9     To add a new release:
11     * add a new <item> below (copy an old one)
12     * Adapt the <title>
13     * Adapt the <description>
14     * Adapt the <pubDate> (format 'Day, dd Mon yyyy hh:mm CET')
15     * Adapte <enclosure>, make sure to update the url, length, saprkle:version
16       and sparkle:shortVersionString attributes.
18     Sparkle honors the following user defaults:
20     * SUFeedURL overrides the value in Info.plist (if we want to offer several
21       appcasts in the preferences one day ("latest", "stable" for example).
23       This means that for testing you can do
25           defaults read org.vim.MacVim SUFeedURL  # note this down
26           defaults write org.vim.MacVim SUFeedURL file:///Users/you/testcast.xml
27             # !!! note the three '/' after 'file:
28           # test test test
29           defaults write org.vim.MacVim SUFeedURL previousvalue
30           # or, to use some default setting for the url,
31           defaults delete org.vim.MacVim SUFeedURL
33     Sparkle usually assumes a naming scheme of name_versionnumber.tar.bz2 .
34     Instead, you can also provide a sparkle:version="2.0_rc2" attribute on
35     the enclosure and name the package as you like. You can (and should) also
36     provide a sparkle:shortVersionString="User-facing version string"
37     attribute that corresponds to CFBundleShortVersionString. Sparkle uses
38     CFBundleVersion to determine the current application version.
40     Sparkle supports updates in zip, tar, tbz, tgz, or dmg format.
41     -->
42     
43     <item>
44       <title>Snapshot 25 released</title>
45       <description><![CDATA[
46 <h1>MacVim snapshot 25 released</h1>
48 <p> This snapshot adds support for two new options: 'antialias' and
49 'fuoptions'.  The former lets you turn text antialiasing on or off (it's
50 on by default), the latter can be used to make the view maximize when
51 full-screen is entered.  See the built-in help for more information (:h
52 'anti' and :h 'fuopt'). </p>
54 <p> Another minor addition is that &lt;C-c&gt; and &lt;C-v&gt; work with
55 block-wise selections (do note that &lt;C-v&gt; behaves like "P", not "p").
56 Also, &lt;D-w&gt; now works in ex-mode and in a command-line window. </p>
58 <p> Here is the list of changes since snapshot 24:
59 <ul>
60   <li> support 'antialias' option (Jjgod Jiang) </li>
61   <li> add option 'fuoptions' to control resizing when full-screen is entered
62       (Nico Weber) </li>
63   <li> fixed bug where transparency setting was lost after leaving full-screen
64       (Nico Weber) </li>
65   <li> help menu contains MacVim help and website link </li>
66   <li> &lt;D-w&gt; now works in ex-mode and in command-line window </li>
67   <li> :macaction command supports command-line completion (Nico Weber) </li>
68   <li> copy/paste respects block selections (requested by George Harker) </li>
69   <li> window no longer cascades from preferences panel </li>
70 </ul>
71 </p>
73       ]]></description>
74       <pubDate>Fri, 06 Apr 2008 19:11 CET</pubDate>
75       <enclosure type="application/octet-stream"
76         url="http://macvim.googlecode.com/files/MacVim-snapshot-25.tbz"
77         length="8042440"
78         sparkle:version="25"
79         sparkle:shortVersionString="7.1"
80         />
81     </item>
84     <item>
85       <title>Snapshot 24 released</title>
86       <description><![CDATA[
87 <h1>MacVim snapshot 24 released</h1>
89 <p><em> The input manager bundled with snapshot 23 contained a bug which could
90 lead to other apps crashing on startup.  If you have installed the input
91 manager, then you are strongly advised to update now and install the new input
92 manager (via the Integration preference pane). </em></p>
94 <p> Changes since snapshot 23:
95 <ul>
96   <li> The mouse cursor has higher contrast in insert mode (when bg=dark). </li>
97   <li> The layout of the Integration preference pane has been updated. </li>
98 </ul>
99 </p>
101       ]]></description>
102       <pubDate>Fri, 14 Mar 2008 20:44 CET</pubDate>
103       <enclosure type="application/octet-stream"
104         url="http://macvim.googlecode.com/files/MacVim-snapshot-24.tbz"
105         length="8036815"
106         sparkle:version="24"
107         sparkle:shortVersionString="7.1"
108         />
109     </item>
112     <item>
113       <title>Snapshot 23 released</title>
114       <description><![CDATA[
115 <h1>MacVim snapshot 23 released</h1>
117 Changes since snapshot 22:
119 <ul>
120   <li> The preferences panel has been updated with an "Integration pane".  This
121       can be used to easily install (and uninstall) the "Edit in ODBEditor"
122       input manager.  The input manager enables you to use MacVim to edit text
123       in any Cocoa text field (e.g. you can use MacVim to edit emails in Mail).
124       Please read the warning on the Integration pane before installing the
125       input manager.  (Patch by Nico Weber.) </li>
126   <li> The "Login Shell" preference has been updated so it should now work with
127       most shells.  This option ensures that environment variables (e.g. $PATH)
128       are set properly.  You should enable it if you ever need to issue shell
129       commands from within MacVim.  (Patch by Ben Schmidt.) </li>
130   <li> Added MMZoomBoth user default.  Enable this if you prefer the window to
131       maximize in both directions when you press the green "maximize button"
132       (hold down Cmd to temporarily restrict resizing to the vertical direction
133       only).  (Requested by Brian McKee.) </li>
134   <li> Added Cmd-Ctrl-z as key equivalent for "Window->Zoom" (this is the same
135       key equivalent as in iTunes) </li>
136   <li> The Vim runtime files have been updated to the latest version </li>
137   <li> MacVim recognizes files with .patch and .diff extension </li>
138   <li> The mouse cursor in insert mode has higher contrast (when used with dark
139       backgrounds).  (Requested by Enno et al.) </li>
140   <li> Line numbers (:h 'number') are brighter when bakground=dark.  (Requested
141       by Ted Pavlic) </li>
142 </ul>
145   Like MacVim?  Go to <a href="http://code.google.com/p/macvim/">
146       http://code.google.com/p/macvim/</a> to see how you can show your
147   support.
148 </p>
150       ]]></description>
151       <pubDate>Sun, 9 Mar 2008 16:43 CET</pubDate>
152       <enclosure type="application/octet-stream"
153         url="http://macvim.googlecode.com/files/MacVim-snapshot-23.tbz"
154         length="8037899"
155         sparkle:version="23"
156         sparkle:shortVersionString="7.1"
157         />
158     </item>
161     <item>
162       <title>Snapshot 22 released</title>
163       <description><![CDATA[
164 <h1>MacVim snapshot 22 released</h1>
166 <p><em>This snapshot replaces the broken snapshot 21.  If you installed build 21
167   then please update immediately.</em></p>
169 <p>Changes since snapshot 20:</p>
170 <ul>
171   <li>Fix forking bug which caused snapshot 21 to lock up OS X</li>
172   <li>The macvim color scheme changed so that line numbers look better when
173     the background is dark (enable line numbers with :set number; set dark
174     background with :set bg=dark)</li>
175   <li>Improved support for Voice Over (enable with &lt;D-F5&gt;)</li>
176   <li>System bell support (see :h 'vb' on how to turn it off)</li>
177   <li>MacVim no longer associates to .plist and .dict since these may well be
178     in binary format</li>
179   <li>Added Find Next &lt;D-g&gt;, Find Previous &lt;D-G&gt; and Use Selection
180     for Find &lt;D-e&gt; menu items</li>
181   <li>Track pad scrolling is now force sensitive</li>
182   <li>Added help section on preferences</li>
183   <li>Preferences panel updated (also no longer hides when MacVim loses focus)
184     </li>
185 </ul>
187 <p>The most exciting new addition in this snapshot is support for &lt;D-g&gt;.
188 It repeats the last search you made in any other application (that supports the
189 Find Pasteboard).</p>
190 <p>This is very useful if you have several windows open in MacVim...try
191 searching for something in one window (using "/"), then switching to another
192 window and hitting &lt;D-g&gt; for an example (after having pressed &lt;D-g&gt;
193 once you can of course use "n" to repeat the search).</p>
194       ]]></description>
195       <pubDate>Wed, 13 Feb 2008 19:36 CET</pubDate>
196       <enclosure type="application/octet-stream"
197         url="http://macvim.googlecode.com/files/MacVim-snapshot-22.tbz"
198         length="7812907"
199         sparkle:version="22"
200         sparkle:shortVersionString="7.1"
201         />
202     </item>
205     <item>
206       <title>Snapshot 20 released</title>
207       <description><![CDATA[
208 <h1>MacVim snapshot 20 released</h1>
209 <ul>
210   <li>Automatic updates via Sparkle (Nico Weber)</li>
211   <li>Preferences panel</li>
212   <li>Fix ^C^W bug (Issue 48)</li>
213   <li>Make sure window is ordered front when new files are opened</li>
214   <li>Warn when quitting with multiple tabs or windows open</li>
215   <li>&lt;D-w&gt; can now be used to close dialogs (such as the About dialog)</li>
216 </ul>
217       ]]></description>
218       <pubDate>Sun, 03 Feb 2008 16:39 CET</pubDate>
219       <enclosure type="application/octet-stream"
220         url="http://macvim.googlecode.com/files/MacVim-snapshot-20.tbz"
221         length="7805678"
222         sparkle:version="20"
223         sparkle:shortVersionString="snapshot 20"
224         />
225     </item>
226   </channel>
227 </rss>