Skip to content

Commit

Permalink
Snapshot 27
Browse files Browse the repository at this point in the history
The 'make-snapshot.sh' script has been updated to run on Leopard with
Perl support (TCL support is disabled for now).
  • Loading branch information
b4winckler committed May 11, 2008
1 parent 48e6f32 commit ebfad47
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/MacVim/Info.plist
Expand Up @@ -545,7 +545,7 @@
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>VIMM</string> <string>VIMM</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>26</string> <string>27</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
<string>MainMenu</string> <string>MainMenu</string>
<key>NSPrincipalClass</key> <key>NSPrincipalClass</key>
Expand Down
6 changes: 3 additions & 3 deletions src/MacVim/MacVim.xcodeproj/project.pbxproj
Expand Up @@ -698,7 +698,7 @@
i386, i386,
); );
COPY_PHASE_STRIP = YES; COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 26; CURRENT_PROJECT_VERSION = 27;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)",
Expand Down Expand Up @@ -739,7 +739,7 @@
buildSettings = { buildSettings = {
ARCHS = "$(NATIVE_ARCH)"; ARCHS = "$(NATIVE_ARCH)";
COPY_PHASE_STRIP = NO; COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 26; CURRENT_PROJECT_VERSION = 27;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)",
Expand Down Expand Up @@ -770,7 +770,7 @@
buildSettings = { buildSettings = {
ARCHS = "$(NATIVE_ARCH)"; ARCHS = "$(NATIVE_ARCH)";
COPY_PHASE_STRIP = YES; COPY_PHASE_STRIP = YES;
CURRENT_PROJECT_VERSION = 26; CURRENT_PROJECT_VERSION = 27;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
"$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)", "$(FRAMEWORK_SEARCH_PATHS_QUOTED_1)",
Expand Down
36 changes: 36 additions & 0 deletions src/MacVim/macvim_latest.xml
Expand Up @@ -40,6 +40,42 @@
Sparkle supports updates in zip, tar, tbz, tgz, or dmg format. Sparkle supports updates in zip, tar, tbz, tgz, or dmg format.
--> -->


<item>
<title>Snapshot 27 released</title>
<description><![CDATA[
<h1>MacVim snapshot 27 released</h1>
<p> This is the first snapshot compiled on the new Mac I bought with money
donated from MacVim users! There were problems with compiling universal
binaries with Ruby and Perl support on PPC/Tiger so I was hoping to be able
to include these now that I have Intel/Leopard. The good news is that Ruby
support is now included, but Perl still is problematic and I had to drop
TCL support. I will try to get these working in a future snapshot.
</p>
<p> Here is the list of changes since snapshot 26:
<ul>
<li> 'fuoptions' now support setting the background color while in
full-screen mode, check ":h 'fuopt'" (patch by Enno Lübbers) </li>
<li> &lt;D-w&gt; shows confirmation dialog when buffer is modified </li>
<li> setting 'antialias' from gvimrc now works </li>
<li> zooming a window no longer causes it to move downwards </li>
<li> the File menu now contains a "Recent Files" submenu; note that only
files opened from Finder or with the ":browse" command are added to this
list, and not files opened with e.g. ":e" (patch by Nico Weber) </li>
<li> includes latest Vim patches and runtime files </li>
</ul>
</p>
]]></description>
<pubDate>Sun, 11 May 2008 16:36 CET</pubDate>
<enclosure type="application/octet-stream"
url="http://macvim.googlecode.com/files/MacVim-snapshot-27.tbz"
length="8104821"
sparkle:version="27"
sparkle:shortVersionString="7.1"
/>
</item>


<item> <item>
<title>Snapshot 26 released</title> <title>Snapshot 26 released</title>
<description><![CDATA[ <description><![CDATA[
Expand Down
10 changes: 6 additions & 4 deletions src/MacVim/make-snapshot.sh
@@ -1,10 +1,12 @@
#!/bin/sh #!/bin/sh


export MACOSX_DEPLOYMENT_TARGET=10.4

# Increment build number # Increment build number
/Developer/Tools/agvtool next-version -all > /dev/null /Developer/usr/bin/agvtool next-version -all > /dev/null


# Get current build number # Get current build number
BUILDNUM=`/Developer/Tools/agvtool what-version -terse` BUILDNUM=`/Developer/usr/bin/agvtool what-version -terse`
DEST=~/Desktop/MacVim-snapshot-$BUILDNUM DEST=~/Desktop/MacVim-snapshot-$BUILDNUM


echo '****************************************************' echo '****************************************************'
Expand All @@ -16,8 +18,8 @@ echo ''
echo 'BUILDING VIM BINARY' echo 'BUILDING VIM BINARY'
echo ' running configure...' echo ' running configure...'
cd .. && ./configure --enable-gui=macvim --with-mac-arch=both \ cd .. && ./configure --enable-gui=macvim --with-mac-arch=both \
--with-features=huge --enable-pythoninterp --enable-tclinterp \ --with-features=huge --enable-pythoninterp \
--enable-cscope \ --enable-cscope --enable-rubyinterp \
--with-compiledby="Bjorn Winckler <bjorn.winckler@gmail.com>" > /dev/null --with-compiledby="Bjorn Winckler <bjorn.winckler@gmail.com>" > /dev/null


echo ' cleaning...' echo ' cleaning...'
Expand Down

0 comments on commit ebfad47

Please sign in to comment.