mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Various URL updates + window title update.
This commit is contained in:
parent
7833a49784
commit
08ec9ef3b7
6 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@ import controlsUit 1.0
|
|||
|
||||
WebView {
|
||||
id: webview
|
||||
url: "https://highfidelity.com/"
|
||||
url: "https://projectathena.io/"
|
||||
profile: FileTypeProfile;
|
||||
|
||||
property var parentRoot: null
|
||||
|
|
|
@ -3185,7 +3185,7 @@ void Application::showLoginScreen() {
|
|||
QJsonObject loginData = {};
|
||||
loginData["action"] = "login dialog popped up";
|
||||
UserActivityLogger::getInstance().logAction("encourageLoginDialog", loginData);
|
||||
_window->setWindowTitle("High Fidelity");
|
||||
_window->setWindowTitle("Project Athena");
|
||||
} else {
|
||||
resumeAfterLoginDialogActionTaken();
|
||||
}
|
||||
|
|
|
@ -1366,7 +1366,7 @@ EntityPropertyFlags EntityItemProperties::getChangedProperties() const {
|
|||
* var METERS_TO_INCHES = 39.3701;
|
||||
* var entity = Entities.addEntity({
|
||||
* type: "Web",
|
||||
* sourceUrl: "https://highfidelity.com/",
|
||||
* sourceUrl: "https://projectathena.io/",
|
||||
* position: Vec3.sum(MyAvatar.position, Vec3.multiplyQbyV(MyAvatar.orientation, { x: 0, y: 0.75, z: -4 })),
|
||||
* rotation: MyAvatar.orientation,
|
||||
* dimensions: {
|
||||
|
|
|
@ -105,7 +105,7 @@ public:
|
|||
* @returns {TabletProxy} The tablet instance.
|
||||
* @example <caption>Display the High Fidelity home page on the system tablet.</caption>
|
||||
* var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
||||
* tablet.gotoWebScreen("https://highfidelity.com/");
|
||||
* tablet.gotoWebScreen("https://projectathena.io/");
|
||||
*/
|
||||
Q_INVOKABLE TabletProxy* getTablet(const QString& tabletId);
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ Script.setInterval(function () {
|
|||
if (isModel) {
|
||||
properties.modelURL = type;
|
||||
} else if (type === 'Web') {
|
||||
properties.sourceUrl = 'https://highfidelity.com';
|
||||
properties.sourceUrl = 'https://projectathena.io';
|
||||
} else {
|
||||
properties.color = { red: x / ROWS_X * 255, green: y / ROWS_Y * 255, blue: z / ROWS_Z * 255 };
|
||||
if (type === 'ParticleEffect') {
|
||||
|
|
|
@ -427,7 +427,7 @@ const DEFAULT_ENTITY_PROPERTIES = {
|
|||
y: 0.9,
|
||||
z: 0.01
|
||||
},
|
||||
sourceUrl: "https://highfidelity.com/",
|
||||
sourceUrl: "https://projectathena.io/",
|
||||
dpi: 30,
|
||||
},
|
||||
ParticleEffect: {
|
||||
|
|
Loading…
Reference in a new issue