├── .gitignore ├── .gitmodules ├── .travis.yml ├── GrowlMail ├── GrowlMail.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GrowlMail.xcscheme ├── GrowlMail.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── GrowlMail.xcscmblueprint ├── Makefile ├── externals │ └── Growl │ │ └── Release │ │ └── Growl.framework │ │ ├── Growl │ │ ├── Headers │ │ ├── PrivateHeaders │ │ ├── Resources │ │ └── Versions │ │ ├── A │ │ ├── Growl │ │ ├── Headers │ │ │ ├── Growl.h │ │ │ ├── GrowlApplicationBridge.h │ │ │ ├── GrowlCodeSignUtilities.h │ │ │ ├── GrowlDefines.h │ │ │ └── GrowlNote.h │ │ ├── PrivateHeaders │ │ │ ├── GrowlApplicationBridge_Private.h │ │ │ └── GrowlNote_Private.h │ │ ├── Resources │ │ │ └── Info.plist │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current ├── framework_dumps │ ├── Mail.dump │ ├── MailCoreFramework.dump │ ├── MailFramework.dump │ ├── MailServiceFramework.dump │ └── MailUIFramework.dump ├── product │ ├── GrowlMail.pkgproj │ ├── components │ │ ├── en.lproj │ │ │ ├── Introduction.rtf │ │ │ ├── License.rtf │ │ │ └── Read Me.rtf │ │ └── scripts │ │ │ ├── postflight.sh │ │ │ └── preflight.sh │ └── legacy │ │ ├── GrowlMail Installation Fixer.pmdoc │ │ ├── 01empty-contents.xml │ │ ├── 01empty.xml │ │ └── index.xml │ │ ├── GrowlMail Installer.pmdoc │ │ ├── 01growlmail-contents.xml │ │ ├── 01growlmail.xml │ │ └── index.xml │ │ ├── en.lproj │ │ ├── fixer-success.rtf │ │ └── fixer-welcome.rtf │ │ ├── fixer-scripts │ │ └── burninate-growl-receipt.zsh │ │ └── scripts │ │ ├── postflight.sh │ │ └── preflight.sh ├── resources │ ├── GrowlMail.icns │ ├── GrowlMail.png │ ├── Info.plist │ └── en.lproj │ │ ├── GrowlMailPreferencesPanel.xib │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── locversion.plist ├── scripts │ ├── add-git-revision.rb │ ├── plist-buddy.rb │ ├── prune-headers.rb │ ├── prune-languages.rb │ └── resign-binaries.rb ├── source │ ├── Categories │ │ ├── NSString+GrowlMail.h │ │ └── NSString+GrowlMail.m │ ├── GMPreferenceConstants.h │ ├── GMPreferenceConstants.m │ ├── GMSparkleController.h │ ├── GMSparkleController.m │ ├── GMUserDefaults.h │ ├── GMUserDefaults.m │ ├── GrowlMail.h │ ├── GrowlMail.m │ ├── GrowlMailNotifier.h │ ├── GrowlMailNotifier.m │ ├── GrowlMailPreferences.h │ ├── GrowlMailPreferences.m │ ├── GrowlMailPreferencesModule.h │ ├── GrowlMailPreferencesModule.m │ ├── MailHeaders.h │ ├── Message+GrowlMail.h │ ├── Message+GrowlMail.m │ ├── MessageFrameworkHeaders.h │ ├── NSPreferences.h │ └── NSPreferencesModule.h ├── support │ ├── GrowlMail.opacity │ ├── INSTALL.txt │ ├── install.sh │ ├── mail.dump │ └── messages.dump └── xcconfig │ ├── Common.xcconfig │ ├── Debug.xcconfig │ ├── Localization.xcconfig │ └── Release.xcconfig ├── GrowlMailUUIDPatcher ├── GrowlMailUUIDPatcher.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ReadMe.rtf ├── resources │ ├── English.lproj │ │ ├── GrowlMailBundles.xib │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ ├── GrowlMailUUIDPatcher-Info.plist │ ├── WhiteCheckmarkOnGreenCircle.opacity │ ├── WhiteCheckmarkOnGreenCircle.tiff │ ├── WhiteXOnRedCircle.opacity │ └── WhiteXOnRedCircle.tiff └── source │ ├── GMCompatibilityUUIDs.h │ ├── GMCompatibilityUUIDs.m │ ├── GrowlMailFoundBundle.h │ ├── GrowlMailFoundBundle.m │ ├── GrowlMailUUIDPatcher.h │ ├── GrowlMailUUIDPatcher.m │ ├── GrowlMailUUIDPatcherAppDelegate.h │ ├── GrowlMailUUIDPatcherAppDelegate.m │ ├── GrowlMailUUIDPatcher_Prefix.pch │ ├── GrowlMailWarningNote.h │ ├── GrowlMailWarningNote.m │ ├── GrowlVersionUtilities.h │ ├── GrowlVersionUtilities.m │ └── main.m ├── License.txt ├── README.md └── rakefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/.travis.yml -------------------------------------------------------------------------------- /GrowlMail/GrowlMail.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/GrowlMail.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GrowlMail/GrowlMail.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/GrowlMail.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GrowlMail/GrowlMail.xcodeproj/xcshareddata/xcschemes/GrowlMail.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/GrowlMail.xcodeproj/xcshareddata/xcschemes/GrowlMail.xcscheme -------------------------------------------------------------------------------- /GrowlMail/GrowlMail.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/GrowlMail.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GrowlMail/GrowlMail.xcworkspace/xcshareddata/GrowlMail.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/GrowlMail.xcworkspace/xcshareddata/GrowlMail.xcscmblueprint -------------------------------------------------------------------------------- /GrowlMail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/Makefile -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Growl: -------------------------------------------------------------------------------- 1 | Versions/Current/Growl -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Growl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Growl -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/Growl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/Growl.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlCodeSignUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlCodeSignUtilities.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlDefines.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Headers/GrowlNote.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/PrivateHeaders/GrowlApplicationBridge_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/PrivateHeaders/GrowlApplicationBridge_Private.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/PrivateHeaders/GrowlNote_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/PrivateHeaders/GrowlNote_Private.h -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/externals/Growl/Release/Growl.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /GrowlMail/externals/Growl/Release/Growl.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /GrowlMail/framework_dumps/Mail.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/framework_dumps/Mail.dump -------------------------------------------------------------------------------- /GrowlMail/framework_dumps/MailCoreFramework.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/framework_dumps/MailCoreFramework.dump -------------------------------------------------------------------------------- /GrowlMail/framework_dumps/MailFramework.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/framework_dumps/MailFramework.dump -------------------------------------------------------------------------------- /GrowlMail/framework_dumps/MailServiceFramework.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/framework_dumps/MailServiceFramework.dump -------------------------------------------------------------------------------- /GrowlMail/framework_dumps/MailUIFramework.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/framework_dumps/MailUIFramework.dump -------------------------------------------------------------------------------- /GrowlMail/product/GrowlMail.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/GrowlMail.pkgproj -------------------------------------------------------------------------------- /GrowlMail/product/components/en.lproj/Introduction.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/components/en.lproj/Introduction.rtf -------------------------------------------------------------------------------- /GrowlMail/product/components/en.lproj/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/components/en.lproj/License.rtf -------------------------------------------------------------------------------- /GrowlMail/product/components/en.lproj/Read Me.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/components/en.lproj/Read Me.rtf -------------------------------------------------------------------------------- /GrowlMail/product/components/scripts/postflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/components/scripts/postflight.sh -------------------------------------------------------------------------------- /GrowlMail/product/components/scripts/preflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/components/scripts/preflight.sh -------------------------------------------------------------------------------- /GrowlMail/product/legacy/GrowlMail Installation Fixer.pmdoc/01empty-contents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/GrowlMail Installation Fixer.pmdoc/01empty-contents.xml -------------------------------------------------------------------------------- /GrowlMail/product/legacy/GrowlMail Installation Fixer.pmdoc/01empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/GrowlMail Installation Fixer.pmdoc/01empty.xml -------------------------------------------------------------------------------- /GrowlMail/product/legacy/GrowlMail Installation Fixer.pmdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/GrowlMail Installation Fixer.pmdoc/index.xml -------------------------------------------------------------------------------- /GrowlMail/product/legacy/GrowlMail Installer.pmdoc/01growlmail-contents.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GrowlMail/product/legacy/GrowlMail Installer.pmdoc/01growlmail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/GrowlMail Installer.pmdoc/01growlmail.xml -------------------------------------------------------------------------------- /GrowlMail/product/legacy/GrowlMail Installer.pmdoc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/GrowlMail Installer.pmdoc/index.xml -------------------------------------------------------------------------------- /GrowlMail/product/legacy/en.lproj/fixer-success.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/en.lproj/fixer-success.rtf -------------------------------------------------------------------------------- /GrowlMail/product/legacy/en.lproj/fixer-welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/en.lproj/fixer-welcome.rtf -------------------------------------------------------------------------------- /GrowlMail/product/legacy/fixer-scripts/burninate-growl-receipt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/fixer-scripts/burninate-growl-receipt.zsh -------------------------------------------------------------------------------- /GrowlMail/product/legacy/scripts/postflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/scripts/postflight.sh -------------------------------------------------------------------------------- /GrowlMail/product/legacy/scripts/preflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/product/legacy/scripts/preflight.sh -------------------------------------------------------------------------------- /GrowlMail/resources/GrowlMail.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/GrowlMail.icns -------------------------------------------------------------------------------- /GrowlMail/resources/GrowlMail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/GrowlMail.png -------------------------------------------------------------------------------- /GrowlMail/resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/Info.plist -------------------------------------------------------------------------------- /GrowlMail/resources/en.lproj/GrowlMailPreferencesPanel.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/en.lproj/GrowlMailPreferencesPanel.xib -------------------------------------------------------------------------------- /GrowlMail/resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /GrowlMail/resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GrowlMail/resources/en.lproj/locversion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/resources/en.lproj/locversion.plist -------------------------------------------------------------------------------- /GrowlMail/scripts/add-git-revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/scripts/add-git-revision.rb -------------------------------------------------------------------------------- /GrowlMail/scripts/plist-buddy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/scripts/plist-buddy.rb -------------------------------------------------------------------------------- /GrowlMail/scripts/prune-headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/scripts/prune-headers.rb -------------------------------------------------------------------------------- /GrowlMail/scripts/prune-languages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/scripts/prune-languages.rb -------------------------------------------------------------------------------- /GrowlMail/scripts/resign-binaries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/scripts/resign-binaries.rb -------------------------------------------------------------------------------- /GrowlMail/source/Categories/NSString+GrowlMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/Categories/NSString+GrowlMail.h -------------------------------------------------------------------------------- /GrowlMail/source/Categories/NSString+GrowlMail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/Categories/NSString+GrowlMail.m -------------------------------------------------------------------------------- /GrowlMail/source/GMPreferenceConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GMPreferenceConstants.h -------------------------------------------------------------------------------- /GrowlMail/source/GMPreferenceConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GMPreferenceConstants.m -------------------------------------------------------------------------------- /GrowlMail/source/GMSparkleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GMSparkleController.h -------------------------------------------------------------------------------- /GrowlMail/source/GMSparkleController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GMSparkleController.m -------------------------------------------------------------------------------- /GrowlMail/source/GMUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GMUserDefaults.h -------------------------------------------------------------------------------- /GrowlMail/source/GMUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GMUserDefaults.m -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMail.h -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMail.m -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMailNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMailNotifier.h -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMailNotifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMailNotifier.m -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMailPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMailPreferences.h -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMailPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMailPreferences.m -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMailPreferencesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMailPreferencesModule.h -------------------------------------------------------------------------------- /GrowlMail/source/GrowlMailPreferencesModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/GrowlMailPreferencesModule.m -------------------------------------------------------------------------------- /GrowlMail/source/MailHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/MailHeaders.h -------------------------------------------------------------------------------- /GrowlMail/source/Message+GrowlMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/Message+GrowlMail.h -------------------------------------------------------------------------------- /GrowlMail/source/Message+GrowlMail.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/Message+GrowlMail.m -------------------------------------------------------------------------------- /GrowlMail/source/MessageFrameworkHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/MessageFrameworkHeaders.h -------------------------------------------------------------------------------- /GrowlMail/source/NSPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/NSPreferences.h -------------------------------------------------------------------------------- /GrowlMail/source/NSPreferencesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/source/NSPreferencesModule.h -------------------------------------------------------------------------------- /GrowlMail/support/GrowlMail.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/support/GrowlMail.opacity -------------------------------------------------------------------------------- /GrowlMail/support/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/support/INSTALL.txt -------------------------------------------------------------------------------- /GrowlMail/support/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/support/install.sh -------------------------------------------------------------------------------- /GrowlMail/support/mail.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/support/mail.dump -------------------------------------------------------------------------------- /GrowlMail/support/messages.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/support/messages.dump -------------------------------------------------------------------------------- /GrowlMail/xcconfig/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/xcconfig/Common.xcconfig -------------------------------------------------------------------------------- /GrowlMail/xcconfig/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/xcconfig/Debug.xcconfig -------------------------------------------------------------------------------- /GrowlMail/xcconfig/Localization.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/xcconfig/Localization.xcconfig -------------------------------------------------------------------------------- /GrowlMail/xcconfig/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMail/xcconfig/Release.xcconfig -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/GrowlMailUUIDPatcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/GrowlMailUUIDPatcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/GrowlMailUUIDPatcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/GrowlMailUUIDPatcher.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/ReadMe.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/ReadMe.rtf -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/English.lproj/GrowlMailBundles.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/English.lproj/GrowlMailBundles.xib -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/GrowlMailUUIDPatcher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/GrowlMailUUIDPatcher-Info.plist -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/WhiteCheckmarkOnGreenCircle.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/WhiteCheckmarkOnGreenCircle.opacity -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/WhiteCheckmarkOnGreenCircle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/WhiteCheckmarkOnGreenCircle.tiff -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/WhiteXOnRedCircle.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/WhiteXOnRedCircle.opacity -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/resources/WhiteXOnRedCircle.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/resources/WhiteXOnRedCircle.tiff -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GMCompatibilityUUIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GMCompatibilityUUIDs.h -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GMCompatibilityUUIDs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GMCompatibilityUUIDs.m -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailFoundBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailFoundBundle.h -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailFoundBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailFoundBundle.m -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcher.h -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcher.m -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcherAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcherAppDelegate.h -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcherAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcherAppDelegate.m -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcher_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailUUIDPatcher_Prefix.pch -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailWarningNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailWarningNote.h -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlMailWarningNote.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlMailWarningNote.m -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlVersionUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlVersionUtilities.h -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/GrowlVersionUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/GrowlVersionUtilities.m -------------------------------------------------------------------------------- /GrowlMailUUIDPatcher/source/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/GrowlMailUUIDPatcher/source/main.m -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/README.md -------------------------------------------------------------------------------- /rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rudyrichter/GrowlMail/HEAD/rakefile --------------------------------------------------------------------------------