-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1937 from uProxy/release-candidate
Merge 0.8.23 into release branch
- Loading branch information
Showing
52 changed files
with
2,241 additions
and
1,139 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<title>Invite successful</title> | ||
<meta name='viewport' content='width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes'> | ||
</head> | ||
|
||
<body> | ||
<!-- TODO: translate --> | ||
<h1>Invite received.</h1> | ||
|
||
<p> | ||
You just pasted a uProxy invitation link. | ||
Please see the app window for more information. | ||
</p> | ||
|
||
<script src='scripts/copypaste.js'></script> | ||
</body> | ||
|
||
</html> |
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
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
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,43 @@ | ||
import social = require('../interfaces/social'); | ||
|
||
export var NETWORK_OPTIONS :{[name:string]:social.NetworkOptions} = { | ||
'Google': { // Old GTalk XMPP provider, being deprecated. | ||
displayName: 'Google Hangouts', | ||
isFirebase: false, | ||
enableMonitoring: true, | ||
areAllContactsUproxy: false, | ||
supportsReconnect: true, | ||
supportsInvites: false, | ||
isExperimental: true | ||
}, | ||
'Facebook': { // Old "v1" Facebook Firebase provider, being deprecated. | ||
isFirebase: true, | ||
enableMonitoring: true, | ||
areAllContactsUproxy: true, | ||
supportsReconnect: true, | ||
supportsInvites: false | ||
}, | ||
'Facebook-Firebase-V2': { | ||
displayName: 'Facebook', | ||
isFirebase: true, | ||
enableMonitoring: true, | ||
areAllContactsUproxy: true, | ||
supportsReconnect: true, | ||
supportsInvites: true | ||
}, | ||
'GMail': { | ||
isFirebase: true, | ||
enableMonitoring: true, | ||
areAllContactsUproxy: true, | ||
supportsReconnect: true, | ||
supportsInvites: true | ||
}, | ||
'WeChat': { | ||
isFirebase: false, | ||
enableMonitoring: false, | ||
areAllContactsUproxy: false, | ||
supportsReconnect: false, | ||
supportsInvites: false, | ||
isExperimental: true | ||
} | ||
}; |
File renamed without changes.
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
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
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
Oops, something went wrong.