Skip to content

Commit

Permalink
temporarily remove google calendar export
Browse files Browse the repository at this point in the history
  • Loading branch information
claytonrcarter committed Feb 8, 2016
1 parent 1db8aed commit 2de0517
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion CropPlanning/Release Notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ but do expect some bumps along the way. **Back up your data files frequently!**

### Enhancements

* Crop plans can now be exported to a Google Calendar. (*experimental, but fun*)
* Support for DD/MM/YYYY style dates. 🇬🇧 🇦🇺
* searching and filtering can now be done by specific field
* eg, filtering for `name:winter` will just show crops with "Winter" in their name (like "Winter Squash"), while `var:winter` will just show varieties with "winter" in their name (like "Wintebor")
Expand Down
6 changes: 3 additions & 3 deletions CropPlanning/appinfo.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#Everything can be manually updated except buildnum and builddate.
#Mon, 08 Feb 2016 15:10:21 -0500
#Mon, 08 Feb 2016 15:34:43 -0500
#Wed Feb 17 22:10:07 EST 2010
program.PROGNAME=CPS.CropPlanning
program.BUILDNUM=155
program.BUILDNUM=156
program.AUTHOR=Clayton Carter
program.BUILDDATE=20160239151021
program.BUILDDATE=20160239153443
program.DESCRIPTION=Crop Planning Software
program.COPYRIGHT=2013
program.VERSION=0.7.0
Expand Down
6 changes: 3 additions & 3 deletions CropPlanning/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@
<title>]]>${program.DESCRIPTION} Version ${program.VERSION}<![CDATA[</title>
<pubDate>]]>${current.date}<![CDATA[</pubDate>
<sparkle:releaseNotesLink>]]>http://www.failbetterfarm.com/cps/ReleaseNotes${program.VERSION}.html<![CDATA[</sparkle:releaseNotesLink>
<enclosure]]> url="http://cropplanning.googlecode.com/files/${dmg.file}" sparkle:os="mac" sparkle:version="${program.BUILDNUM}" sparkle:shortVersionString="${program.VERSION}" length="${dmg.length}" type="application/octet-stream" sparkle:dsaSignature="" sparkle:md5Sum="${dmg.checksum}" <![CDATA[/>
<enclosure]]> url="http://cropplanning.googlecode.com/files/${zip.win.file}" sparkle:os="win" sparkle:version="${program.BUILDNUM}" sparkle:shortVersionString="${program.VERSION}" length="${zip.win.length}" type="application/octet-stream" sparkle:dsaSignature="" sparkle:md5Sum="${zip.win.checksum}" <![CDATA[/>
<enclosure]]> url="http://cropplanning.googlecode.com/files/${zip.file}" sparkle:os="all" sparkle:version="${program.BUILDNUM}" sparkle:shortVersionString="${program.VERSION}" length="${zip.length}" type="application/octet-stream" sparkle:dsaSignature="" sparkle:md5Sum="${zip.checksum}" <![CDATA[/>
<enclosure]]> url="https://github.com/claytonrcarter/cropplanning/releases/download/v${version.prop}/${dmg.file}" sparkle:os="mac" sparkle:version="${program.BUILDNUM}" sparkle:shortVersionString="${program.VERSION}" length="${dmg.length}" type="application/octet-stream" sparkle:dsaSignature="" sparkle:md5Sum="${dmg.checksum}" <![CDATA[/>
<enclosure]]> url="https://github.com/claytonrcarter/cropplanning/releases/download/v${version.prop}/${zip.win.file}" sparkle:os="win" sparkle:version="${program.BUILDNUM}" sparkle:shortVersionString="${program.VERSION}" length="${zip.win.length}" type="application/octet-stream" sparkle:dsaSignature="" sparkle:md5Sum="${zip.win.checksum}" <![CDATA[/>
<enclosure]]> url="https://github.com/claytonrcarter/cropplanning/releases/download/v${version.prop}/${zip.file}" sparkle:os="all" sparkle:version="${program.BUILDNUM}" sparkle:shortVersionString="${program.VERSION}" length="${zip.length}" type="application/octet-stream" sparkle:dsaSignature="" sparkle:md5Sum="${zip.checksum}" <![CDATA[/>
</item>]]>
</echo>

Expand Down
4 changes: 2 additions & 2 deletions CropPlanning/buildnumber.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Mon Feb 08 15:10:21 EST 2016
build.number=156
#Mon Feb 08 15:34:43 EST 2016
build.number=157
2 changes: 1 addition & 1 deletion CropPlanning/src/CPS/Core/TODOLists/TODOLists.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ else if ( filFile.getSelectedFile().getPath() == null ) {
cmbWhatToExport.addItem( TL_ALL_PLANTINGS );
cmbWhatToExport.addItem( TL_SEED_ORDER_WORKSHEET );
cmbWhatToExport.addItem( TL_HARVEST_AVAILABILITY );
cmbWhatToExport.addItem( TL_GOOGLE_CAL );
// cmbWhatToExport.addItem( TL_GOOGLE_CAL );
cmbWhatToExport.addItemListener(this);

lblExportDesc = new JLabel( DSC_START + DSC_GH_SEEDING + DSC_END );
Expand Down

0 comments on commit 2de0517

Please sign in to comment.