Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add cocoaprint package |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3829a47b2289dfe60423dd9c840da4ec |
User & Date: | kevin 2016-08-01 02:08:21 |
Context
2016-08-13
| ||
02:44 | Rev bump to 3.0 check-in: 9f01762a9b user: kevin tags: trunk | |
2016-08-01
| ||
02:08 | Add cocoaprint package check-in: 3829a47b22 user: kevin tags: trunk | |
01:10 | More tweaks check-in: db09f011c6 user: kevin tags: trunk | |
Changes
Changes to buildapp.
︙ | ︙ | |||
167 168 169 170 171 172 173 | <channel> <title>TextSweep</title> <link>http://www.codebykevin.com/textsweep.html</link> <language>en</language> <item> <title>TextSweep $1</title> | | | 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | <channel> <title>TextSweep</title> <link>http://www.codebykevin.com/textsweep.html</link> <language>en</language> <item> <title>TextSweep $1</title> <sparkle:minimumSystemVersion>10.11</sparkle:minimumSystemVersion> <pubDate>$PUBDATE</pubDate> <author>Code by Kevin</author> <description><![CDATA[ This version of TextSweep has the following features and improvements: $RELEASE_NOTES ]]></description> <link>http://www.codebykevin.com/textsweep.html</link> |
︙ | ︙ | |||
193 194 195 196 197 198 199 | if [ $2 == "release" ] then echo "Building disk image and uploading to Amazon..." | > | | | 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | if [ $2 == "release" ] then echo "Building disk image and uploading to Amazon..." cd build zip -r -y TextSweep.zip QuickWho.app echo "Copying app and XML file to server..." cp -f TextSweep.tgz /Volumes/kevin/Sites/codebykevin/updates/TextSweep.tgz cp -f textsweep.xml /Volumes/kevin/Sites/codebykevin/textsweep.xml echo "Copying zip to Amazon S3..." aws s3 cp build/TextSweep.dmg s3://codebykevin/TextSweep.dmg --acl public-read rm -rf appstore/TextSweep.app cd ../ #create archive of entire source tree |
︙ | ︙ |
Deleted scriptlibs/makebuild.bat.
|
| < < < < < < < < < < |
Changes to textsweep.xml.
1 2 3 4 5 6 7 8 9 | <?xml version="1.0" encoding="UTF-8"?> <rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0"> <channel> <title>TextSweep</title> <link>http://www.codebykevin.com/textsweep.html</link> <language>en</language> <item> <title>TextSweep 2.2.0</title> | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <?xml version="1.0" encoding="UTF-8"?> <rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" version="2.0"> <channel> <title>TextSweep</title> <link>http://www.codebykevin.com/textsweep.html</link> <language>en</language> <item> <title>TextSweep 2.2.0</title> <sparkle:minimumSystemVersion>10.11</sparkle:minimumSystemVersion> <pubDate>Sun, 31 Jul 2016 21:27:57 -0400</pubDate> <author>Code by Kevin</author> <description><![CDATA[ This version of TextSweep has the following features and improvements: * Fix major bug that caused app to hang when selecting file. * Minor UI improvements. ]]></description> <link>http://www.codebykevin.com/textsweep.html</link> <enclosure url="http://www.codebykevin.com/updates/TextSweep.tgz" sparkle:version="2.2.0" type="application/octet-stream" length="8186464" /> </item> </channel> </rss> |