File tree Expand file tree Collapse file tree 4 files changed +11
-16
lines changed
Expand file tree Collapse file tree 4 files changed +11
-16
lines changed Original file line number Diff line number Diff line change 5757 mv temp.txt yarn.lock
5858
5959 - name : Cache electron-gyp
60- uses : actions/cache@v3.3.1
60+ uses : actions/cache@v4
6161 with :
6262 path : ~/.electron-gyp
6363 key : ${{ runner.os }}-electron-gyp
Original file line number Diff line number Diff line change 9898 fi
9999
100100 - name : Cache electron-gyp
101- uses : actions/cache@v3.3.1
101+ uses : actions/cache@v4
102102 with :
103103 path : ~/.electron-gyp
104104 key : ${{ runner.os }}-electron-gyp
Original file line number Diff line number Diff line change 11{
22 "name" : " NineChronicles" ,
33 "productName" : " Nine Chronicles" ,
4- "version" : " 2.7.8 " ,
4+ "version" : " 2.7.9 " ,
55 "description" : " Game Launcher for Nine Chronicles" ,
66 "author" : " Planetarium <engineering@planetariumhq.com>" ,
77 "license" : " GPL-3.0" ,
Original file line number Diff line number Diff line change @@ -106,19 +106,14 @@ export default class PlanetaryStore {
106106 if ( this . planet ) {
107107 configStore . set ( "Planet" , this . planet . id ) ;
108108 configStore . set ( "GenesisBlockPath" , this . planet . genesisUri ) ;
109- configStore . set ( "DataProviderUrl" , this . planet . rpcEndpoints [ "dp.gql" ] ) ;
110- configStore . set (
111- "MarketServiceUrl" ,
112- this . planet . rpcEndpoints [ "market.rest" ] ,
113- ) ;
114- configStore . set (
115- "PatrolRewardServiceUrl" ,
116- this . planet . rpcEndpoints [ "patrol-reward.gql" ] ,
117- ) ;
118- configStore . set (
119- "OnboardingPortalUrl" ,
120- this . planet . rpcEndpoints [ "world-boss.rest" ] ,
121- ) ;
109+
110+ const playerConfig = configStore . get ( "PlayerConfig" ) ;
111+ playerConfig [ "MarketServiceHost" ] =
112+ this . planet . rpcEndpoints [ "market.rest" ] ;
113+ playerConfig [ "OnboardingHost" ] =
114+ this . planet . rpcEndpoints [ "world-boss.rest" ] ;
115+ playerConfig [ "ArenaServiceHost" ] = this . planet . rpcEndpoints [ "arena.rest" ] ;
116+ configStore . set ( "PlayerConfig" , playerConfig ) ;
122117 }
123118 }
124119}
You can’t perform that action at this time.
0 commit comments