mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 03:08:00 +02:00
Update a few more links, not all links have endpoints though.
This commit is contained in:
parent
71f8d37754
commit
8cd129469b
7 changed files with 9 additions and 8 deletions
|
@ -9,7 +9,7 @@ import java.net.URISyntaxException;
|
||||||
|
|
||||||
public class HifiUtils {
|
public class HifiUtils {
|
||||||
|
|
||||||
public static final String METAVERSE_BASE_URL = "https://metaverse.highfidelity.com";
|
public static final String METAVERSE_BASE_URL = "https://metaverse.vircadia.com/live";
|
||||||
|
|
||||||
private static HifiUtils instance;
|
private static HifiUtils instance;
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ public class LoginFragment extends Fragment
|
||||||
|
|
||||||
private final String OAUTH_CLIENT_ID = BuildConfig.OAUTH_CLIENT_ID;
|
private final String OAUTH_CLIENT_ID = BuildConfig.OAUTH_CLIENT_ID;
|
||||||
private final String OAUTH_REDIRECT_URI = BuildConfig.OAUTH_REDIRECT_URI;
|
private final String OAUTH_REDIRECT_URI = BuildConfig.OAUTH_REDIRECT_URI;
|
||||||
private final String OAUTH_AUTHORIZE_BASE_URL = "https://highfidelity.com/oauth/authorize";
|
private final String OAUTH_AUTHORIZE_BASE_URL = "https://metaverse.vircadia.com/live/oauth/authorize";
|
||||||
private static final int OAUTH_AUTHORIZE_REQUEST = 1;
|
private static final int OAUTH_AUTHORIZE_REQUEST = 1;
|
||||||
|
|
||||||
private EditText mUsername;
|
private EditText mUsername;
|
||||||
|
@ -222,7 +222,7 @@ public class LoginFragment extends Fragment
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onForgotPasswordClicked() {
|
private void onForgotPasswordClicked() {
|
||||||
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://highfidelity.com/users/password/new"));
|
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://metaverse.vircadia.com/live/users/password/new"));
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ import retrofit2.http.Query;
|
||||||
|
|
||||||
public class EndpointUsersProvider implements UsersProvider {
|
public class EndpointUsersProvider implements UsersProvider {
|
||||||
|
|
||||||
public static final String BASE_URL = "https://metaverse.highfidelity.com/";
|
public static final String BASE_URL = "https://metaverse.vircadia.com/live/";
|
||||||
private final Retrofit mRetrofit;
|
private final Retrofit mRetrofit;
|
||||||
private final EndpointUsersProviderService mEndpointUsersProviderService;
|
private final EndpointUsersProviderService mEndpointUsersProviderService;
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ import retrofit2.http.Query;
|
||||||
|
|
||||||
public class UserStoryDomainProvider implements DomainProvider {
|
public class UserStoryDomainProvider implements DomainProvider {
|
||||||
|
|
||||||
public static final String BASE_URL = "https://metaverse.highfidelity.com/";
|
public static final String BASE_URL = "https://metaverse.vircadia.com/live/";
|
||||||
|
|
||||||
private static final String INCLUDE_ACTIONS_FOR_PLACES = "concurrency";
|
private static final String INCLUDE_ACTIONS_FOR_PLACES = "concurrency";
|
||||||
private static final String INCLUDE_ACTIONS_FOR_FULL_SEARCH = "concurrency,announcements,snapshot";
|
private static final String INCLUDE_ACTIONS_FOR_FULL_SEARCH = "concurrency,announcements,snapshot";
|
||||||
|
|
|
@ -15,8 +15,8 @@ import io.highfidelity.hifiinterface.HifiUtils;
|
||||||
* available in an API
|
* available in an API
|
||||||
*/
|
*/
|
||||||
public class DownloadProfileImageTask extends AsyncTask<String, Void, String> {
|
public class DownloadProfileImageTask extends AsyncTask<String, Void, String> {
|
||||||
|
// Note: This should now be available in the API, correct?
|
||||||
private static final String BASE_PROFILE_URL = "https://highfidelity.com";
|
private static final String BASE_PROFILE_URL = "https://metaverse.vircadia.com/live";
|
||||||
private static final String TAG = "Interface";
|
private static final String TAG = "Interface";
|
||||||
|
|
||||||
private final DownloadProfileImageResultProcessor mResultProcessor;
|
private final DownloadProfileImageResultProcessor mResultProcessor;
|
||||||
|
|
|
@ -636,6 +636,7 @@ Var Express
|
||||||
|
|
||||||
; figure out where to download installer slideshow images from
|
; figure out where to download installer slideshow images from
|
||||||
StrCpy $0 "http://cdn.highfidelity.com/installer/slideshow"
|
StrCpy $0 "http://cdn.highfidelity.com/installer/slideshow"
|
||||||
|
; Is this in use anymore?
|
||||||
|
|
||||||
${If} $CampaignName == ""
|
${If} $CampaignName == ""
|
||||||
StrCpy $0 "$0/default"
|
StrCpy $0 "$0/default"
|
||||||
|
|
|
@ -1888,7 +1888,7 @@
|
||||||
"name": "provider",
|
"name": "provider",
|
||||||
"label": "Provider",
|
"label": "Provider",
|
||||||
"help": "OAuth provider URL.",
|
"help": "OAuth provider URL.",
|
||||||
"default": "https://metaverse.highfidelity.com",
|
"default": "https://metaverse.vircadia.com/live",
|
||||||
"advanced": true,
|
"advanced": true,
|
||||||
"backup": false
|
"backup": false
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue