From 92034c9d893ff145f6eda6551e73f477f42bdc8b Mon Sep 17 00:00:00 2001 From: mobserveur Date: Wed, 6 Nov 2024 10:59:35 +0100 Subject: Conversation panel: Nearby item on top This commit forces the nearby item on the left side on the panel to be on top instead of the bottom. --- indra/newview/llconversationmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llconversationmodel.cpp b/indra/newview/llconversationmodel.cpp index 4cd85ac756..bd29dba6bc 100644 --- a/indra/newview/llconversationmodel.cpp +++ b/indra/newview/llconversationmodel.cpp @@ -727,7 +727,7 @@ bool LLConversationSort::operator()(const LLConversationItem* const& a, const LL if ((type_a == LLConversationItem::CONV_SESSION_NEARBY) || (type_b == LLConversationItem::CONV_SESSION_NEARBY)) { // If one is the nearby session, put nearby session *always* last - return (type_b == LLConversationItem::CONV_SESSION_NEARBY); + return (!(type_b == LLConversationItem::CONV_SESSION_NEARBY)); } else if (sort_order == LLConversationFilter::SO_SESSION_TYPE) { -- cgit v1.2.3 From de4251880f744d4770711daf120412c16cfcc81d Mon Sep 17 00:00:00 2001 From: Erik Kundiman Date: Wed, 6 Nov 2024 19:33:18 +0800 Subject: Squeeze 2 more people into the team plus 1 special thanks replacing the promoted one. --- indra/newview/skins/default/xui/en/floater_about.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/indra/newview/skins/default/xui/en/floater_about.xml b/indra/newview/skins/default/xui/en/floater_about.xml index 8d088e277c..ec2d1471cc 100644 --- a/indra/newview/skins/default/xui/en/floater_about.xml +++ b/indra/newview/skins/default/xui/en/floater_about.xml @@ -70,7 +70,7 @@ follows="all" left="10" name="megapahit_credits_panel" - height="370" + height="390" top="10"> Erik Kundiman +LinneNoir milo (observeur) Fritigern Gothly Hadet Sonnenkern @@ -108,6 +109,7 @@ Melodey Hiroo Ono Keysin (scoutkeysin) gwigz +Yikes Lopez Chorazin Allen and Nicky Perian for involving Erik Kundiman in viewer developments; -LinneNoir for the moral support and initial testing; +JenniWindrider for the pre-MP donation that was used to help build the website; Vir Linden for making it possible for the project to have a place (in every sense of the word) in SL; nutsobvious for the early testing and video proof; Soft Linden for the security testing; and -- cgit v1.2.3 From cadde1312df01d4e5939e05816cb011a8e14d5b1 Mon Sep 17 00:00:00 2001 From: Erik Kundiman Date: Wed, 6 Nov 2024 20:48:51 +0800 Subject: Use Arch PKGBUILD pkgrel for VIEWER_VERSION_REVISION --- README.md | 3 ++- indra/newview/PKGBUILD.in | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 918fe41cd7..b0ef6589a2 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,8 @@ $ export LL_BUILD="-O3 -std=c++17 -fPIC -DLL_LINUX=1" $ cmake -DCMAKE_BUILD_TYPE:STRING=Release -DADDRESS_SIZE:STRING=64 -DUSESYSTEMLIBS:BOOL=ON -DUSE_OPENAL:BOOL=ON -DUSE_FMODSTUDIO:BOOL=OFF -DENABLE_MEDIA_PLUGINS:BOOL=ON -DLL_TESTS:BOOL=OFF -DNDOF:BOOL=OFF -DROOT_PROJECT_NAME:STRING=Megapahit -DVIEWER_CHANNEL:STRING=Megapahit -DVIEWER_BINARY_NAME:STRING=megapahit -DBUILD_SHARED_LIBS:BOOL=OFF -DINSTALL:BOOL=ON -DPACKAGE:BOOL=ON -DCMAKE_INSTALL_PREFIX:PATH=/usr ../indra $ make -j`nproc` $ makepkg -R -$ sudo pacman -U megapahit-`cat newview/viewer_version.txt`-1-`uname -m`.pkg.tar.zst +$ sudo pacman -U megapahit-`cat newview/viewer_version.txt|sed 's/\(.*\)\./\1-/'`-`uname -m`.pkg.tar.zst +$ megapahit ``` ### Gentoo diff --git a/indra/newview/PKGBUILD.in b/indra/newview/PKGBUILD.in index b2a02318f2..d917f216b6 100644 --- a/indra/newview/PKGBUILD.in +++ b/indra/newview/PKGBUILD.in @@ -1,7 +1,7 @@ # Maintainer: $ENV{USER}@${VIEWER_PACKAGE_DOMAIN_NAME} pkgname=${VIEWER_BINARY_NAME} -pkgver=${VIEWER_VERSION_MAJOR}.${VIEWER_VERSION_MINOR}.${VIEWER_VERSION_PATCH}.${VIEWER_VERSION_REVISION} -pkgrel=1 +pkgver=${VIEWER_VERSION_MAJOR}.${VIEWER_VERSION_MINOR}.${VIEWER_VERSION_PATCH} +pkgrel=${VIEWER_VERSION_REVISION} pkgdesc="${VIEWER_PACKAGE_COMMENT}" arch=('${CMAKE_SYSTEM_PROCESSOR}') url="https://${VIEWER_PACKAGE_DOMAIN_NAME}" -- cgit v1.2.3