├── .gitignore ├── Adium └── Adium.filewave.recipe ├── AdobeAIR └── AdobeAIR.filewave.recipe ├── AdobeFlashPlayer └── AdobeFlashPlayer.filewave.recipe ├── AdobeReader └── AdobeReader.filewave.recipe ├── CyberDuck └── Cyberduck.filewave.recipe ├── Evernote └── Evernote.filewave.recipe ├── FWTool ├── CommandLine.py ├── FWTool.filewave.recipe ├── FWTool.py └── FileWaveImporter.py ├── GoogleChrome └── GoogleChrome.filewave.recipe ├── GoogleEarth └── GoogleEarth.filewave.recipe ├── Java8 └── Java8.filewave.recipe ├── README.md └── Silverlight └── Silverlight.filewave.recipe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/.gitignore -------------------------------------------------------------------------------- /Adium/Adium.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/Adium/Adium.filewave.recipe -------------------------------------------------------------------------------- /AdobeAIR/AdobeAIR.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/AdobeAIR/AdobeAIR.filewave.recipe -------------------------------------------------------------------------------- /AdobeFlashPlayer/AdobeFlashPlayer.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/AdobeFlashPlayer/AdobeFlashPlayer.filewave.recipe -------------------------------------------------------------------------------- /AdobeReader/AdobeReader.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/AdobeReader/AdobeReader.filewave.recipe -------------------------------------------------------------------------------- /CyberDuck/Cyberduck.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/CyberDuck/Cyberduck.filewave.recipe -------------------------------------------------------------------------------- /Evernote/Evernote.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/Evernote/Evernote.filewave.recipe -------------------------------------------------------------------------------- /FWTool/CommandLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/FWTool/CommandLine.py -------------------------------------------------------------------------------- /FWTool/FWTool.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/FWTool/FWTool.filewave.recipe -------------------------------------------------------------------------------- /FWTool/FWTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/FWTool/FWTool.py -------------------------------------------------------------------------------- /FWTool/FileWaveImporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/FWTool/FileWaveImporter.py -------------------------------------------------------------------------------- /GoogleChrome/GoogleChrome.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/GoogleChrome/GoogleChrome.filewave.recipe -------------------------------------------------------------------------------- /GoogleEarth/GoogleEarth.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/GoogleEarth/GoogleEarth.filewave.recipe -------------------------------------------------------------------------------- /Java8/Java8.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/Java8/Java8.filewave.recipe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/README.md -------------------------------------------------------------------------------- /Silverlight/Silverlight.filewave.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autopkg/filewave/HEAD/Silverlight/Silverlight.filewave.recipe --------------------------------------------------------------------------------