├── .gitignore ├── English.lproj ├── Credits.rtf ├── InfoPlist.strings ├── Localizable.strings ├── MainMenu.nib │ ├── designable.nib │ └── keyedobjects.nib ├── TSCreateServiceViewController.xib ├── TSPackUpViewController.xib ├── TSServiceAppFilterWindowController.xib ├── TSServiceInputRulesWindowController.xib └── TSServiceTestWindowController.xib ├── IconFamily.h ├── IconFamily.m ├── Info.plist ├── Localizable.strings ├── NDAlias+AliasFile.h ├── NDAlias+AliasFile.m ├── NDAlias.h ├── NDAlias.m ├── NDResourceFork+OtherSorces.h ├── NDResourceFork+OtherSorces.m ├── NDResourceFork.h ├── NDResourceFork.m ├── NDSDKCompatibility.h ├── NSBezierPath+AttributedStringExtensions.h ├── NSBezierPath+AttributedStringExtensions.m ├── NSString+CarbonFSRefCreation.h ├── NSString+CarbonFSRefCreation.m ├── NSString+NDCarbonUtilities.h ├── NSString+NDCarbonUtilities.m ├── NSURL+NDCarbonUtilities.h ├── NSURL+NDCarbonUtilities.m ├── NSWorkspace+SmallIcon.h ├── NSWorkspace+SmallIcon.m ├── OpaqueView.h ├── OpaqueView.m ├── README.md ├── ServiceSkeleton-Info.plist ├── ServiceSkeleton ├── NSAppleScript+HandlerCalls.h ├── NSAppleScript+HandlerCalls.m ├── ServiceSkeletonMagic.h ├── ServiceSkeletonMagic.m └── ServiceSkeleton_main.m ├── ShortcutRecorder ├── SRCommon.h └── SRCommon.m ├── Sparkle.framework ├── Headers ├── Resources ├── Sparkle └── Versions │ ├── A │ ├── Headers │ │ ├── NSApplication+AppCopies.h │ │ ├── NSFileManager+Authentication.h │ │ ├── NSFileManager+Verification.h │ │ ├── NSString+extras.h │ │ ├── RSS.h │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUAutomaticUpdateAlert.h │ │ ├── SUConstants.h │ │ ├── SUStatusChecker.h │ │ ├── SUStatusController.h │ │ ├── SUUnarchiver.h │ │ ├── SUUpdateAlert.h │ │ ├── SUUpdater.h │ │ ├── SUUtilities.h │ │ └── Sparkle.h │ ├── Resources │ │ ├── Info.plist │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ └── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ │ ├── SUProfileInfo.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── classes.nib │ │ │ ├── info.nib │ │ │ └── keyedobjects.nib │ │ │ └── Sparkle.strings │ └── Sparkle │ └── Current ├── TSCheckedListDataSource.h ├── TSCheckedListDataSource.m ├── TSCreateServiceViewController.h ├── TSCreateServiceViewController.m ├── TSDelegatingDropZoneView.h ├── TSDelegatingDropZoneView.m ├── TSExtraCollectionView.h ├── TSExtraCollectionView.m ├── TSLineBox.h ├── TSLineBox.m ├── TSModeCell.h ├── TSModeCell.m ├── TSModeMatrix.h ├── TSModeMatrix.m ├── TSPackUpViewController.h ├── TSPackUpViewController.m ├── TSService.h ├── TSService.m ├── TSServiceAppFilter.h ├── TSServiceAppFilter.m ├── TSServiceAppFilterWindowController.h ├── TSServiceAppFilterWindowController.m ├── TSServiceInputRules.h ├── TSServiceInputRules.m ├── TSServiceInputRulesWindowController.h ├── TSServiceInputRulesWindowController.m ├── TSServiceTestWindowController.h ├── TSServiceTestWindowController.m ├── TSServiceTester.h ├── TSServiceTester.m ├── TSServiceTesting.h ├── TSStubbornImageView.h ├── TSStubbornImageView.m ├── TSTableView.h ├── TSTableView.m ├── TSViewController.h ├── TSViewController.m ├── TSWindowController.h ├── TSWindowController.m ├── TSZip.h ├── TSZip.m ├── ThisService Help.help └── Contents │ ├── Info.plist │ └── Resources │ ├── English.lproj │ ├── css │ │ ├── accessPage.css │ │ ├── genlist.html │ │ ├── genlist_style.css │ │ ├── indexPage.css │ │ └── topicPage.css │ ├── gfx │ │ ├── ___splashScreenshot.png │ │ ├── __icon.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── iconSmall.png │ │ ├── orngbullet.gif │ │ ├── splashScreenshot.png │ │ └── splashScreenshot@2x.png │ ├── index.helpindex │ ├── index.html │ └── pages │ │ ├── creatingservices.html │ │ ├── explainingservices.html │ │ ├── index.html │ │ ├── serviceprerequisites.html │ │ ├── sharingconsiderations.html │ │ ├── sharingservices.html │ │ ├── testservice.html │ │ ├── writingscripts-applescript.html │ │ ├── writingscripts-specialbehavior-applescript.html │ │ ├── writingscripts-specialbehavior-standard.html │ │ ├── writingscripts-standard.html │ │ └── writingscripts.html │ └── shrd │ └── icon.png ├── ThisService.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ThisService_Prefix.pch ├── WFFilePicker.h ├── WFFilePicker.m ├── WFMachTime.h ├── WFMachTime.m ├── dsa_pub.pem ├── emptyApp16x16.png ├── emptyApp16x16@2x.png ├── hidpiicon.iconset ├── icon_128x128.png ├── icon_128x128@2x.png ├── icon_16x16.png ├── icon_16x16@2x.png ├── icon_256x256.png ├── icon_256x256@2x.png ├── icon_32x32.png ├── icon_32x32@2x.png ├── icon_512x512.png └── icon_512x512@2x.png ├── license.txt ├── main.m └── version.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/.gitignore -------------------------------------------------------------------------------- /English.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/Credits.rtf -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/TSCreateServiceViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/TSCreateServiceViewController.xib -------------------------------------------------------------------------------- /English.lproj/TSPackUpViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/TSPackUpViewController.xib -------------------------------------------------------------------------------- /English.lproj/TSServiceAppFilterWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/TSServiceAppFilterWindowController.xib -------------------------------------------------------------------------------- /English.lproj/TSServiceInputRulesWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/TSServiceInputRulesWindowController.xib -------------------------------------------------------------------------------- /English.lproj/TSServiceTestWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/English.lproj/TSServiceTestWindowController.xib -------------------------------------------------------------------------------- /IconFamily.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/IconFamily.h -------------------------------------------------------------------------------- /IconFamily.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/IconFamily.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Info.plist -------------------------------------------------------------------------------- /Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Localizable.strings -------------------------------------------------------------------------------- /NDAlias+AliasFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDAlias+AliasFile.h -------------------------------------------------------------------------------- /NDAlias+AliasFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDAlias+AliasFile.m -------------------------------------------------------------------------------- /NDAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDAlias.h -------------------------------------------------------------------------------- /NDAlias.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDAlias.m -------------------------------------------------------------------------------- /NDResourceFork+OtherSorces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDResourceFork+OtherSorces.h -------------------------------------------------------------------------------- /NDResourceFork+OtherSorces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDResourceFork+OtherSorces.m -------------------------------------------------------------------------------- /NDResourceFork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDResourceFork.h -------------------------------------------------------------------------------- /NDResourceFork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDResourceFork.m -------------------------------------------------------------------------------- /NDSDKCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NDSDKCompatibility.h -------------------------------------------------------------------------------- /NSBezierPath+AttributedStringExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSBezierPath+AttributedStringExtensions.h -------------------------------------------------------------------------------- /NSBezierPath+AttributedStringExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSBezierPath+AttributedStringExtensions.m -------------------------------------------------------------------------------- /NSString+CarbonFSRefCreation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSString+CarbonFSRefCreation.h -------------------------------------------------------------------------------- /NSString+CarbonFSRefCreation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSString+CarbonFSRefCreation.m -------------------------------------------------------------------------------- /NSString+NDCarbonUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSString+NDCarbonUtilities.h -------------------------------------------------------------------------------- /NSString+NDCarbonUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSString+NDCarbonUtilities.m -------------------------------------------------------------------------------- /NSURL+NDCarbonUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSURL+NDCarbonUtilities.h -------------------------------------------------------------------------------- /NSURL+NDCarbonUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSURL+NDCarbonUtilities.m -------------------------------------------------------------------------------- /NSWorkspace+SmallIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSWorkspace+SmallIcon.h -------------------------------------------------------------------------------- /NSWorkspace+SmallIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/NSWorkspace+SmallIcon.m -------------------------------------------------------------------------------- /OpaqueView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/OpaqueView.h -------------------------------------------------------------------------------- /OpaqueView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/OpaqueView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/README.md -------------------------------------------------------------------------------- /ServiceSkeleton-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ServiceSkeleton-Info.plist -------------------------------------------------------------------------------- /ServiceSkeleton/NSAppleScript+HandlerCalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ServiceSkeleton/NSAppleScript+HandlerCalls.h -------------------------------------------------------------------------------- /ServiceSkeleton/NSAppleScript+HandlerCalls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ServiceSkeleton/NSAppleScript+HandlerCalls.m -------------------------------------------------------------------------------- /ServiceSkeleton/ServiceSkeletonMagic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ServiceSkeleton/ServiceSkeletonMagic.h -------------------------------------------------------------------------------- /ServiceSkeleton/ServiceSkeletonMagic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ServiceSkeleton/ServiceSkeletonMagic.m -------------------------------------------------------------------------------- /ServiceSkeleton/ServiceSkeleton_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ServiceSkeleton/ServiceSkeleton_main.m -------------------------------------------------------------------------------- /ShortcutRecorder/SRCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ShortcutRecorder/SRCommon.h -------------------------------------------------------------------------------- /ShortcutRecorder/SRCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ShortcutRecorder/SRCommon.m -------------------------------------------------------------------------------- /Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/NSApplication+AppCopies.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/NSFileManager+Authentication.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/NSFileManager+Verification.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/NSString+extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/NSString+extras.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/RSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/RSS.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUAutomaticUpdateAlert.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUConstants.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUStatusChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUStatusController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUStatusController.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUUpdateAlert.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/SUUtilities.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/SUStatus.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/SUStatus.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/SUStatus.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUProfileInfo.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUProfileInfo.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUProfileInfo.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUProfileInfo.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUProfileInfo.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUProfileInfo.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/classes.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/info.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /TSCheckedListDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSCheckedListDataSource.h -------------------------------------------------------------------------------- /TSCheckedListDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSCheckedListDataSource.m -------------------------------------------------------------------------------- /TSCreateServiceViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSCreateServiceViewController.h -------------------------------------------------------------------------------- /TSCreateServiceViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSCreateServiceViewController.m -------------------------------------------------------------------------------- /TSDelegatingDropZoneView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSDelegatingDropZoneView.h -------------------------------------------------------------------------------- /TSDelegatingDropZoneView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSDelegatingDropZoneView.m -------------------------------------------------------------------------------- /TSExtraCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSExtraCollectionView.h -------------------------------------------------------------------------------- /TSExtraCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSExtraCollectionView.m -------------------------------------------------------------------------------- /TSLineBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSLineBox.h -------------------------------------------------------------------------------- /TSLineBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSLineBox.m -------------------------------------------------------------------------------- /TSModeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSModeCell.h -------------------------------------------------------------------------------- /TSModeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSModeCell.m -------------------------------------------------------------------------------- /TSModeMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSModeMatrix.h -------------------------------------------------------------------------------- /TSModeMatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSModeMatrix.m -------------------------------------------------------------------------------- /TSPackUpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSPackUpViewController.h -------------------------------------------------------------------------------- /TSPackUpViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSPackUpViewController.m -------------------------------------------------------------------------------- /TSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSService.h -------------------------------------------------------------------------------- /TSService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSService.m -------------------------------------------------------------------------------- /TSServiceAppFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceAppFilter.h -------------------------------------------------------------------------------- /TSServiceAppFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceAppFilter.m -------------------------------------------------------------------------------- /TSServiceAppFilterWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceAppFilterWindowController.h -------------------------------------------------------------------------------- /TSServiceAppFilterWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceAppFilterWindowController.m -------------------------------------------------------------------------------- /TSServiceInputRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceInputRules.h -------------------------------------------------------------------------------- /TSServiceInputRules.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceInputRules.m -------------------------------------------------------------------------------- /TSServiceInputRulesWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceInputRulesWindowController.h -------------------------------------------------------------------------------- /TSServiceInputRulesWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceInputRulesWindowController.m -------------------------------------------------------------------------------- /TSServiceTestWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceTestWindowController.h -------------------------------------------------------------------------------- /TSServiceTestWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceTestWindowController.m -------------------------------------------------------------------------------- /TSServiceTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceTester.h -------------------------------------------------------------------------------- /TSServiceTester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceTester.m -------------------------------------------------------------------------------- /TSServiceTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSServiceTesting.h -------------------------------------------------------------------------------- /TSStubbornImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSStubbornImageView.h -------------------------------------------------------------------------------- /TSStubbornImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSStubbornImageView.m -------------------------------------------------------------------------------- /TSTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSTableView.h -------------------------------------------------------------------------------- /TSTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSTableView.m -------------------------------------------------------------------------------- /TSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSViewController.h -------------------------------------------------------------------------------- /TSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSViewController.m -------------------------------------------------------------------------------- /TSWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSWindowController.h -------------------------------------------------------------------------------- /TSWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSWindowController.m -------------------------------------------------------------------------------- /TSZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSZip.h -------------------------------------------------------------------------------- /TSZip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/TSZip.m -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Info.plist -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/css/accessPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/css/accessPage.css -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/css/genlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/css/genlist.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/css/genlist_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/css/genlist_style.css -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/css/indexPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/css/indexPage.css -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/css/topicPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/css/topicPage.css -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/___splashScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/___splashScreenshot.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/__icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/__icon.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/icon.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/icon@2x.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/iconSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/iconSmall.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/orngbullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/orngbullet.gif -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/splashScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/splashScreenshot.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/gfx/splashScreenshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/gfx/splashScreenshot@2x.png -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/index.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/index.helpindex -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/index.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/creatingservices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/creatingservices.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/explainingservices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/explainingservices.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/index.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/serviceprerequisites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/serviceprerequisites.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/sharingconsiderations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/sharingconsiderations.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/sharingservices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/sharingservices.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/testservice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/testservice.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-applescript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-applescript.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-specialbehavior-applescript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-specialbehavior-applescript.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-specialbehavior-standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-specialbehavior-standard.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts-standard.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/English.lproj/pages/writingscripts.html -------------------------------------------------------------------------------- /ThisService Help.help/Contents/Resources/shrd/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService Help.help/Contents/Resources/shrd/icon.png -------------------------------------------------------------------------------- /ThisService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ThisService.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ThisService_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/ThisService_Prefix.pch -------------------------------------------------------------------------------- /WFFilePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/WFFilePicker.h -------------------------------------------------------------------------------- /WFFilePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/WFFilePicker.m -------------------------------------------------------------------------------- /WFMachTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/WFMachTime.h -------------------------------------------------------------------------------- /WFMachTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/WFMachTime.m -------------------------------------------------------------------------------- /dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/dsa_pub.pem -------------------------------------------------------------------------------- /emptyApp16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/emptyApp16x16.png -------------------------------------------------------------------------------- /emptyApp16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/emptyApp16x16@2x.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /hidpiicon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/hidpiicon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/license.txt -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/main.m -------------------------------------------------------------------------------- /version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wafflesoftware/thisservice/HEAD/version.plist --------------------------------------------------------------------------------