mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-10 02:22:49 +00:00
lots of progress - basic functionality work - bundling working
This commit is contained in:
39
app/state/persistent-state-seed.ts
Normal file
39
app/state/persistent-state-seed.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
// object is used to create state.json inside user data directory
|
||||
export const persistentStateSeed = (): any => {
|
||||
return {
|
||||
vanilla: {
|
||||
name: 'Vanilla',
|
||||
servers: [
|
||||
{
|
||||
name: 'Lights Hope',
|
||||
realmlist: 'logon.lightshope.org',
|
||||
website: 'www.lightshope.org',
|
||||
},
|
||||
{
|
||||
name: 'Elysium',
|
||||
realmlist: '',
|
||||
website: 'www.elysium-project.org',
|
||||
},
|
||||
{
|
||||
name: 'Kronos',
|
||||
realmlist: 'login.kronos-wow.com',
|
||||
website: 'www.kronos-wow.com',
|
||||
},
|
||||
],
|
||||
directory: '',
|
||||
selectedServerIndex: 0,
|
||||
},
|
||||
bc: {
|
||||
name: 'Burning Crusade',
|
||||
servers: [] as any,
|
||||
directory: '',
|
||||
selectedServerIndex: 0,
|
||||
},
|
||||
wotlk: {
|
||||
name: 'Wrath of the Lich King',
|
||||
servers: [] as any,
|
||||
directory: '',
|
||||
selectedServerIndex: 0,
|
||||
},
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user