Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/npm/inspector_package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tns-ios-inspector",
"description": "Telerik NativeScript Inspector for iOS Runtime",
"version": "6.3.0",
"version": "6.3.1",
"keywords": [
"NativeScript",
"iOS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,14 @@ - (NSString*)userInterfaceLayoutDirection {
return @"ltr";
}

- (void)reset {
}

- (void)setSheetRect {
}

- (bool)isRemote {
return false;
}

@end
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
- (void)showContextMenu;
- (void)openInNewTab;
- (NSString*)userInterfaceLayoutDirection;
- (void)reset;
- (void)setSheetRect;
- (bool)isRemote;

@end
2 changes: 1 addition & 1 deletion src/debugging/debugger-proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ PacketStream.prototype._transform = function(packet, encoding, done) {
};

var server = new ws.Server({
port: 8080
port: 41000
});
server.on("connection", function(webSocket) {
console.info("Frontend client connected.");
Expand Down