[대상향] 앱 타이틀 변경 > DS Talk
This commit is contained in:
parent
6c43b34c4b
commit
4ebe588e25
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"productName": "UCapMessenger",
|
||||
"productName": "DS Talk",
|
||||
"appId": "com.lgucap.messenger",
|
||||
"asar": true,
|
||||
"protocols": {
|
||||
"name": "UCapMessenger",
|
||||
"schemes": ["UCapMessenger"]
|
||||
"name": "DS Talk",
|
||||
"schemes": ["DS Talk"]
|
||||
},
|
||||
"publish": {
|
||||
"provider": "generic",
|
||||
|
@ -15,7 +15,7 @@
|
|||
"icon": "./dist/ucap-webmessenger-electron/resources/installer/woori.icns"
|
||||
},
|
||||
"dmg": {
|
||||
"title": "UCapMessenger",
|
||||
"title": "DS Talk",
|
||||
"icon": "./dist/ucap-webmessenger-electron/resources/installer/woori.icns"
|
||||
},
|
||||
"win": {
|
||||
|
|
|
@ -210,7 +210,7 @@ function createTray() {
|
|||
}
|
||||
}
|
||||
]);
|
||||
appTray.setToolTip('UCapMessenger');
|
||||
appTray.setToolTip('DS Talk');
|
||||
appTray.setContextMenu(contextMenu);
|
||||
|
||||
appTray.on('click', () => {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
class="app-title mt-48 mb-8"
|
||||
[@animate]="{ value: '*', params: { delay: '100ms', y: '25px' } }"
|
||||
>
|
||||
DS Talk
|
||||
{{ getTitle() }}
|
||||
</span>
|
||||
|
||||
<span
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
import { ucapAnimations } from '@ucap-webmessenger/ui';
|
||||
import { environment } from '../../../../environments/environment';
|
||||
|
||||
@Component({
|
||||
selector: 'app-layout-messenger-intro',
|
||||
|
@ -11,4 +12,10 @@ export class IntroComponent implements OnInit {
|
|||
constructor() {}
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
getTitle() {
|
||||
return !!environment && !!environment.title
|
||||
? environment.title
|
||||
: 'UCapMessenger';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ import { DeviceType } from '@ucap-webmessenger/core';
|
|||
|
||||
export const environment: Environment = {
|
||||
production: true,
|
||||
title: `[개발] UCapMessenger`,
|
||||
title: `UCapMessenger`,
|
||||
|
||||
companyConfig: {
|
||||
companyGroupCode: 'LG',
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>UcapWebmessengerApp</title>
|
||||
<title>DS Talk</title>
|
||||
<base href="/" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
||||
|
|
Loading…
Reference in New Issue
Block a user