Skip to content

Commit

Permalink
Merge pull request #767 from kasenvr/fix/3-0-wrap-up
Browse files Browse the repository at this point in the history
Fix/3 0 wrap up
  • Loading branch information
two-one-five authored Sep 29, 2020
2 parents ac64860 + 8cd1294 commit f7f8ea1
Show file tree
Hide file tree
Showing 8 changed files with 2,053 additions and 3,490 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class LoginFragment extends Fragment

private final String OAUTH_CLIENT_ID = BuildConfig.OAUTH_CLIENT_ID;
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 EditText mUsername;
Expand Down Expand Up @@ -222,7 +222,7 @@ private void hideKeyboard() {
}

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);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

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 EndpointUsersProviderService mEndpointUsersProviderService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

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_FULL_SEARCH = "concurrency,announcements,snapshot";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
* available in an API
*/
public class DownloadProfileImageTask extends AsyncTask<String, Void, String> {

private static final String BASE_PROFILE_URL = "https://highfidelity.com";
// Note: This should now be available in the API, correct?
private static final String BASE_PROFILE_URL = "https://metaverse.vircadia.com/live";
private static final String TAG = "Interface";

private final DownloadProfileImageResultProcessor mResultProcessor;
Expand Down
1 change: 1 addition & 0 deletions cmake/templates/NSIS.template.in
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ Var Express

; figure out where to download installer slideshow images from
StrCpy $0 "http://cdn.highfidelity.com/installer/slideshow"
; Is this in use anymore?

${If} $CampaignName == ""
StrCpy $0 "$0/default"
Expand Down
2 changes: 1 addition & 1 deletion domain-server/resources/describe-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@
"name": "provider",
"label": "Provider",
"help": "OAuth provider URL.",
"default": "https://metaverse.highfidelity.com",
"default": "https://metaverse.vircadia.com/live",
"advanced": true,
"backup": false
},
Expand Down
Loading

0 comments on commit f7f8ea1

Please sign in to comment.