Skip to content

Commit

Permalink
Merge pull request #1026 from JulianGro/external_refrences
Browse files Browse the repository at this point in the history
Remove some external refrences
  • Loading branch information
JulianGro authored Jun 15, 2024
2 parents 6867812 + 0ad492c commit df36527
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
8 changes: 2 additions & 6 deletions hifi_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,7 @@ def __init__(self, args):
if distro.id() == 'ubuntu':
u_major = int( distro.major_version() )

if u_major == 18:
self.qtUrl = 'http://motofckr9k.ddns.net/vircadia_packages/qt5-install-5.15.2-ubuntu-18.04-aarch64_test.tar.xz'
elif u_major == 20:
if u_major == 20:
self.qtUrl = self.assets_url + '/dependencies/qt5/qt5-install-5.15.9-2023.05.21-kde_fb3ec282151b1ee281a24f0545a40ac6438537c2-ubuntu-20.04-aarch64.tar.xz'
elif u_major > 20:
self.__no_qt_package_error()
Expand All @@ -182,9 +180,7 @@ def __init__(self, args):
elif distro.id() == 'debian':
u_major = int( distro.major_version() )

if u_major == 10:
self.qtUrl = 'https://data.moto9000.moe/vircadia_packages/qt5-install-5.15.2-debian-10-aarch64.tar.xz'
elif u_major > 10:
if u_major > 10:
self.__no_qt_package_error()
else:
self.__unsupported_error()
Expand Down
2 changes: 1 addition & 1 deletion scripts/defaultScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ var DEFAULT_SCRIPTS_SEPARATE = [
"communityScripts/notificationCore/notificationCore.js",
"simplifiedUI/ui/simplifiedNametag/simplifiedNametag.js",
{"stable": "system/more/app-more.js", "beta": "https://more.overte.org/more/app-more.js"},
{"stable": "communityScripts/chat/FloofChat.js", "beta": "https://content.fluffy.ws/scripts/chat/FloofChat.js"}
"communityScripts/chat/FloofChat.js",
//"system/chat.js"
];

Expand Down
2 changes: 1 addition & 1 deletion tools/nitpick/AppDataHighFidelity/Interface.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"Avatar/animGraphURL": "",
"Avatar/attachmentData/size": 0,
"Avatar/avatarEntityData/size": 0,
"Avatar/collisionSoundURL": "https://cdn-1.vircadia.com/eu-c-1/vircadia-public/sounds/Collisions-otherorganic/Body_Hits_Impact.wav",
"Avatar/collisionSoundURL": "",
"Avatar/displayName": "",
"Avatar/dominantHand": "right",
"Avatar/flyingHMD": false,
Expand Down

0 comments on commit df36527

Please sign in to comment.