少年修仙传客户端代码仓库
client_Wu Xijin
2018-08-22 c396457c0a7ba1a5581e3e1e2e0ffeb5a086128c
2769  【前端】更换域名配置需求
6个文件已修改
16 ■■■■ 已修改文件
System/Chat/ChatCenter.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Chat/VoiceHttpRequest.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/ClientVersion/VersionUtility.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Debug/DebugUtility.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Login/ServerListCenter.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Utility/OperationLogCollect.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
System/Chat/ChatCenter.cs
@@ -293,7 +293,7 @@
            }
        }
        const string downloadUrl = "http://{0}.voice.secondworld.net.cn:53001/voice/download";
        const string downloadUrl = "http://{0}.voice.2460web.com:53001/voice/download";
        private void SendSpeech(byte[] encode, long _tick)
        {
            VoiceHttpRequest.Instance.Enqueue(encode, _tick, (int)PlayerDatas.Instance.PlayerId);
System/Chat/VoiceHttpRequest.cs
@@ -6,8 +6,8 @@
public class VoiceHttpRequest : SingletonMonobehaviour<VoiceHttpRequest>
{
    const string uploadUrl = "http://{0}.voice.secondworld.net.cn:53001/voice/upload";
    const string downloadUrl = "http://{0}.voice.secondworld.net.cn:53001/voice/download";
    const string uploadUrl = "http://{0}.voice.2460web.com:53001/voice/upload";
    const string downloadUrl = "http://{0}.voice.2460web.com:53001/voice/download";
    public Queue<VoiceHttp> speechs = new Queue<VoiceHttp>();
System/ClientVersion/VersionUtility.cs
@@ -13,7 +13,7 @@
public class VersionUtility : Singleton<VersionUtility>
{
    public static readonly string[] VERSION_URL = new string[] { "http://pub.game.secondworld.net.cn:11000/appversion/?" ,
    public static readonly string[] VERSION_URL = new string[] { "http://pub.game.2460web.com:11000/appversion/?" ,
    "http://111.230.234.252:11000/appversion/?"};
    const string VERSION_URL_PURE = "http://111.230.234.252:11000/purge/appversion/?";
System/Debug/DebugUtility.cs
@@ -7,7 +7,7 @@
public class DebugUtility : Singleton<DebugUtility>
{
    const string url = "http://pub.game.secondworld.net.cn:11000/dbg_player/?";
    const string url = "http://pub.game.2460web.com:11000/dbg_player/?";
    GameObject debugRoot;
System/Login/ServerListCenter.cs
@@ -8,7 +8,7 @@
public class ServerListCenter : Singleton<ServerListCenter>
{
    public static readonly string[] JUMP_URL = new string[] { "http://pub.game.secondworld.net.cn:11000/server_list/?"
    public static readonly string[] JUMP_URL = new string[] { "http://pub.game.2460web.com:11000/server_list/?"
        ,"http://111.230.234.252:11000/server_list/?"};
    public static string SERVERLIST_URL_COMMON = "";
Utility/OperationLogCollect.cs
@@ -7,7 +7,7 @@
public class OperationLogCollect : Singleton<OperationLogCollect>
{
    const string url = "http://pub.game.secondworld.net.cn:11000/event_receiver?";
    const string url = "http://pub.game.2460web.com:11000/event_receiver?";
    public void RecordLauchEvent(int _step)
    {
@@ -100,7 +100,7 @@
    }
    const string bugReportUrl = "http://pub.game.secondworld.net.cn:11000/event_receiver?";
    const string bugReportUrl = "http://pub.game.2460web.com:11000/event_receiver?";
    public void BugReport(string _title, string _content)
    {