├── .gitignore ├── BetterDictionary.xcodeproj └── project.pbxproj ├── BetterDictionary ├── BetterDictionary-Info.plist ├── BetterDictionary-Prefix.pch ├── BetterDictionary.h ├── BetterDictionary.m ├── DebugLog.h ├── DebugLog.m ├── Dictionary+Automator.icns ├── Dictionary+Automator.png ├── Dictionary.icns ├── Dictionary.png ├── DrawerController.h ├── DrawerController.m ├── NSAttributedString+Hyperlink.h ├── NSAttributedString+Hyperlink.m ├── NSObjectAdditions.h ├── NSObjectAdditions.m ├── NSView+ExploreViews.h ├── NSView+ExploreViews.m ├── add.png ├── add@2x.png ├── en.lproj │ └── InfoPlist.strings ├── remove.png ├── remove@2x.png ├── sidebar-dark.png ├── sidebar-dark@2x.png ├── sidebar-light.png └── sidebar-light@2x.png ├── Headers ├── Dictionary.app headers │ ├── Leopard │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── BrowserWindowTabView.h │ │ ├── CDStructures.h │ │ ├── DSAXIgnoredSplitView.h │ │ ├── DSDictionaryObj.h │ │ ├── DSDictionaryProtocol-Protocol.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableColumn.h │ │ ├── DSIndexTableView.h │ │ ├── DelayedMenuSegmentedCell.h │ │ ├── DelayedMenuSegmentedControl.h │ │ ├── DictionaryBook.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryController.h │ │ ├── DictionaryConverter.h │ │ ├── DictionaryFilterButton.h │ │ ├── DictionaryFilterView.h │ │ ├── DictionaryFoundIndexItem.h │ │ ├── DictionaryFoundRecords.h │ │ ├── DictionaryRecord.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionaryWebView.h │ │ ├── DragDropArrayController.h │ │ ├── EmbossedTextField.h │ │ ├── EmbossedTextFieldCell.h │ │ ├── GetURLScriptCommand.h │ │ ├── IDXDictionaryObj.h │ │ ├── ImageWindowController.h │ │ ├── MetalTabHeaderView.h │ │ ├── MetalTabLabelView.h │ │ ├── NSAppleEventDescriptor-CocoaExtensions.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSNumber-_SlidingExtras.h │ │ ├── NSSearchField-DictionaryServiceExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSView-_SlidingExtras.h │ │ ├── NSWorkspace-CocoaExtensions.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── OnlineDictionaryObj.h │ │ ├── OnlineDictionaryRecord.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── SlidingAnimation.h │ │ ├── SlidingView.h │ │ ├── TextAccessibilityObj.h │ │ ├── WebAccessibilityObj.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaDictionaryObj.h │ │ ├── WikipediaDictionaryRecord.h │ │ ├── WikipediaIndexLookupController.h │ │ ├── WikipediaIndexLookupURLConnection.h │ │ └── WikipediaLanguageHandler.h │ ├── Lion │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexHeaderCell.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryBrowserWindow.h │ │ ├── DictionaryController.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── DictionaryWindowTitleCell.h │ │ ├── DragDropArrayController.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSTableViewDataSource-Protocol.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h │ ├── Mavericks │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryBrowserWindow.h │ │ ├── DictionaryController.h │ │ ├── DictionaryHistory.h │ │ ├── DictionaryHistoryDelegate-Protocol.h │ │ ├── DictionaryHistoryItem.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── DictionaryWindowTitleCell.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── SnapbackButtonCell.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h │ ├── Mountain Lion │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexHeaderCell.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryBrowserWindow.h │ │ ├── DictionaryController.h │ │ ├── DictionaryHistory.h │ │ ├── DictionaryHistoryDelegate-Protocol.h │ │ ├── DictionaryHistoryItem.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── DictionaryWindowTitleCell.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── SnapbackButtonCell.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h │ ├── Snow Leopard │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── BrowserWindowTabView.h │ │ ├── CDStructures.h │ │ ├── DSAXIgnoredSplitView.h │ │ ├── DSDictionaryObj.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableColumn.h │ │ ├── DSIndexTableView.h │ │ ├── DictionaryBook.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryController.h │ │ ├── DictionaryFilterButton.h │ │ ├── DictionaryFilterView.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionaryWebView.h │ │ ├── DragDropArrayController.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSSearchField-DictionaryServiceExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ └── WikipediaDictionaryObj.h │ └── Yosemite │ │ ├── ApplicationController.h │ │ ├── BrowserWindowController.h │ │ ├── CDStructures.h │ │ ├── DSFindPanelController.h │ │ ├── DSImageView.h │ │ ├── DSIndexSplitView.h │ │ ├── DSIndexTableCell.h │ │ ├── DSIndexTableView.h │ │ ├── DSShadowOverlay.h │ │ ├── DictionaryBrowserApp.h │ │ ├── DictionaryController.h │ │ ├── DictionaryHistory.h │ │ ├── DictionaryHistoryDelegate-Protocol.h │ │ ├── DictionaryHistoryItem.h │ │ ├── DictionaryObj.h │ │ ├── DictionaryRecord.h │ │ ├── DictionaryRecordArray.h │ │ ├── DictionaryRecordRepository.h │ │ ├── DictionaryScopeBar.h │ │ ├── DictionaryScopeBarButton.h │ │ ├── DictionarySearchField.h │ │ ├── DictionarySearchFieldCell.h │ │ ├── DictionarySearchFieldEditor.h │ │ ├── DictionarySearchOperation.h │ │ ├── DictionaryWebView.h │ │ ├── FakeRecordForResume.h │ │ ├── GetURLScriptCommand.h │ │ ├── ImageWindowController.h │ │ ├── NSArray-CocoaExtensions.h │ │ ├── NSNumber-CocoaExtensions.h │ │ ├── NSObject-Protocol.h │ │ ├── NSPageControllerDelegate-Protocol.h │ │ ├── NSSpellChecker-MyExtensions.h │ │ ├── NSString-CocoaExtensions.h │ │ ├── NSURLConnectionDelegate-Protocol.h │ │ ├── NSXMLDocument-DictionaryServiceExtensions.h │ │ ├── PrefDictionaryTableView.h │ │ ├── PreferenceController.h │ │ ├── ScopeBarViewController.h │ │ ├── SnapbackButtonCell.h │ │ ├── WebDocumentSelection-Protocol.h │ │ ├── WebDocumentText-Protocol.h │ │ ├── WebView-DictionaryExtensions.h │ │ ├── WebWrapScrollView.h │ │ ├── WikipediaAPIRequester.h │ │ └── WikipediaDictionaryObj.h └── Lookup.framework headers │ └── Mountain Lion │ ├── CDStructures.h │ ├── LUAccessibilityTextAccessor.h │ ├── LUBingImagesModule.h │ ├── LUColorView.h │ ├── LUConfiguration.h │ ├── LUDictionaryServicesModule.h │ ├── LUExtractor.h │ ├── LUGoogleImagesModule.h │ ├── LUImageCellInaccessible.h │ ├── LUImageInfo.h │ ├── LUImageView.h │ ├── LUImagesModule.h │ ├── LULookupDefinitionModule.h │ ├── LUModule.h │ ├── LUModuleHeader.h │ ├── LUModuleInfo.h │ ├── LUModuleView.h │ ├── LUNoResultsViewController.h │ ├── LUPresenter.h │ ├── LUResultsPopover.h │ ├── LUResultsTitleViewController.h │ ├── LUResultsViewController.h │ ├── LURolloverHighlight.h │ ├── LUSearchTermIndicator.h │ ├── LUTSMDocumentTextAccessor.h │ ├── LUTextAccessor.h │ ├── LUTextFieldCellInaccessible.h │ ├── LUTextInputClientTextAccessor.h │ ├── LUTextInputTextAccessor.h │ ├── LUTitleLink.h │ ├── LUWebFrameViewTextAccessor.h │ ├── LUWebKitModule.h │ ├── LUWebServicesPreferences.h │ ├── LUYahooImagesModule.h │ ├── Lookup │ ├── NSAnimationDelegate-Protocol.h │ ├── NSAttributedString-LUTextAccessor_Protected.h │ ├── NSDefinitionExternalModule-Protocol.h │ ├── NSFindIndicatorDelegate-Protocol.h │ ├── NSObject-Protocol.h │ ├── NSPopoverDelegate-Protocol.h │ ├── NSScreen-LUScreenExtensions.h │ ├── NSTextInput-Protocol.h │ ├── NSTextInputClient-Protocol.h │ ├── NSURLConnectionDelegate-Protocol.h │ └── NSWindow-LUWindowExtensions.h ├── Images ├── BetterDictionary-Lion.png ├── BetterDictionary-Mavericks.png ├── BetterDictionary-MountainLion.png ├── BetterDictionary-SnowLeopard.png ├── BetterDictionary-Yosemite.png └── EasySIMBL.png ├── Installers ├── BetterDictionary-0.95.pkg ├── BetterDictionary-0.96.pkg ├── BetterDictionary-0.97.pkg ├── BetterDictionary-0.98 │ ├── BetterDictionary-0.98.app │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Application Stub │ │ │ ├── Resources │ │ │ ├── AutomatorApplet.icns │ │ │ ├── Dutch.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── English.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── French.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── German.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── Italian.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── Japanese.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── SIMBL-0.9.9.pkg │ │ │ ├── Spanish.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ar.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ca.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── cs.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── da.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── el.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── fi.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── he.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── hr.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── hu.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ko.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── no.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── pl.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── pt.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── pt_PT.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ro.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── ru.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── sk.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── sv.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── th.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── tr.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── uk.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ ├── zh_CN.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ └── zh_TW.lproj │ │ │ │ └── ApplicationStub.nib │ │ │ └── document.wflow │ ├── BetterDictionary-0.98.zip │ ├── Install Script.scpt │ └── Installer-v0.98.workflow │ │ └── Contents │ │ ├── QuickLook │ │ └── Thumbnail.png │ │ └── document.wflow ├── BetterDictionary-0.99 │ ├── BetterDictionary-v0.99.zip │ ├── BetterDictionary.bundle │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── BetterDictionary │ │ │ └── Resources │ │ │ ├── Dictionary.icns │ │ │ ├── add.png │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── remove.png │ │ │ ├── sidebar-dark.png │ │ │ └── sidebar-light.png │ └── migrate-data ├── BetterDictionary-0.991 │ ├── BetterDictionary-v0.991.zip │ └── migrate-data ├── BetterDictionary-0.992 │ ├── BetterDictionary-v0.992-macupdate.zip │ ├── BetterDictionary-v0.992.zip │ ├── Installation Guide.pages │ ├── Installation Guide.pdf │ └── migrate-data ├── SIMBL Uninstaller.zip └── SIMBL-0.9.9.pkg ├── README.markdown └── Resources └── BetterDictionaryIcons.sketch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/.gitignore -------------------------------------------------------------------------------- /BetterDictionary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BetterDictionary/BetterDictionary-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/BetterDictionary-Info.plist -------------------------------------------------------------------------------- /BetterDictionary/BetterDictionary-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/BetterDictionary-Prefix.pch -------------------------------------------------------------------------------- /BetterDictionary/BetterDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/BetterDictionary.h -------------------------------------------------------------------------------- /BetterDictionary/BetterDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/BetterDictionary.m -------------------------------------------------------------------------------- /BetterDictionary/DebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/DebugLog.h -------------------------------------------------------------------------------- /BetterDictionary/DebugLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/DebugLog.m -------------------------------------------------------------------------------- /BetterDictionary/Dictionary+Automator.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/Dictionary+Automator.icns -------------------------------------------------------------------------------- /BetterDictionary/Dictionary+Automator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/Dictionary+Automator.png -------------------------------------------------------------------------------- /BetterDictionary/Dictionary.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/Dictionary.icns -------------------------------------------------------------------------------- /BetterDictionary/Dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/Dictionary.png -------------------------------------------------------------------------------- /BetterDictionary/DrawerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/DrawerController.h -------------------------------------------------------------------------------- /BetterDictionary/DrawerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/DrawerController.m -------------------------------------------------------------------------------- /BetterDictionary/NSAttributedString+Hyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/NSAttributedString+Hyperlink.h -------------------------------------------------------------------------------- /BetterDictionary/NSAttributedString+Hyperlink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/NSAttributedString+Hyperlink.m -------------------------------------------------------------------------------- /BetterDictionary/NSObjectAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/NSObjectAdditions.h -------------------------------------------------------------------------------- /BetterDictionary/NSObjectAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/NSObjectAdditions.m -------------------------------------------------------------------------------- /BetterDictionary/NSView+ExploreViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/NSView+ExploreViews.h -------------------------------------------------------------------------------- /BetterDictionary/NSView+ExploreViews.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/NSView+ExploreViews.m -------------------------------------------------------------------------------- /BetterDictionary/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/add.png -------------------------------------------------------------------------------- /BetterDictionary/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/add@2x.png -------------------------------------------------------------------------------- /BetterDictionary/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /BetterDictionary/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/remove.png -------------------------------------------------------------------------------- /BetterDictionary/remove@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/remove@2x.png -------------------------------------------------------------------------------- /BetterDictionary/sidebar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/sidebar-dark.png -------------------------------------------------------------------------------- /BetterDictionary/sidebar-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/sidebar-dark@2x.png -------------------------------------------------------------------------------- /BetterDictionary/sidebar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/sidebar-light.png -------------------------------------------------------------------------------- /BetterDictionary/sidebar-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/BetterDictionary/sidebar-light@2x.png -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/ApplicationController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/BrowserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/BrowserWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/BrowserWindowTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/BrowserWindowTabView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/CDStructures.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSAXIgnoredSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSAXIgnoredSplitView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSDictionaryProtocol-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSDictionaryProtocol-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSFindPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSFindPanelController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSImageView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSIndexTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSIndexTableCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSIndexTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSIndexTableColumn.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DSIndexTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DSIndexTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DelayedMenuSegmentedCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DelayedMenuSegmentedCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DelayedMenuSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DelayedMenuSegmentedControl.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryBook.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryBrowserApp.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryConverter.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryFilterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryFilterButton.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryFilterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryFilterView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryFoundIndexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryFoundIndexItem.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryFoundRecords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryFoundRecords.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionarySearchFieldEditor.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DictionaryWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DictionaryWebView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/DragDropArrayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/DragDropArrayController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/EmbossedTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/EmbossedTextField.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/EmbossedTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/EmbossedTextFieldCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/GetURLScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/GetURLScriptCommand.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/IDXDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/IDXDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/ImageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/ImageWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/MetalTabHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/MetalTabHeaderView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/MetalTabLabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/MetalTabLabelView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSAppleEventDescriptor-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSAppleEventDescriptor-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSArray-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSNumber-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSNumber-_SlidingExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSNumber-_SlidingExtras.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSSearchField-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSSearchField-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSString-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSView-_SlidingExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSView-_SlidingExtras.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSWorkspace-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSWorkspace-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/NSXMLDocument-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/OnlineDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/OnlineDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/OnlineDictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/OnlineDictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/PrefDictionaryTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/PreferenceController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/SlidingAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/SlidingAnimation.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/SlidingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/SlidingView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/TextAccessibilityObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/TextAccessibilityObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WebAccessibilityObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WebAccessibilityObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WebView-DictionaryExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WebWrapScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WebWrapScrollView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WikipediaDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WikipediaDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WikipediaDictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WikipediaDictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WikipediaIndexLookupController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WikipediaIndexLookupController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WikipediaIndexLookupURLConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WikipediaIndexLookupURLConnection.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Leopard/WikipediaLanguageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Leopard/WikipediaLanguageHandler.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/ApplicationController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/BrowserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/BrowserWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/CDStructures.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSFindPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSFindPanelController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSImageView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSIndexHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSIndexHeaderCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSIndexSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSIndexSplitView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSIndexTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSIndexTableCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSIndexTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSIndexTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DSShadowOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DSShadowOverlay.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryBrowserApp.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryBrowserWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryBrowserWindow.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryRecordArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryRecordArray.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryRecordRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryRecordRepository.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryScopeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryScopeBar.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryScopeBarButton.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionarySearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionarySearchField.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionarySearchFieldCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionarySearchFieldEditor.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionarySearchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionarySearchOperation.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryWebView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DictionaryWindowTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DictionaryWindowTitleCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/DragDropArrayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/DragDropArrayController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/FakeRecordForResume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/FakeRecordForResume.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/GetURLScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/GetURLScriptCommand.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/ImageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/ImageWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSArray-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSNumber-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSObject-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSSpellChecker-MyExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSString-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSTableViewDataSource-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSTableViewDataSource-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSURLConnectionDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/NSXMLDocument-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/PrefDictionaryTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/PreferenceController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/WebDocumentSelection-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/WebDocumentText-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/WebView-DictionaryExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WikipediaAPIRequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/WikipediaAPIRequester.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Lion/WikipediaDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Lion/WikipediaDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/ApplicationController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/BrowserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/BrowserWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/CDStructures.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSFindPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DSFindPanelController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DSImageView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSIndexSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DSIndexSplitView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSIndexTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DSIndexTableCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSIndexTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DSIndexTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DSShadowOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DSShadowOverlay.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryBrowserApp.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryBrowserWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryBrowserWindow.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryHistory.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryHistoryDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryHistoryDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryHistoryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryHistoryItem.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryRecordArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryRecordArray.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryRecordRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryRecordRepository.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryScopeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryScopeBar.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryScopeBarButton.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionarySearchField.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionarySearchFieldCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionarySearchFieldEditor.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionarySearchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionarySearchOperation.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryWebView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/DictionaryWindowTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/DictionaryWindowTitleCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/FakeRecordForResume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/FakeRecordForResume.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/GetURLScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/GetURLScriptCommand.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/ImageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/ImageWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSArray-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSNumber-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSObject-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSPageControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSPageControllerDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSSpellChecker-MyExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSString-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSURLConnectionDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/NSXMLDocument-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/PrefDictionaryTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/PreferenceController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/SnapbackButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/SnapbackButtonCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/WebDocumentSelection-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/WebDocumentText-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/WebView-DictionaryExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WebWrapScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/WebWrapScrollView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WikipediaAPIRequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/WikipediaAPIRequester.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mavericks/WikipediaDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mavericks/WikipediaDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/ApplicationController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/BrowserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/BrowserWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/CDStructures.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSFindPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSFindPanelController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSImageView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSIndexHeaderCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSIndexSplitView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSIndexTableCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSIndexTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSIndexTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DSShadowOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DSShadowOverlay.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryBrowserApp.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryBrowserWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryBrowserWindow.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryHistory.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryHistoryDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryHistoryDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryHistoryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryHistoryItem.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryRecordArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryRecordArray.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryRecordRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryRecordRepository.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryScopeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryScopeBar.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryScopeBarButton.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionarySearchField.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionarySearchFieldCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionarySearchFieldEditor.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionarySearchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionarySearchOperation.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryWebView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/DictionaryWindowTitleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/DictionaryWindowTitleCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/FakeRecordForResume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/FakeRecordForResume.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/GetURLScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/GetURLScriptCommand.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/ImageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/ImageWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSArray-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSNumber-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSObject-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSPageControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSPageControllerDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSSpellChecker-MyExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSString-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSURLConnectionDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/NSXMLDocument-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/PrefDictionaryTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/PreferenceController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/SnapbackButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/SnapbackButtonCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/WebDocumentSelection-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/WebDocumentText-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/WebView-DictionaryExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WebWrapScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/WebWrapScrollView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WikipediaAPIRequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/WikipediaAPIRequester.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Mountain Lion/WikipediaDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Mountain Lion/WikipediaDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/ApplicationController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/BrowserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/BrowserWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/BrowserWindowTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/BrowserWindowTabView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/CDStructures.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSAXIgnoredSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSAXIgnoredSplitView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSFindPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSFindPanelController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSImageView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSIndexTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSIndexTableCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSIndexTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSIndexTableColumn.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DSIndexTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DSIndexTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryBook.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryBrowserApp.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryFilterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryFilterButton.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryFilterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryFilterView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryRecordArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryRecordArray.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryRecordRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryRecordRepository.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionarySearchFieldEditor.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DictionaryWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DictionaryWebView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/DragDropArrayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/DragDropArrayController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/FakeRecordForResume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/FakeRecordForResume.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/GetURLScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/GetURLScriptCommand.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/ImageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/ImageWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/NSArray-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/NSNumber-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/NSObject-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSSearchField-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/NSSearchField-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/NSString-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/NSXMLDocument-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/PrefDictionaryTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/PreferenceController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/WebDocumentSelection-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/WebDocumentText-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/WebView-DictionaryExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Snow Leopard/WikipediaDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Snow Leopard/WikipediaDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/ApplicationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/ApplicationController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/BrowserWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/BrowserWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/CDStructures.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSFindPanelController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DSFindPanelController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DSImageView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSIndexSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DSIndexSplitView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSIndexTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DSIndexTableCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSIndexTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DSIndexTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DSShadowOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DSShadowOverlay.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryBrowserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryBrowserApp.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryHistory.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryHistoryDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryHistoryDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryHistoryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryHistoryItem.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryObj.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryRecord.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryRecordArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryRecordArray.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryRecordRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryRecordRepository.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryScopeBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryScopeBar.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryScopeBarButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryScopeBarButton.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionarySearchField.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionarySearchFieldCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchFieldEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionarySearchFieldEditor.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionarySearchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionarySearchOperation.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/DictionaryWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/DictionaryWebView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/FakeRecordForResume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/FakeRecordForResume.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/GetURLScriptCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/GetURLScriptCommand.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/ImageWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/ImageWindowController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSArray-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSArray-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSNumber-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSNumber-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSObject-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSPageControllerDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSPageControllerDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSSpellChecker-MyExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSSpellChecker-MyExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSString-CocoaExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSString-CocoaExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSURLConnectionDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/NSXMLDocument-DictionaryServiceExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/NSXMLDocument-DictionaryServiceExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/PrefDictionaryTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/PrefDictionaryTableView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/PreferenceController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/ScopeBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/ScopeBarViewController.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/SnapbackButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/SnapbackButtonCell.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebDocumentSelection-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/WebDocumentSelection-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebDocumentText-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/WebDocumentText-Protocol.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebView-DictionaryExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/WebView-DictionaryExtensions.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WebWrapScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/WebWrapScrollView.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WikipediaAPIRequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/WikipediaAPIRequester.h -------------------------------------------------------------------------------- /Headers/Dictionary.app headers/Yosemite/WikipediaDictionaryObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Dictionary.app headers/Yosemite/WikipediaDictionaryObj.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/CDStructures.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUAccessibilityTextAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUAccessibilityTextAccessor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUBingImagesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUBingImagesModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUColorView.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUConfiguration.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUDictionaryServicesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUDictionaryServicesModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUExtractor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUGoogleImagesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUGoogleImagesModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUImageCellInaccessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUImageCellInaccessible.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUImageInfo.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUImageView.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUImagesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUImagesModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LULookupDefinitionModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LULookupDefinitionModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUModuleHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUModuleHeader.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUModuleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUModuleInfo.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUModuleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUModuleView.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUNoResultsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUNoResultsViewController.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUPresenter.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUResultsPopover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUResultsPopover.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUResultsTitleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUResultsTitleViewController.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUResultsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUResultsViewController.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LURolloverHighlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LURolloverHighlight.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUSearchTermIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUSearchTermIndicator.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTSMDocumentTextAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUTSMDocumentTextAccessor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUTextAccessor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextFieldCellInaccessible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUTextFieldCellInaccessible.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextInputClientTextAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUTextInputClientTextAccessor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTextInputTextAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUTextInputTextAccessor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUTitleLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUTitleLink.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUWebFrameViewTextAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUWebFrameViewTextAccessor.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUWebKitModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUWebKitModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUWebServicesPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUWebServicesPreferences.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/LUYahooImagesModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/LUYahooImagesModule.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/Lookup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/Lookup -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSAnimationDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSAnimationDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSAttributedString-LUTextAccessor_Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSAttributedString-LUTextAccessor_Protected.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSDefinitionExternalModule-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSDefinitionExternalModule-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSFindIndicatorDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSFindIndicatorDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSObject-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSObject-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSPopoverDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSPopoverDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSScreen-LUScreenExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSScreen-LUScreenExtensions.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSTextInput-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSTextInput-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSTextInputClient-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSTextInputClient-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSURLConnectionDelegate-Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSURLConnectionDelegate-Protocol.h -------------------------------------------------------------------------------- /Headers/Lookup.framework headers/Mountain Lion/NSWindow-LUWindowExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Headers/Lookup.framework headers/Mountain Lion/NSWindow-LUWindowExtensions.h -------------------------------------------------------------------------------- /Images/BetterDictionary-Lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Images/BetterDictionary-Lion.png -------------------------------------------------------------------------------- /Images/BetterDictionary-Mavericks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Images/BetterDictionary-Mavericks.png -------------------------------------------------------------------------------- /Images/BetterDictionary-MountainLion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Images/BetterDictionary-MountainLion.png -------------------------------------------------------------------------------- /Images/BetterDictionary-SnowLeopard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Images/BetterDictionary-SnowLeopard.png -------------------------------------------------------------------------------- /Images/BetterDictionary-Yosemite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Images/BetterDictionary-Yosemite.png -------------------------------------------------------------------------------- /Images/EasySIMBL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Images/EasySIMBL.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.95.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.95.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.96.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.96.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.97.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.97.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Info.plist -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/AutomatorApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/AutomatorApplet.icns -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Dutch.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/English.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/English.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/French.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/French.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/German.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/German.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Italian.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Italian.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Japanese.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/SIMBL-0.9.9.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/SIMBL-0.9.9.pkg -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/Spanish.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ar.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ar.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ca.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ca.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/cs.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/cs.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/da.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/da.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/el.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/el.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/fi.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/fi.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/he.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/he.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hu.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/hu.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ko.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ko.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/no.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/no.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pl.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pl.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/pt_PT.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ro.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ro.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ru.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/ru.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sv.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/sv.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/th.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/th.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/tr.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/tr.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/uk.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/uk.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_CN.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/Resources/zh_TW.lproj/ApplicationStub.nib -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.app/Contents/document.wflow -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/BetterDictionary-0.98.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/BetterDictionary-0.98.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/Install Script.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/Install Script.scpt -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/Installer-v0.98.workflow/Contents/QuickLook/Thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/Installer-v0.98.workflow/Contents/QuickLook/Thumbnail.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.98/Installer-v0.98.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.98/Installer-v0.98.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary-v0.99.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary-v0.99.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/MacOS/BetterDictionary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/MacOS/BetterDictionary -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/Dictionary.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/Dictionary.icns -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/add.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/remove.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-dark.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/BetterDictionary.bundle/Contents/Resources/sidebar-light.png -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.99/migrate-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.99/migrate-data -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.991/BetterDictionary-v0.991.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.991/BetterDictionary-v0.991.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.991/migrate-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.991/migrate-data -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/BetterDictionary-v0.992-macupdate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.992/BetterDictionary-v0.992-macupdate.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/BetterDictionary-v0.992.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.992/BetterDictionary-v0.992.zip -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/Installation Guide.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.992/Installation Guide.pages -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/Installation Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.992/Installation Guide.pdf -------------------------------------------------------------------------------- /Installers/BetterDictionary-0.992/migrate-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/BetterDictionary-0.992/migrate-data -------------------------------------------------------------------------------- /Installers/SIMBL Uninstaller.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/SIMBL Uninstaller.zip -------------------------------------------------------------------------------- /Installers/SIMBL-0.9.9.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Installers/SIMBL-0.9.9.pkg -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/README.markdown -------------------------------------------------------------------------------- /Resources/BetterDictionaryIcons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pooriaazimi/BetterDictionary/HEAD/Resources/BetterDictionaryIcons.sketch --------------------------------------------------------------------------------