├── .gitignore ├── .swift-version ├── CONTRIBUTORS ├── Client ├── Android │ ├── README.markdown │ ├── client-code │ │ └── src │ │ │ └── com │ │ │ └── NSLogger │ │ │ └── NSLoggerClient.java │ └── example │ │ └── com │ │ └── example │ │ ├── Debug.java │ │ └── DroidLogger.java └── iOS │ ├── LoggerClient.h │ ├── LoggerClient.m │ ├── LoggerCommon.h │ ├── Mac Test App │ ├── InfoPlist.strings │ ├── MainMenu.xib │ ├── NSLoggerMacClientTest-Info.plist │ ├── NSLoggerMacClientTest.xcodeproj │ │ └── project.pbxproj │ ├── NSLoggerMacClientTestAppDelegate.h │ ├── NSLoggerMacClientTestAppDelegate.m │ ├── NSLoggerMacClientTest_Prefix.pch │ └── main.m │ ├── NSLogger.h │ ├── NSLogger.swift │ ├── NSLoggerSwift.h │ ├── PublicHeaders │ ├── LoggerClient.h │ └── NSLogger.h │ ├── iPhone Test App (ARC) │ ├── Classes │ │ ├── LoggerClientAppDelegate.h │ │ ├── LoggerClientAppDelegate.m │ │ ├── LoggerClientViewController.h │ │ └── LoggerClientViewController.m │ ├── Info.plist │ ├── LoggerTestAppViewController.xib │ ├── MainWindow.xib │ ├── NSLoggerTestApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── almightykim.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── almightykim.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── NSLoggerClient TestApp.xcscheme │ │ │ └── xcschememanagement.plist │ ├── NSLoggerTestApp_Prefix.pch │ └── main.m │ ├── iPhone Test App (Swift) │ ├── NSLoggerTestApp-Bridging-Header.h │ ├── NSLoggerTestApp.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── NSLoggerTestApp │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Bohr_Einstein.imageset │ │ │ ├── Bohr_Einstein.jpg │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── NSLoggerTestImage.imageset │ │ │ ├── Contents.json │ │ │ └── NSLoggerTestImage.png │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ └── iPhone Test App │ ├── Classes │ ├── LoggerClientAppDelegate.h │ ├── LoggerClientAppDelegate.m │ ├── LoggerClientViewController.h │ └── LoggerClientViewController.m │ ├── Info.plist │ ├── LoggerTestAppViewController.xib │ ├── MainWindow.xib │ ├── NSLoggerTestApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── NSLoggerTestApp_Prefix.pch │ └── main.m ├── Desktop ├── Classes │ ├── LoggerAppDelegate.h │ ├── LoggerAppDelegate.m │ ├── LoggerClientInfoCell.h │ ├── LoggerClientInfoCell.m │ ├── LoggerConnection.h │ ├── LoggerConnection.m │ ├── LoggerDetailsWindowController.h │ ├── LoggerDetailsWindowController.m │ ├── LoggerDocument.h │ ├── LoggerDocument.m │ ├── LoggerDocumentController.h │ ├── LoggerDocumentController.m │ ├── LoggerIPConnection.h │ ├── LoggerIPConnection.m │ ├── LoggerJSONMessage.h │ ├── LoggerJSONMessage.m │ ├── LoggerMarkerCell.h │ ├── LoggerMarkerCell.m │ ├── LoggerMessage.h │ ├── LoggerMessage.m │ ├── LoggerMessageCell.h │ ├── LoggerMessageCell.m │ ├── LoggerNativeMessage.h │ ├── LoggerNativeMessage.m │ ├── LoggerNativeTransport.h │ ├── LoggerNativeTransport.m │ ├── LoggerPrefsWindowController.h │ ├── LoggerPrefsWindowController.m │ ├── LoggerSplitView.h │ ├── LoggerSplitView.m │ ├── LoggerStatusWindowController.h │ ├── LoggerStatusWindowController.m │ ├── LoggerTCPConnection.h │ ├── LoggerTCPConnection.m │ ├── LoggerTCPTransport.h │ ├── LoggerTCPTransport.m │ ├── LoggerTableView.h │ ├── LoggerTableView.m │ ├── LoggerTransport.h │ ├── LoggerTransport.m │ ├── LoggerTransportStatusCell.h │ ├── LoggerTransportStatusCell.m │ ├── LoggerUtils.h │ ├── LoggerUtils.m │ ├── LoggerWindowController.h │ ├── LoggerWindowController.m │ ├── NSColor+NSLogger.h │ ├── NSColor+NSLogger.m │ ├── ValueTransformers.h │ ├── ValueTransformers.m │ └── relaunch.m ├── Info.plist ├── NSLoggerViewer.xcodeproj │ ├── TemplateIcon.icns │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── NSLogger.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── NSLogger.xcscheme │ │ └── relaunch tool.xcscheme ├── NSLogger_Prefix.pch ├── README.txt ├── Resources │ ├── Credits.rtf │ ├── HockeyConf.plist │ ├── Icon │ │ ├── 1290083967_Console.png │ │ ├── Console icon.webloc │ │ ├── Export.png │ │ ├── Icon.icns │ │ ├── Icon.opacity │ │ ├── Load.png │ │ ├── Save.png │ │ ├── logfile.icns │ │ └── rawlogfile.icns │ ├── InfoPlist.strings │ ├── LoggerDetailsWindow.xib │ ├── LoggerPrefs.xib │ ├── LoggerStatus.xib │ ├── LoggerWindow.xib │ ├── MainMenu.xib │ ├── Media.xcassets │ │ ├── ClientConnectedBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── ClientDisconnectedBackgroundColor.colorset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── MarkerBackgroundColor.colorset │ │ │ └── Contents.json │ ├── NSLoggerCertReq.conf │ └── ssl_badge.png ├── Third Party │ ├── BWToolkit │ │ ├── .hgignore │ │ ├── BWAddMiniBottomBar.h │ │ ├── BWAddMiniBottomBar.m │ │ ├── BWAddRegularBottomBar.h │ │ ├── BWAddRegularBottomBar.m │ │ ├── BWAddSheetBottomBar.h │ │ ├── BWAddSheetBottomBar.m │ │ ├── BWAddSmallBottomBar.h │ │ ├── BWAddSmallBottomBar.m │ │ ├── BWAnchoredButton.h │ │ ├── BWAnchoredButton.m │ │ ├── BWAnchoredButtonBar.h │ │ ├── BWAnchoredButtonBar.m │ │ ├── BWAnchoredButtonCell.h │ │ ├── BWAnchoredButtonCell.m │ │ ├── BWAnchoredPopUpButton.h │ │ ├── BWAnchoredPopUpButton.m │ │ ├── BWAnchoredPopUpButtonCell.h │ │ ├── BWAnchoredPopUpButtonCell.m │ │ ├── BWCustomView.h │ │ ├── BWCustomView.m │ │ ├── BWRemoveBottomBar.h │ │ ├── BWRemoveBottomBar.m │ │ ├── BWSplitView.h │ │ ├── BWSplitView.m │ │ ├── BWToolkitFramework-Info.plist │ │ ├── BWToolkitFramework.h │ │ ├── BWUnanchoredButton.h │ │ ├── BWUnanchoredButton.m │ │ ├── BWUnanchoredButtonCell.h │ │ ├── BWUnanchoredButtonCell.m │ │ ├── BWUnanchoredButtonContainer.h │ │ ├── BWUnanchoredButtonContainer.m │ │ ├── ButtonBarPullDownArrow.pdf │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── GradientSplitViewDimpleBitmap.tif │ │ ├── GradientSplitViewDimpleVector.pdf │ │ ├── Info.plist │ │ ├── Library-CustomView.tif │ │ ├── License.rtf │ │ ├── NSApplication+BWAdditions.h │ │ ├── NSApplication+BWAdditions.m │ │ ├── NSColor+BWAdditions.h │ │ ├── NSColor+BWAdditions.m │ │ ├── NSCustomView.h │ │ ├── NSEvent+BWAdditions.h │ │ ├── NSEvent+BWAdditions.m │ │ ├── NSImage+BWAdditions.h │ │ ├── NSImage+BWAdditions.m │ │ ├── NSString+BWAdditions.h │ │ ├── NSString+BWAdditions.m │ │ ├── NSView+BWAdditions.h │ │ ├── NSView+BWAdditions.m │ │ ├── NSWindow+BWAdditions.h │ │ ├── NSWindow+BWAdditions.m │ │ ├── Release Notes.rtf │ │ ├── TexturedSliderPhotoLarge.tif │ │ ├── TexturedSliderPhotoSmall.tif │ │ ├── TexturedSliderSpeakerLoud.png │ │ ├── TexturedSliderSpeakerQuiet.png │ │ ├── TexturedSliderThumbN.tiff │ │ ├── TexturedSliderThumbP.tiff │ │ ├── TexturedSliderTrackFill.tiff │ │ ├── TexturedSliderTrackLeft.tiff │ │ ├── TexturedSliderTrackRight.tiff │ │ ├── TokenFieldArrow.tif │ │ ├── TokenFieldHighlightedArrow.tif │ │ ├── ToolbarItemFonts.tiff │ │ ├── TransparentButtonFillN.tiff │ │ ├── TransparentButtonFillP.tiff │ │ ├── TransparentButtonLeftN.tiff │ │ ├── TransparentButtonLeftP.tiff │ │ ├── TransparentButtonRightN.tiff │ │ ├── TransparentButtonRightP.tiff │ │ ├── TransparentCheckboxOffN.tiff │ │ ├── TransparentCheckboxOffP.tiff │ │ ├── TransparentCheckboxOnN.tiff │ │ ├── TransparentCheckboxOnP.tiff │ │ ├── TransparentPopUpFillN.tiff │ │ ├── TransparentPopUpFillP.tiff │ │ ├── TransparentPopUpLeftN.tiff │ │ ├── TransparentPopUpLeftP.tiff │ │ ├── TransparentPopUpPullDownRightN.tif │ │ ├── TransparentPopUpPullDownRightP.tif │ │ ├── TransparentPopUpRightN.tiff │ │ ├── TransparentPopUpRightP.tiff │ │ ├── TransparentSliderThumbN.tiff │ │ ├── TransparentSliderThumbP.tiff │ │ ├── TransparentSliderTrackFill.tiff │ │ ├── TransparentSliderTrackLeft.tiff │ │ ├── TransparentSliderTrackRight.tiff │ │ ├── TransparentSliderTriangleThumbN.tiff │ │ └── TransparentSliderTriangleThumbP.tiff │ ├── HockeySDK-Mac │ │ ├── Changelog.md │ │ ├── HockeySDK.framework.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── HockeySDK │ │ ├── HockeySDK.framework │ │ │ ├── Headers │ │ │ ├── HockeySDK │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── BITCrashExceptionApplication.h │ │ │ │ │ ├── BITCrashManager.h │ │ │ │ │ ├── BITCrashManagerDelegate.h │ │ │ │ │ ├── BITFeedbackManager.h │ │ │ │ │ ├── BITFeedbackWindowController.h │ │ │ │ │ ├── BITHockeyBaseManager.h │ │ │ │ │ ├── BITHockeyManager.h │ │ │ │ │ ├── BITHockeyManagerDelegate.h │ │ │ │ │ ├── BITSystemProfile.h │ │ │ │ │ └── HockeySDK.h │ │ │ │ ├── HockeySDK │ │ │ │ ├── Resources │ │ │ │ │ ├── BITCrashReportUI.nib │ │ │ │ │ ├── BITFeedbackWindowController.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ └── sv.lproj │ │ │ │ │ │ └── HockeySDK.strings │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ ├── LICENSE.txt │ │ └── README.md │ └── SSSelectableToolbar │ │ ├── README │ │ ├── SSSelectableToolbar.h │ │ ├── SSSelectableToolbar.m │ │ ├── SSSelectableToolbarItem.h │ │ └── SSSelectableToolbarItem.m ├── clear log.png └── main.m ├── Docs ├── Cocoaheads_Paris_Presentation_EN.key.zip └── Cocoaheads_Paris_Presentation_FR.key.zip ├── Info.plist ├── LICENSE.txt ├── NSLogger.podspec ├── NSLogger.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── NSLogger.xcscheme │ └── NSLoggerSwift.xcscheme ├── Package.swift ├── README.markdown ├── SPMTests └── NSLoggerTests │ ├── NSLoggerTests.swift │ └── XCTestManifests.swift ├── Screenshots ├── Logger Status.jpg ├── advanced_colors_prefs.png ├── demo_video.gif ├── filtereditor.png ├── icon_small.png ├── ipad_viewer_13_05_11.png ├── iphone_bluetooth_13_04_27.png ├── mainwindow-dark.png ├── mainwindow.png ├── marks.png └── regex.png └── iPad Viewer ├── .gitignore ├── Constants ├── LoggerConstApp.h ├── LoggerConstApp.m ├── LoggerConstController.h ├── LoggerConstController.m ├── LoggerConstModel.h ├── LoggerConstModel.m ├── LoggerConstView.h └── LoggerConstView.m ├── CoreDataModel ├── LoggerClientData.h ├── LoggerClientData.m ├── LoggerConnectionStatusData.h ├── LoggerConnectionStatusData.m ├── LoggerMessageData.h ├── LoggerMessageData.m └── LoggerMessages.xcdatamodeld │ └── LoggerMessages.xcdatamodel │ └── contents ├── DataStorage ├── DataOperation │ ├── LoggerDataDelete.h │ ├── LoggerDataDelete.m │ ├── LoggerDataOperation.h │ ├── LoggerDataOperation.m │ ├── LoggerDataRead.h │ ├── LoggerDataRead.m │ ├── LoggerDataWrite.h │ └── LoggerDataWrite.m ├── LoggerDataEntry.h ├── LoggerDataEntry.m ├── LoggerDataStorage.h └── LoggerDataStorage.m ├── LICENSE ├── Managers ├── LoggerCertManager.h ├── LoggerCertManager.m ├── LoggerDataManager.h ├── LoggerDataManager.m ├── LoggerPreferenceManager.h ├── LoggerPreferenceManager.m ├── LoggerTextStyleManager.h ├── LoggerTextStyleManager.m ├── LoggerTransportManager.h └── LoggerTransportManager.m ├── Model ├── JSONFormat │ ├── LoggerJSONMessage.h │ └── LoggerJSONMessage.m ├── LoggerConnection.h ├── LoggerConnection.m ├── LoggerIPConnection.h ├── LoggerIPConnection.m ├── LoggerMessage.h ├── LoggerMessage.m ├── LoggerTCPConnection.h ├── LoggerTCPConnection.m ├── LoggerTCPTransport.h ├── LoggerTCPTransport.m ├── LoggerTransport.h ├── LoggerTransport.m ├── LoggerTransportDelegate.h ├── MessageFormatter │ ├── LoggerMessageFormatter.h │ └── LoggerMessageFormatter.m ├── MessageSizeCalculator │ ├── LoggerClientSize.h │ ├── LoggerClientSize.m │ ├── LoggerMarkerSize.h │ ├── LoggerMarkerSize.m │ ├── LoggerMessageSize.h │ └── LoggerMessageSize.m └── NativeLogFormat │ ├── LoggerNativeLegacyTransport.h │ ├── LoggerNativeLegacyTransport.m │ ├── LoggerNativeMessage.h │ ├── LoggerNativeMessage.m │ ├── LoggerNativeTransport.h │ └── LoggerNativeTransport.m ├── NSLoggerResource.bundle ├── Certificate │ ├── NSLoggerCert.p12 │ └── NSLoggerCert.pem ├── Credits.rtf ├── Icon │ ├── 1290083967_Console.png │ ├── Console icon.webloc │ ├── Export.png │ ├── Icon.icns │ ├── Icon.opacity │ ├── Load.png │ ├── Save.png │ ├── logfile.icns │ ├── rawlogfile.icns │ ├── ssl_badge.png │ ├── status_disconnected.png │ ├── status_error.png │ └── status_ready_connected.png ├── LoggerPreferenceItems.plist ├── NSLoggerCertReq.conf ├── Profiles │ ├── fpillet.jpg │ └── stkim1.png ├── button │ ├── bottom_function_selected.png │ ├── bottom_function_selected@2x.png │ ├── bottom_function_toggle.png │ ├── bottom_function_toggle@2x.png │ ├── center_next_run.png │ ├── center_next_run@2x.png │ ├── center_prev_run.png │ └── center_prev_run@2x.png └── fonts │ ├── Courier Prime-OFL.txt │ ├── Courier Prime.ttf │ ├── Inconsolata-OFL.txt │ ├── Inconsolata.ttf │ ├── Lucida Grande Bold.ttf │ ├── Lucida Grande.ttf │ ├── digital-7 (italic).ttf │ └── digital-7 (italic).txt ├── README.md ├── Utilities ├── AppDelegateCycleHandle.h ├── CoreData │ ├── NSManagedObjectContext+FetchAdditions.h │ └── NSManagedObjectContext+FetchAdditions.m ├── Directory │ ├── NSFileManager+DirectoryLocations.h │ └── NSFileManager+DirectoryLocations.m ├── ICloud │ ├── ICloudSupport.h │ └── ICloudSupport.m ├── LoggerUtils.h ├── LoggerUtils.m ├── Macro │ └── Macro.h ├── String │ └── NullStringCheck.h ├── SynthesizeSingleton.h ├── UIColor │ └── UIColorRGBA.h ├── ValueTransformers.h ├── ValueTransformers.m └── time_converter.h ├── ViewController ├── BaseViewController │ ├── BaseViewController.h │ ├── BaseViewController.m │ └── KeyboardAddition │ │ ├── BaseViewKeyboardAddition.h │ │ └── BaseViewKeyboardAddition.m └── MessageViewController │ ├── LoggerMessageViewController.h │ ├── LoggerMessageViewController.m │ └── LoggerMessageViewController.xib ├── Views & Cells └── MessageCell │ ├── LoggerClientInfoCell.h │ ├── LoggerClientInfoCell.m │ ├── LoggerMarkerCell.h │ ├── LoggerMarkerCell.m │ ├── LoggerMessageCell.h │ └── LoggerMessageCell.m ├── iPad Viewer.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── iPad Viewer.xccheckout └── iPad Viewer ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── Images.xcassets ├── AppIcon.appiconset │ ├── AppIcon-29.png │ ├── AppIcon-29@2x-1.png │ ├── AppIcon-29@2x-2.png │ ├── AppIcon-29@2x.png │ ├── AppIcon-29@3x.png │ ├── AppIcon-40.png │ ├── AppIcon-40@2x-1.png │ ├── AppIcon-40@2x.png │ ├── AppIcon-40@3x.png │ ├── AppIcon-60@2x.png │ ├── AppIcon-60@3x.png │ ├── AppIcon-72.png │ ├── AppIcon-72@2x.png │ ├── AppIcon-76.png │ ├── AppIcon-76@2x.png │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── MainWindow.xib ├── en.lproj └── InfoPlist.strings ├── iPad Viewer-Info.plist ├── iPad Viewer-Prefix.pch └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Client/Android/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/Android/README.markdown -------------------------------------------------------------------------------- /Client/Android/client-code/src/com/NSLogger/NSLoggerClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/Android/client-code/src/com/NSLogger/NSLoggerClient.java -------------------------------------------------------------------------------- /Client/Android/example/com/example/Debug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/Android/example/com/example/Debug.java -------------------------------------------------------------------------------- /Client/Android/example/com/example/DroidLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/Android/example/com/example/DroidLogger.java -------------------------------------------------------------------------------- /Client/iOS/LoggerClient.h: -------------------------------------------------------------------------------- 1 | PublicHeaders/LoggerClient.h -------------------------------------------------------------------------------- /Client/iOS/LoggerClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/LoggerClient.m -------------------------------------------------------------------------------- /Client/iOS/LoggerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/LoggerCommon.h -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/MainMenu.xib -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/NSLoggerMacClientTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/NSLoggerMacClientTest-Info.plist -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/NSLoggerMacClientTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/NSLoggerMacClientTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/NSLoggerMacClientTestAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/NSLoggerMacClientTestAppDelegate.h -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/NSLoggerMacClientTestAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/NSLoggerMacClientTestAppDelegate.m -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/NSLoggerMacClientTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/NSLoggerMacClientTest_Prefix.pch -------------------------------------------------------------------------------- /Client/iOS/Mac Test App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/Mac Test App/main.m -------------------------------------------------------------------------------- /Client/iOS/NSLogger.h: -------------------------------------------------------------------------------- 1 | PublicHeaders/NSLogger.h -------------------------------------------------------------------------------- /Client/iOS/NSLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/NSLogger.swift -------------------------------------------------------------------------------- /Client/iOS/NSLoggerSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/NSLoggerSwift.h -------------------------------------------------------------------------------- /Client/iOS/PublicHeaders/LoggerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/PublicHeaders/LoggerClient.h -------------------------------------------------------------------------------- /Client/iOS/PublicHeaders/NSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/PublicHeaders/NSLogger.h -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientAppDelegate.h -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientAppDelegate.m -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientViewController.h -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/Classes/LoggerClientViewController.m -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/Info.plist -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/LoggerTestAppViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/LoggerTestAppViewController.xib -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/MainWindow.xib -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/project.xcworkspace/xcuserdata/almightykim.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/project.xcworkspace/xcuserdata/almightykim.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/xcuserdata/almightykim.xcuserdatad/xcschemes/NSLoggerClient TestApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/xcuserdata/almightykim.xcuserdatad/xcschemes/NSLoggerClient TestApp.xcscheme -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/xcuserdata/almightykim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp.xcodeproj/xcuserdata/almightykim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/NSLoggerTestApp_Prefix.pch -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (ARC)/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (ARC)/main.m -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp-Bridging-Header.h -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/AppDelegate.swift -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/Bohr_Einstein.imageset/Bohr_Einstein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/Bohr_Einstein.imageset/Bohr_Einstein.jpg -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/Bohr_Einstein.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/Bohr_Einstein.imageset/Contents.json -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/NSLoggerTestImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/NSLoggerTestImage.imageset/Contents.json -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/NSLoggerTestImage.imageset/NSLoggerTestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Assets.xcassets/NSLoggerTestImage.imageset/NSLoggerTestImage.png -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/Info.plist -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App (Swift)/NSLoggerTestApp/ViewController.swift -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/Classes/LoggerClientAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/Classes/LoggerClientAppDelegate.h -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/Classes/LoggerClientAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/Classes/LoggerClientAppDelegate.m -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/Classes/LoggerClientViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/Classes/LoggerClientViewController.h -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/Classes/LoggerClientViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/Classes/LoggerClientViewController.m -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/Info.plist -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/LoggerTestAppViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/LoggerTestAppViewController.xib -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/MainWindow.xib -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/NSLoggerTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/NSLoggerTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/NSLoggerTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/NSLoggerTestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/NSLoggerTestApp_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/NSLoggerTestApp_Prefix.pch -------------------------------------------------------------------------------- /Client/iOS/iPhone Test App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Client/iOS/iPhone Test App/main.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerAppDelegate.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerAppDelegate.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerClientInfoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerClientInfoCell.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerClientInfoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerClientInfoCell.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerConnection.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerConnection.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerDetailsWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerDetailsWindowController.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerDetailsWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerDetailsWindowController.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerDocument.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerDocument.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerDocumentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerDocumentController.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerDocumentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerDocumentController.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerIPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerIPConnection.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerIPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerIPConnection.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerJSONMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerJSONMessage.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerJSONMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerJSONMessage.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerMarkerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerMarkerCell.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerMarkerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerMarkerCell.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerMessage.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerMessage.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerMessageCell.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerMessageCell.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerNativeMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerNativeMessage.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerNativeMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerNativeMessage.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerNativeTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerNativeTransport.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerNativeTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerNativeTransport.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerPrefsWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerPrefsWindowController.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerPrefsWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerPrefsWindowController.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerSplitView.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerSplitView.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerStatusWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerStatusWindowController.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerStatusWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerStatusWindowController.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTCPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTCPConnection.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTCPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTCPConnection.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTCPTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTCPTransport.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTCPTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTCPTransport.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTableView.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTableView.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTransport.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTransport.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTransportStatusCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTransportStatusCell.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerTransportStatusCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerTransportStatusCell.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerUtils.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerUtils.m -------------------------------------------------------------------------------- /Desktop/Classes/LoggerWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerWindowController.h -------------------------------------------------------------------------------- /Desktop/Classes/LoggerWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/LoggerWindowController.m -------------------------------------------------------------------------------- /Desktop/Classes/NSColor+NSLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/NSColor+NSLogger.h -------------------------------------------------------------------------------- /Desktop/Classes/NSColor+NSLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/NSColor+NSLogger.m -------------------------------------------------------------------------------- /Desktop/Classes/ValueTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/ValueTransformers.h -------------------------------------------------------------------------------- /Desktop/Classes/ValueTransformers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/ValueTransformers.m -------------------------------------------------------------------------------- /Desktop/Classes/relaunch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Classes/relaunch.m -------------------------------------------------------------------------------- /Desktop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Info.plist -------------------------------------------------------------------------------- /Desktop/NSLoggerViewer.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLoggerViewer.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /Desktop/NSLoggerViewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLoggerViewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Desktop/NSLoggerViewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLoggerViewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Desktop/NSLoggerViewer.xcodeproj/project.xcworkspace/xcshareddata/NSLogger.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLoggerViewer.xcodeproj/project.xcworkspace/xcshareddata/NSLogger.xccheckout -------------------------------------------------------------------------------- /Desktop/NSLoggerViewer.xcodeproj/xcshareddata/xcschemes/NSLogger.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLoggerViewer.xcodeproj/xcshareddata/xcschemes/NSLogger.xcscheme -------------------------------------------------------------------------------- /Desktop/NSLoggerViewer.xcodeproj/xcshareddata/xcschemes/relaunch tool.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLoggerViewer.xcodeproj/xcshareddata/xcschemes/relaunch tool.xcscheme -------------------------------------------------------------------------------- /Desktop/NSLogger_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/NSLogger_Prefix.pch -------------------------------------------------------------------------------- /Desktop/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/README.txt -------------------------------------------------------------------------------- /Desktop/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Credits.rtf -------------------------------------------------------------------------------- /Desktop/Resources/HockeyConf.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/HockeyConf.plist -------------------------------------------------------------------------------- /Desktop/Resources/Icon/1290083967_Console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/1290083967_Console.png -------------------------------------------------------------------------------- /Desktop/Resources/Icon/Console icon.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/Console icon.webloc -------------------------------------------------------------------------------- /Desktop/Resources/Icon/Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/Export.png -------------------------------------------------------------------------------- /Desktop/Resources/Icon/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/Icon.icns -------------------------------------------------------------------------------- /Desktop/Resources/Icon/Icon.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/Icon.opacity -------------------------------------------------------------------------------- /Desktop/Resources/Icon/Load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/Load.png -------------------------------------------------------------------------------- /Desktop/Resources/Icon/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/Save.png -------------------------------------------------------------------------------- /Desktop/Resources/Icon/logfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/logfile.icns -------------------------------------------------------------------------------- /Desktop/Resources/Icon/rawlogfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Icon/rawlogfile.icns -------------------------------------------------------------------------------- /Desktop/Resources/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/InfoPlist.strings -------------------------------------------------------------------------------- /Desktop/Resources/LoggerDetailsWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/LoggerDetailsWindow.xib -------------------------------------------------------------------------------- /Desktop/Resources/LoggerPrefs.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/LoggerPrefs.xib -------------------------------------------------------------------------------- /Desktop/Resources/LoggerStatus.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/LoggerStatus.xib -------------------------------------------------------------------------------- /Desktop/Resources/LoggerWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/LoggerWindow.xib -------------------------------------------------------------------------------- /Desktop/Resources/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/MainMenu.xib -------------------------------------------------------------------------------- /Desktop/Resources/Media.xcassets/ClientConnectedBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Media.xcassets/ClientConnectedBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Desktop/Resources/Media.xcassets/ClientDisconnectedBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Media.xcassets/ClientDisconnectedBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Desktop/Resources/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Desktop/Resources/Media.xcassets/MarkerBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/Media.xcassets/MarkerBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Desktop/Resources/NSLoggerCertReq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/NSLoggerCertReq.conf -------------------------------------------------------------------------------- /Desktop/Resources/ssl_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Resources/ssl_badge.png -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/.hgignore -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddMiniBottomBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddMiniBottomBar.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddMiniBottomBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddMiniBottomBar.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddRegularBottomBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddRegularBottomBar.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddRegularBottomBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddRegularBottomBar.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddSheetBottomBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddSheetBottomBar.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddSheetBottomBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddSheetBottomBar.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddSmallBottomBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddSmallBottomBar.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAddSmallBottomBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAddSmallBottomBar.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredButton.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredButton.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredButtonBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredButtonBar.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredButtonBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredButtonBar.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredButtonCell.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredButtonCell.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredPopUpButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredPopUpButton.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredPopUpButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredPopUpButton.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredPopUpButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredPopUpButtonCell.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWAnchoredPopUpButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWAnchoredPopUpButtonCell.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWCustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWCustomView.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWCustomView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWCustomView.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWRemoveBottomBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWRemoveBottomBar.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWRemoveBottomBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWRemoveBottomBar.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWSplitView.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWSplitView.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWToolkitFramework-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWToolkitFramework-Info.plist -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWToolkitFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWToolkitFramework.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWUnanchoredButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWUnanchoredButton.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWUnanchoredButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWUnanchoredButton.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWUnanchoredButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWUnanchoredButtonCell.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWUnanchoredButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWUnanchoredButtonCell.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWUnanchoredButtonContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWUnanchoredButtonContainer.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/BWUnanchoredButtonContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/BWUnanchoredButtonContainer.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/ButtonBarPullDownArrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/ButtonBarPullDownArrow.pdf -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/GradientSplitViewDimpleBitmap.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/GradientSplitViewDimpleBitmap.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/GradientSplitViewDimpleVector.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/GradientSplitViewDimpleVector.pdf -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/Info.plist -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/Library-CustomView.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/Library-CustomView.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/License.rtf -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSApplication+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSApplication+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSApplication+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSApplication+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSColor+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSColor+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSColor+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSColor+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSCustomView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSCustomView.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSEvent+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSEvent+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSEvent+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSEvent+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSImage+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSImage+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSImage+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSImage+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSString+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSString+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSString+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSString+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSView+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSView+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSView+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSView+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSWindow+BWAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSWindow+BWAdditions.h -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/NSWindow+BWAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/NSWindow+BWAdditions.m -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/Release Notes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/Release Notes.rtf -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderPhotoLarge.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderPhotoLarge.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderPhotoSmall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderPhotoSmall.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderSpeakerLoud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderSpeakerLoud.png -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderSpeakerQuiet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderSpeakerQuiet.png -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderThumbN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderThumbN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderThumbP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderThumbP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderTrackFill.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderTrackFill.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderTrackLeft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderTrackLeft.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TexturedSliderTrackRight.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TexturedSliderTrackRight.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TokenFieldArrow.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TokenFieldArrow.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TokenFieldHighlightedArrow.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TokenFieldHighlightedArrow.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/ToolbarItemFonts.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/ToolbarItemFonts.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentButtonFillN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentButtonFillN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentButtonFillP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentButtonFillP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentButtonLeftN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentButtonLeftN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentButtonLeftP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentButtonLeftP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentButtonRightN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentButtonRightN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentButtonRightP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentButtonRightP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentCheckboxOffN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentCheckboxOffN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentCheckboxOffP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentCheckboxOffP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentCheckboxOnN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentCheckboxOnN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentCheckboxOnP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentCheckboxOnP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpFillN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpFillN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpFillP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpFillP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpLeftN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpLeftN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpLeftP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpLeftP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpPullDownRightN.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpPullDownRightN.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpPullDownRightP.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpPullDownRightP.tif -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpRightN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpRightN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentPopUpRightP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentPopUpRightP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderThumbN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderThumbN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderThumbP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderThumbP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderTrackFill.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderTrackFill.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderTrackLeft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderTrackLeft.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderTrackRight.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderTrackRight.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderTriangleThumbN.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderTriangleThumbN.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/BWToolkit/TransparentSliderTriangleThumbP.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/BWToolkit/TransparentSliderTriangleThumbP.tiff -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/Changelog.md -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents/Resources/DWARF/HockeySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework.dSYM/Contents/Resources/DWARF/HockeySDK -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/HockeySDK: -------------------------------------------------------------------------------- 1 | Versions/Current/HockeySDK -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITCrashExceptionApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITCrashExceptionApplication.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITCrashManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITCrashManager.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITCrashManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITCrashManagerDelegate.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITFeedbackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITFeedbackManager.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITFeedbackWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITFeedbackWindowController.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITHockeyBaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITHockeyBaseManager.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITHockeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITHockeyManager.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITHockeyManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITHockeyManagerDelegate.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITSystemProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/BITSystemProfile.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/HockeySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/HockeySDK.h -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/HockeySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/HockeySDK -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/BITCrashReportUI.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/BITCrashReportUI.nib -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/BITFeedbackWindowController.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/BITFeedbackWindowController.nib -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/de.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/de.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/en.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/en.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/fi.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/fi.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/fr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/fr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/it.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/it.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/ja.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/ja.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/nb.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/nb.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/sv.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/Resources/sv.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/HockeySDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/LICENSE.txt -------------------------------------------------------------------------------- /Desktop/Third Party/HockeySDK-Mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/HockeySDK-Mac/README.md -------------------------------------------------------------------------------- /Desktop/Third Party/SSSelectableToolbar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/SSSelectableToolbar/README -------------------------------------------------------------------------------- /Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbar.h -------------------------------------------------------------------------------- /Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbar.m -------------------------------------------------------------------------------- /Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbarItem.h -------------------------------------------------------------------------------- /Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/Third Party/SSSelectableToolbar/SSSelectableToolbarItem.m -------------------------------------------------------------------------------- /Desktop/clear log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/clear log.png -------------------------------------------------------------------------------- /Desktop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Desktop/main.m -------------------------------------------------------------------------------- /Docs/Cocoaheads_Paris_Presentation_EN.key.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Docs/Cocoaheads_Paris_Presentation_EN.key.zip -------------------------------------------------------------------------------- /Docs/Cocoaheads_Paris_Presentation_FR.key.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Docs/Cocoaheads_Paris_Presentation_FR.key.zip -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NSLogger.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/NSLogger.podspec -------------------------------------------------------------------------------- /NSLogger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/NSLogger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/NSLogger.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NSLogger.xcodeproj/xcshareddata/xcschemes/NSLogger.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/NSLogger.xcodeproj/xcshareddata/xcschemes/NSLogger.xcscheme -------------------------------------------------------------------------------- /NSLogger.xcodeproj/xcshareddata/xcschemes/NSLoggerSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/NSLogger.xcodeproj/xcshareddata/xcschemes/NSLoggerSwift.xcscheme -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Package.swift -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/README.markdown -------------------------------------------------------------------------------- /SPMTests/NSLoggerTests/NSLoggerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/SPMTests/NSLoggerTests/NSLoggerTests.swift -------------------------------------------------------------------------------- /SPMTests/NSLoggerTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/SPMTests/NSLoggerTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Screenshots/Logger Status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/Logger Status.jpg -------------------------------------------------------------------------------- /Screenshots/advanced_colors_prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/advanced_colors_prefs.png -------------------------------------------------------------------------------- /Screenshots/demo_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/demo_video.gif -------------------------------------------------------------------------------- /Screenshots/filtereditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/filtereditor.png -------------------------------------------------------------------------------- /Screenshots/icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/icon_small.png -------------------------------------------------------------------------------- /Screenshots/ipad_viewer_13_05_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/ipad_viewer_13_05_11.png -------------------------------------------------------------------------------- /Screenshots/iphone_bluetooth_13_04_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/iphone_bluetooth_13_04_27.png -------------------------------------------------------------------------------- /Screenshots/mainwindow-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/mainwindow-dark.png -------------------------------------------------------------------------------- /Screenshots/mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/mainwindow.png -------------------------------------------------------------------------------- /Screenshots/marks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/marks.png -------------------------------------------------------------------------------- /Screenshots/regex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/Screenshots/regex.png -------------------------------------------------------------------------------- /iPad Viewer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/.gitignore -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstApp.h -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstApp.m -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstController.h -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstController.m -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstModel.h -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstModel.m -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstView.h -------------------------------------------------------------------------------- /iPad Viewer/Constants/LoggerConstView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Constants/LoggerConstView.m -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerClientData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerClientData.h -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerClientData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerClientData.m -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerConnectionStatusData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerConnectionStatusData.h -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerConnectionStatusData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerConnectionStatusData.m -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerMessageData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerMessageData.h -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerMessageData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerMessageData.m -------------------------------------------------------------------------------- /iPad Viewer/CoreDataModel/LoggerMessages.xcdatamodeld/LoggerMessages.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/CoreDataModel/LoggerMessages.xcdatamodeld/LoggerMessages.xcdatamodel/contents -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataDelete.h -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataDelete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataDelete.m -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataOperation.h -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataOperation.m -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataRead.h -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataRead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataRead.m -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataWrite.h -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/DataOperation/LoggerDataWrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/DataOperation/LoggerDataWrite.m -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/LoggerDataEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/LoggerDataEntry.h -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/LoggerDataEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/LoggerDataEntry.m -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/LoggerDataStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/LoggerDataStorage.h -------------------------------------------------------------------------------- /iPad Viewer/DataStorage/LoggerDataStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/DataStorage/LoggerDataStorage.m -------------------------------------------------------------------------------- /iPad Viewer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/LICENSE -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerCertManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerCertManager.h -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerCertManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerCertManager.m -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerDataManager.h -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerDataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerDataManager.m -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerPreferenceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerPreferenceManager.h -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerPreferenceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerPreferenceManager.m -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerTextStyleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerTextStyleManager.h -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerTextStyleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerTextStyleManager.m -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerTransportManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerTransportManager.h -------------------------------------------------------------------------------- /iPad Viewer/Managers/LoggerTransportManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Managers/LoggerTransportManager.m -------------------------------------------------------------------------------- /iPad Viewer/Model/JSONFormat/LoggerJSONMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/JSONFormat/LoggerJSONMessage.h -------------------------------------------------------------------------------- /iPad Viewer/Model/JSONFormat/LoggerJSONMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/JSONFormat/LoggerJSONMessage.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerConnection.h -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerConnection.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerIPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerIPConnection.h -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerIPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerIPConnection.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerMessage.h -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerMessage.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTCPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTCPConnection.h -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTCPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTCPConnection.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTCPTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTCPTransport.h -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTCPTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTCPTransport.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTransport.h -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTransport.m -------------------------------------------------------------------------------- /iPad Viewer/Model/LoggerTransportDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/LoggerTransportDelegate.h -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageFormatter/LoggerMessageFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageFormatter/LoggerMessageFormatter.h -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageFormatter/LoggerMessageFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageFormatter/LoggerMessageFormatter.m -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageSizeCalculator/LoggerClientSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageSizeCalculator/LoggerClientSize.h -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageSizeCalculator/LoggerClientSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageSizeCalculator/LoggerClientSize.m -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageSizeCalculator/LoggerMarkerSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageSizeCalculator/LoggerMarkerSize.h -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageSizeCalculator/LoggerMarkerSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageSizeCalculator/LoggerMarkerSize.m -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageSizeCalculator/LoggerMessageSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageSizeCalculator/LoggerMessageSize.h -------------------------------------------------------------------------------- /iPad Viewer/Model/MessageSizeCalculator/LoggerMessageSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/MessageSizeCalculator/LoggerMessageSize.m -------------------------------------------------------------------------------- /iPad Viewer/Model/NativeLogFormat/LoggerNativeLegacyTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/NativeLogFormat/LoggerNativeLegacyTransport.h -------------------------------------------------------------------------------- /iPad Viewer/Model/NativeLogFormat/LoggerNativeLegacyTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/NativeLogFormat/LoggerNativeLegacyTransport.m -------------------------------------------------------------------------------- /iPad Viewer/Model/NativeLogFormat/LoggerNativeMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/NativeLogFormat/LoggerNativeMessage.h -------------------------------------------------------------------------------- /iPad Viewer/Model/NativeLogFormat/LoggerNativeMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/NativeLogFormat/LoggerNativeMessage.m -------------------------------------------------------------------------------- /iPad Viewer/Model/NativeLogFormat/LoggerNativeTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/NativeLogFormat/LoggerNativeTransport.h -------------------------------------------------------------------------------- /iPad Viewer/Model/NativeLogFormat/LoggerNativeTransport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Model/NativeLogFormat/LoggerNativeTransport.m -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Certificate/NSLoggerCert.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Certificate/NSLoggerCert.p12 -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Certificate/NSLoggerCert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Certificate/NSLoggerCert.pem -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Credits.rtf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/1290083967_Console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/1290083967_Console.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/Console icon.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/Console icon.webloc -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/Export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/Export.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/Icon.icns -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/Icon.opacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/Icon.opacity -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/Load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/Load.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/Save.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/logfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/logfile.icns -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/rawlogfile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/rawlogfile.icns -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/ssl_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/ssl_badge.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/status_disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/status_disconnected.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/status_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/status_error.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Icon/status_ready_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Icon/status_ready_connected.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/LoggerPreferenceItems.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/LoggerPreferenceItems.plist -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/NSLoggerCertReq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/NSLoggerCertReq.conf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Profiles/fpillet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Profiles/fpillet.jpg -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/Profiles/stkim1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/Profiles/stkim1.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/bottom_function_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/bottom_function_selected.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/bottom_function_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/bottom_function_selected@2x.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/bottom_function_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/bottom_function_toggle.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/bottom_function_toggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/bottom_function_toggle@2x.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/center_next_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/center_next_run.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/center_next_run@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/center_next_run@2x.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/center_prev_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/center_prev_run.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/button/center_prev_run@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/button/center_prev_run@2x.png -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/Courier Prime-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/Courier Prime-OFL.txt -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/Courier Prime.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/Courier Prime.ttf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/Inconsolata-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/Inconsolata-OFL.txt -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/Lucida Grande Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/Lucida Grande Bold.ttf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/Lucida Grande.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/Lucida Grande.ttf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/digital-7 (italic).ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/digital-7 (italic).ttf -------------------------------------------------------------------------------- /iPad Viewer/NSLoggerResource.bundle/fonts/digital-7 (italic).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/NSLoggerResource.bundle/fonts/digital-7 (italic).txt -------------------------------------------------------------------------------- /iPad Viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/README.md -------------------------------------------------------------------------------- /iPad Viewer/Utilities/AppDelegateCycleHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/AppDelegateCycleHandle.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/CoreData/NSManagedObjectContext+FetchAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/CoreData/NSManagedObjectContext+FetchAdditions.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/CoreData/NSManagedObjectContext+FetchAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/CoreData/NSManagedObjectContext+FetchAdditions.m -------------------------------------------------------------------------------- /iPad Viewer/Utilities/Directory/NSFileManager+DirectoryLocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/Directory/NSFileManager+DirectoryLocations.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/Directory/NSFileManager+DirectoryLocations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/Directory/NSFileManager+DirectoryLocations.m -------------------------------------------------------------------------------- /iPad Viewer/Utilities/ICloud/ICloudSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/ICloud/ICloudSupport.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/ICloud/ICloudSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/ICloud/ICloudSupport.m -------------------------------------------------------------------------------- /iPad Viewer/Utilities/LoggerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/LoggerUtils.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/LoggerUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/LoggerUtils.m -------------------------------------------------------------------------------- /iPad Viewer/Utilities/Macro/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/Macro/Macro.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/String/NullStringCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/String/NullStringCheck.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/SynthesizeSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/SynthesizeSingleton.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/UIColor/UIColorRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/UIColor/UIColorRGBA.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/ValueTransformers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/ValueTransformers.h -------------------------------------------------------------------------------- /iPad Viewer/Utilities/ValueTransformers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/ValueTransformers.m -------------------------------------------------------------------------------- /iPad Viewer/Utilities/time_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Utilities/time_converter.h -------------------------------------------------------------------------------- /iPad Viewer/ViewController/BaseViewController/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/BaseViewController/BaseViewController.h -------------------------------------------------------------------------------- /iPad Viewer/ViewController/BaseViewController/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/BaseViewController/BaseViewController.m -------------------------------------------------------------------------------- /iPad Viewer/ViewController/BaseViewController/KeyboardAddition/BaseViewKeyboardAddition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/BaseViewController/KeyboardAddition/BaseViewKeyboardAddition.h -------------------------------------------------------------------------------- /iPad Viewer/ViewController/BaseViewController/KeyboardAddition/BaseViewKeyboardAddition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/BaseViewController/KeyboardAddition/BaseViewKeyboardAddition.m -------------------------------------------------------------------------------- /iPad Viewer/ViewController/MessageViewController/LoggerMessageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/MessageViewController/LoggerMessageViewController.h -------------------------------------------------------------------------------- /iPad Viewer/ViewController/MessageViewController/LoggerMessageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/MessageViewController/LoggerMessageViewController.m -------------------------------------------------------------------------------- /iPad Viewer/ViewController/MessageViewController/LoggerMessageViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/ViewController/MessageViewController/LoggerMessageViewController.xib -------------------------------------------------------------------------------- /iPad Viewer/Views & Cells/MessageCell/LoggerClientInfoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Views & Cells/MessageCell/LoggerClientInfoCell.h -------------------------------------------------------------------------------- /iPad Viewer/Views & Cells/MessageCell/LoggerClientInfoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Views & Cells/MessageCell/LoggerClientInfoCell.m -------------------------------------------------------------------------------- /iPad Viewer/Views & Cells/MessageCell/LoggerMarkerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Views & Cells/MessageCell/LoggerMarkerCell.h -------------------------------------------------------------------------------- /iPad Viewer/Views & Cells/MessageCell/LoggerMarkerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Views & Cells/MessageCell/LoggerMarkerCell.m -------------------------------------------------------------------------------- /iPad Viewer/Views & Cells/MessageCell/LoggerMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Views & Cells/MessageCell/LoggerMessageCell.h -------------------------------------------------------------------------------- /iPad Viewer/Views & Cells/MessageCell/LoggerMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/Views & Cells/MessageCell/LoggerMessageCell.m -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer.xcodeproj/project.xcworkspace/xcshareddata/iPad Viewer.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer.xcodeproj/project.xcworkspace/xcshareddata/iPad Viewer.xccheckout -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/AppDelegate.h -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/AppDelegate.m -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Default-568h@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Default.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Default@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x-1.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x-2.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x-1.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-60@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-60@3x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-72.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-72@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-76.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/AppIcon-76@2x.png -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/MainWindow.xib -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/iPad Viewer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/iPad Viewer-Info.plist -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/iPad Viewer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/iPad Viewer-Prefix.pch -------------------------------------------------------------------------------- /iPad Viewer/iPad Viewer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpillet/NSLogger/HEAD/iPad Viewer/iPad Viewer/main.m --------------------------------------------------------------------------------