Skip to content
Snippets Groups Projects
Commit 362d6e42 authored by George Nachman's avatar George Nachman
Browse files

release.sh

parent 11c08e90
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,14 +6,14 @@
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version 1.0.0</title>
<title>Version 0.20.1.0.0.20110724</title>
<sparkle:releaseNotesLink>
http://iterm2.googlecode.com/svn/trunk/appcasts/testing_changes.html
</sparkle:releaseNotesLink>
<pubDate>Wed, 06 Jul 2011 19:05:28 -0700</pubDate>
<enclosure url="http://iterm2.googlecode.com/files/iTerm2_v1_0_0.zip"
sparkle:version="1.0.0" length="3784539" type="application/octet-stream"
sparkle:dsaSignature="MCsCFGXC0kWpzgDCrG9SmFa8eZ+jns8WAhNWW5yXlgafD0pF/yEz+pf0kbPK" />
<pubDate>Sun, 24 Jul 2011 12:49:21 -0700</pubDate>
<enclosure url="http://iterm2.googlecode.com/files/iTerm2-1_0_0_20110724.zip"
sparkle:version="0.20.1.0.0.20110724" length="3815050" type="application/octet-stream"
sparkle:dsaSignature="MC0CFQCLqI79ubEagtP3V+ltdlUcip6QvQIUHSmk1pt8bi9Wy6WXR2BP7JoUPSM=" />
</item>
</channel>
</rss>
Loading
Loading
These release notes are for the development builds of iTerm2. Beta versions are very stable as we near release.
These release notes are for the development builds of iTerm2. The last stable release was 1.0.0.
iTerm2 1.0.0.20110724
This test release primarily fixes various Lion-related issues.
Enhancements:
- When you cmd-click on a filename in a diff, remove the a/ or b/ prefix and replace with the real directory to open the file.
- Expand tildes when you cmd-click on a file to open it.
- Remove trailing braces from file name when you cmd-click to open it.
- Add escape code <Esc>]50;SetMark^G to perform Edit > Set Mark command.
Bug fixes:
- Fix bug where the bottoms of some characters were cut off in some fonts.
- Fix bug where "zoom maximizes vertically" affects Lion fullscreen.
- Make scrollbar visible in Lion against dark backgrounds.
- Fix bug where iTerm2 would hang/beachball when playing the bell repeatedlhy.
- Improve how pasting filenames is handled.
- Fix bug where startup activities (opening saved window arrangements, etc.) wasn't performed sometimes on Lion.
iTerm2 1.0.0.20110720
This test release adds bug fixes and Lion fullscreen support.
Enhancements:
- Add support for Lion fullscreen mode.
- Improve find performance for long lines.
- Improve find performance when there are lots and lots of matches.
Bug fixes:
- Improve wording of preferences option to "Closing hotkey window restores focus but may switch spaces".
- Fix bug where fullscreen windows are stuck to one space even if they're set to "all spaces".
- Fix bug where minaturiaze button was missing when a new window was created while a fullscreen window was open.
- Fix control key behavior with certain keyboards and custom layouts.
- Change how font size is estimated to be more consistent and work better with broken fonts like Consolas.
- Handle control-pgup and control-pgdn correctly.
- Fix bug where the top two pixels weren't drawn in fullscreen mode.
- Remove infocmp spam from console logs.
- Fix bug where find highlights didn't wrap around to the next line.
- Fix race condition with session logging.
- Cmd-key no longer sends input to the terminal if it's not bound to anything.
 
iTerm2 1.0.0
The first release is here!
Loading
Loading
Loading
Loading
@@ -176,7 +176,7 @@
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>SUFeedURLForTesting</key>
<string>http://iterm2.googlecode.com/svn/trunk/appcasts/testing.xml</string>
<string>http://iterm2.googlecode.com/svn/trunk/appcasts/canary.xml</string>
<key>SUFeedURLForFinal</key>
<string>http://iterm2.googlecode.com/svn/trunk/appcasts/final.xml</string>
</dict>
Loading
Loading
#!/bin/bash
# Run this before uploading.
NAME=$1
COMPACTDATE=$(date +"%Y%m%d")
VERSION=$(cat version.txt | sed -e "s/%(extra)s/$COMPACTDATE/")
NAME=$(echo $VERSION | sed -e "s/\\./_/g")
cd build/Deployment
zip -r iTerm2-${NAME}.zip iTerm.app
vi ../../appcasts/testing_changes.html
Loading
Loading
@@ -8,7 +10,6 @@ LENGTH=$(ls -l iTerm2-${NAME}.zip | awk '{print $5}')
ruby "/Users/georgen/Downloads/Sparkle 1.5b6/Extras/Signing Tools/sign_update.rb" iTerm2-${NAME}.zip $PRIVKEY > /tmp/sig.txt
SIG=$(cat /tmp/sig.txt)
DATE=$(date +"%a, %d %b %Y %H:%M:%S %z")
VERSION=$(date +"%Y%m%d")
cp ../../appcasts/template.xml /tmp
cat /tmp/template.xml | \
sed -e "s/%VER%/${VERSION}/" | \
Loading
Loading
@@ -19,4 +20,4 @@ sed -e "s,%SIG%,${SIG}," > ../../appcasts/testing.xml
echo "Go upload the iTerm2-${NAME}.zip, then run:"
echo "git tag v${VERSION}"
echo "git push --tags"
echo "svn commit -m ${VERSION} appcasts/testing.xml appcasts/testing_changes.html"
echo "svn commit -am ${VERSION} appcasts/testing.xml appcasts/testing_changes.html"
1.0.0.%(extra)s
0.3.0.%(extra)s
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment