Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Final tweaks for Mac release |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9d8e88881ad39a41a2f0160ec065b3d3 |
User & Date: | kevin 2016-09-05 02:08:17 |
Context
2016-09-05
| ||
02:13 | More Mac tweaks check-in: caf33570d3 user: kevin tags: trunk | |
02:08 | Final tweaks for Mac release check-in: 9d8e88881a user: kevin tags: trunk | |
02:07 | Final tweaks for Mac release check-in: 7c39d3c6d6 user: kevin tags: trunk | |
Changes
Changes to buildapp.
︙ | ︙ | |||
201 202 203 204 205 206 207 | zip -r -y TextSweep.zip TextSweep.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..." | | | 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | zip -r -y TextSweep.zip TextSweep.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.zip --acl public-read rm -rf appstore/TextSweep.app cd ../ #create archive of entire source tree tar cvfz TextSweep-$1.tgz TextSweep |
︙ | ︙ |
Changes to textsweep.xml.
1 2 3 4 5 6 7 8 9 10 | <?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 3.0.0</title> <sparkle:minimumSystemVersion>10.11</sparkle:minimumSystemVersion> | | | | 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 3.0.0</title> <sparkle:minimumSystemVersion>10.11</sparkle:minimumSystemVersion> <pubDate>Sun, 04 Sep 2016 22:07:59 -0400</pubDate> <author>Code by Kevin</author> <description><![CDATA[ This version of TextSweep has the following features and improvements: * Initial Windows release. * UI refinements. ]]></description> <link>http://www.codebykevin.com/textsweep.html</link> <enclosure url="http://www.codebykevin.com/updates/TextSweep.tgz" sparkle:version="3.0.0" type="application/octet-stream" length="7950717" /> </item> </channel> </rss> |