This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johan Kuijt
authored and
Johan Kuijt
committed
Feb 19, 2014
1 parent
5171542
commit f2d01ae
Showing
29 changed files
with
146 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/FeedbackReporter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Versions/Current/Resources |
Binary file not shown.
22 changes: 22 additions & 0 deletions
22
FeedbackReporter.framework/Versions/A/Headers/FRExceptionReportingApplication.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright 2008, Jens Alfke, Torsten Curdt | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
|
||
@interface FRExceptionReportingApplication : NSApplication | ||
|
||
@end |
50 changes: 50 additions & 0 deletions
50
FeedbackReporter.framework/Versions/A/Headers/FRFeedbackReporter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2008-2011, Torsten Curdt | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
@protocol FRFeedbackReporterDelegate <NSObject> | ||
@optional | ||
- (NSDictionary*) customParametersForFeedbackReport; | ||
- (NSMutableDictionary*) anonymizePreferencesForFeedbackReport:(NSMutableDictionary *)preferences; | ||
- (NSString *) targetUrlForFeedbackReport; | ||
- (NSString *) feedbackDisplayName; | ||
@end | ||
|
||
@interface FRFeedbackReporter : NSObject { | ||
|
||
@private | ||
id feedbackController; | ||
id<FRFeedbackReporterDelegate> delegate; | ||
} | ||
|
||
// Creates and returns the singleton FRFeedbackReporter. Does not perform any checks or other real work. | ||
+ (FRFeedbackReporter *)sharedReporter; | ||
|
||
// Gets/sets the delegate. | ||
- (id<FRFeedbackReporterDelegate>) delegate; | ||
- (void) setDelegate:(id<FRFeedbackReporterDelegate>) delegate; | ||
|
||
// Displays the feedback user interface allowing the user to provide general feedback. Returns YES if it was able to display the UI, NO otherwise. | ||
- (BOOL) reportFeedback; | ||
|
||
// Searches the disk for crash logs, and displays the feedback user interface if there are crash logs newer than since the last check. Updates the 'last crash check date' in user defaults. Returns YES if it was able to display the UI, NO otherwise. | ||
- (BOOL) reportIfCrash; | ||
|
||
// Displays the feedback user interface for the given exception. Do not pass nil. Returns YES if it was able to display the UI, NO otherwise. | ||
- (BOOL) reportException:(NSException *)exception; | ||
|
||
@end |
38 changes: 38 additions & 0 deletions
38
FeedbackReporter.framework/Versions/A/Resources/Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildMachineOSBuild</key> | ||
<string>13B3116</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>FeedbackReporter</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.vafer.FeedbackReporter</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>FeedbackReporter</string> | ||
<key>CFBundlePackageType</key> | ||
<string>FMWK</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.3</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>5A3005</string> | ||
<key>DTPlatformVersion</key> | ||
<string>GM</string> | ||
<key>DTSDKBuild</key> | ||
<string>13A595</string> | ||
<key>DTSDKName</key> | ||
<string>macosx10.9</string> | ||
<key>DTXcode</key> | ||
<string>0502</string> | ||
<key>DTXcodeBuild</key> | ||
<string>5A3005</string> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/ar.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.45 KB
FeedbackReporter.framework/Versions/A/Resources/ar.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.6 KB
FeedbackReporter.framework/Versions/A/Resources/de.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.48 KB
FeedbackReporter.framework/Versions/A/Resources/de.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/en.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.53 KB
FeedbackReporter.framework/Versions/A/Resources/en.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/es.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.66 KB
FeedbackReporter.framework/Versions/A/Resources/es.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/fr.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.74 KB
FeedbackReporter.framework/Versions/A/Resources/fr.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/hy.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.49 KB
FeedbackReporter.framework/Versions/A/Resources/hy.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/it.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.7 KB
FeedbackReporter.framework/Versions/A/Resources/it.lproj/FeedbackReporter.strings
Binary file not shown.
Binary file added
BIN
+27.1 KB
FeedbackReporter.framework/Versions/A/Resources/ru.lproj/FeedbackReporter.nib
Binary file not shown.
Binary file added
BIN
+3.35 KB
FeedbackReporter.framework/Versions/A/Resources/ru.lproj/FeedbackReporter.strings
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+3.91 KB
(100%)
...xcodeproj/project.xcworkspace/xcuserdata/johan.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,8 @@ - (void)awakeFromNib | |
[imageBrowser setZoomValue:0.5]; | ||
|
||
[self fetchShows]; | ||
|
||
abort(); | ||
} | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters