From 4cfcaa41a9cc183ebd565e6a7c6b6861bf82ba6f Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Tue, 10 Mar 2020 00:30:04 -0400
Subject: [PATCH] The most basic of brandizing. Change channel to Alchemy

---
 indra/CMakeLists.txt                      | 4 ++--
 indra/cmake/Variables.cmake               | 2 +-
 indra/lib/python/indra/util/llmanifest.py | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt
index 62a8f3f003e..e1e2f6f38a6 100644
--- a/indra/CMakeLists.txt
+++ b/indra/CMakeLists.txt
@@ -6,8 +6,8 @@
 ## 3.8 added VS_DEBUGGER_WORKING_DIRECTORY support
 cmake_minimum_required(VERSION 3.8.0 FATAL_ERROR)
 
-set(ROOT_PROJECT_NAME "SecondLife" CACHE STRING
-    "The root project/makefile/solution name. Defaults to SecondLife.")
+set(ROOT_PROJECT_NAME "Alchemy" CACHE STRING
+    "The root project/makefile/solution name. Defaults to Alchemy.")
 project(${ROOT_PROJECT_NAME})
 
 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake
index a5770c5528d..19fdf8ed32c 100644
--- a/indra/cmake/Variables.cmake
+++ b/indra/cmake/Variables.cmake
@@ -209,7 +209,7 @@ endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
 # Default deploy grid
 set(GRID agni CACHE STRING "Target Grid")
 
-set(VIEWER_CHANNEL "Second Life Test" CACHE STRING "Viewer Channel Name")
+set(VIEWER_CHANNEL "Alchemy Test" CACHE STRING "Viewer Channel Name")
 
 set(ENABLE_SIGNING OFF CACHE BOOL "Enable signing the viewer")
 set(SIGNING_IDENTITY "" CACHE STRING "Specifies the signing identity to use, if necessary.")
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py
index 4bc70b2ca41..37f9676aa06 100755
--- a/indra/lib/python/indra/util/llmanifest.py
+++ b/indra/lib/python/indra/util/llmanifest.py
@@ -91,7 +91,7 @@ def get_default_platform(dummy):
             }[sys.platform]
 
 DEFAULT_SRCTREE = os.path.dirname(sys.argv[0])
-CHANNEL_VENDOR_BASE = 'Second Life'
+CHANNEL_VENDOR_BASE = 'Alchemy'
 RELEASE_CHANNEL = CHANNEL_VENDOR_BASE + ' Release'
 
 BASE_ARGUMENTS=[
@@ -117,7 +117,7 @@ def get_default_platform(dummy):
     dict(name='buildtype', description='Build type (i.e. Debug, Release, RelWithDebInfo).', default=None),
     dict(name='bundleid',
          description="""The Mac OS X Bundle identifier.""",
-         default="com.secondlife.indra.viewer"),
+         default="org.alchemyviewer.viewer"),
     dict(name='channel',
          description="""The channel to use for updates, packaging, settings name, etc.""",
          default='CHANNEL UNSET'),
-- 
GitLab