[대상향] 앱 타이틀 변경 > DS Talk

This commit is contained in:
leejinho 2019-12-24 10:32:02 +09:00
parent 6c43b34c4b
commit 4ebe588e25
6 changed files with 15 additions and 8 deletions

View File

@ -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": {

View File

@ -210,7 +210,7 @@ function createTray() {
}
}
]);
appTray.setToolTip('UCapMessenger');
appTray.setToolTip('DS Talk');
appTray.setContextMenu(contextMenu);
appTray.on('click', () => {

View File

@ -12,7 +12,7 @@
class="app-title mt-48 mb-8"
[@animate]="{ value: '*', params: { delay: '100ms', y: '25px' } }"
>
DS Talk
{{ getTitle() }}
</span>
<span

View File

@ -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';
}
}

View File

@ -13,7 +13,7 @@ import { DeviceType } from '@ucap-webmessenger/core';
export const environment: Environment = {
production: true,
title: `[개발] UCapMessenger`,
title: `UCapMessenger`,
companyConfig: {
companyGroupCode: 'LG',

View File

@ -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" />