From 4881cc1daa7f8a60c29679b42ee72cf27a0238e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Sat, 28 Sep 2019 14:54:58 +0900 Subject: [PATCH] Fix: change typing exam failed message (word) --- src/game/lib/chart.js | 5 ++--- src/game/lib/text/history_text.js | 2 +- src/game/lib/text/ranking_text.js | 4 ++-- src/game/result/result.js | 2 +- src/web/module/home_section.html | 5 ++--- src/web/module/maestro_section_main.html | 6 +++--- src/web/module/maestro_section_record.html | 2 +- 7 files changed, 12 insertions(+), 14 deletions(-) diff --git a/src/game/lib/chart.js b/src/game/lib/chart.js index 4a31b10..ab45cc7 100644 --- a/src/game/lib/chart.js +++ b/src/game/lib/chart.js @@ -26,12 +26,11 @@ Chart.prototype.drawRecordGraph = function(index, date, bestRecord, min, max) { var absRecordValue = bestRecord < 0 ? -1 * bestRecord : bestRecord; // var absRecordValue = Math.abs(Math.floor(bestRecord)); var recordWithUnit = RecordUtil.getRecordValueWithUnit(absRecordValue, sessionStorageManager.getPlayingAppID()); - + if(bestRecord >= 0) { this.drawText(posX, recordTextPosY, recordWithUnit); } else { - // recordWithUnit = recordWithUnit + "/실격"; - recordWithUnit = "실격/" + recordWithUnit; + recordWithUnit = "아깝/" + recordWithUnit; this.drawDisqualificationText(posX, recordTextPosY, recordWithUnit); } diff --git a/src/game/lib/text/history_text.js b/src/game/lib/text/history_text.js index 133c3fb..a9e1c6f 100644 --- a/src/game/lib/text/history_text.js +++ b/src/game/lib/text/history_text.js @@ -51,7 +51,7 @@ HistoryText.prototype.setContents = function(date, record) { if(record >= 0) { this.textRecord.text = absRecordValue; } else { - this.textRecord.text = "실격/" + absRecordValue; + this.textRecord.text = "아깝/" + absRecordValue; this.textRecord.style.fill = "#ffaaaa"; } }; diff --git a/src/game/lib/text/ranking_text.js b/src/game/lib/text/ranking_text.js index 437467f..3b40bdb 100644 --- a/src/game/lib/text/ranking_text.js +++ b/src/game/lib/text/ranking_text.js @@ -103,7 +103,7 @@ RankingText.prototype.setTextRankingColor = function(text, ranking) { } text.fill = fillColor; text.stroke = strokeColor; - text.strokeThickness = 6; + text.strokeThickness = 4; text.setShadow(2, 2, "#333333", 2, false, true); }; @@ -157,7 +157,7 @@ RankingText.prototype.setContents = function(playerID, ranking, playerName, reco if(record >= 0) this.textRanking.text = ranking + "등"; else - this.textRanking.text = "실격"; + this.textRanking.text = "아깝"; this.textPlayerName.text = playerName; this.setRecord(record, this.appID); this.setTopRankingTextColor(ranking); diff --git a/src/game/result/result.js b/src/game/result/result.js index 690477e..005996f 100644 --- a/src/game/result/result.js +++ b/src/game/result/result.js @@ -104,7 +104,7 @@ Result.prototype.printRecord = function() { scoreText.style.fill = MainColor.THISTLE_STRING; var timeoverText = this.makeDefaultText(game.world.width / 2, 225); - timeoverText.text = "== 제한 시간 초과 =="; + timeoverText.text = "== 아깝네요, 제한 시간 초과! =="; timeoverText.fontSize = 50; timeoverText.setShadow(3, 3, 'rgba(0, 0, 0, 0.5)', 2); timeoverText.anchor.set(0.5); diff --git a/src/web/module/home_section.html b/src/web/module/home_section.html index dfe2e9f..fdf1e31 100644 --- a/src/web/module/home_section.html +++ b/src/web/module/home_section.html @@ -2,9 +2,8 @@ $(document).ready(function() { showErrorMessage( - "(09월 15일) 알림
\ - * 학생 로그인 후 나타나는 메뉴 화면을 개선했습니다.
\ - * 타자 실력을 확인하는 [긴글 (시험)] 앱을 새로 추가했습니다.
\ + "(09월 28일) 알림
\ + * [긴글 (시험)] 5분 초과시에도 기록을 서버에 저장하도록 수정했습니다.
\ ※※※ 앱 실행시 문제가 생기면 [ Ctrl + F5 ](MS IE, Edge) 또는 [ Ctrl + Shift + R ](크롬 등) 단축키를 눌러서 브라우저 캐시 삭제를 해주세요. ※※※", "info" ); }); diff --git a/src/web/module/maestro_section_main.html b/src/web/module/maestro_section_main.html index 2b0fe54..01854f7 100644 --- a/src/web/module/maestro_section_main.html +++ b/src/web/module/maestro_section_main.html @@ -20,9 +20,9 @@ $(document).ready(function() { maestroInfo.loadMaestroInfo(onLoadSuccessMaestroInfo, onLoadFailMaestroInfo); showErrorMessage( - "(09월 15일) 알림
\ - * 타자 실력을 확인하는 [긴글 (시험)] 앱을 새로 추가했습니다.
\ - ※※※ 앱 실행시 문제가 생기면 [ Ctrl + F5 ](MS IE, Edge) 또는 [ Ctrl + Shift + R ](크롬 등) 단축키를 눌러서 브라우저 캐시 삭제를 해주세요. ※※※", "success" + "(09월 28일) 알림
\ + * [긴글 (시험)] 5분 초과시에도 기록을 서버에 저장하도록 수정했습니다.
\ + ※※※ 앱 실행시 문제가 생기면 [ Ctrl + F5 ](MS IE, Edge) 또는 [ Ctrl + Shift + R ](크롬 등) 단축키를 눌러서 브라우저 캐시 삭제를 해주세요. ※※※", "info" ); }); diff --git a/src/web/module/maestro_section_record.html b/src/web/module/maestro_section_record.html index f1a4551..d43b4c9 100644 --- a/src/web/module/maestro_section_record.html +++ b/src/web/module/maestro_section_record.html @@ -334,7 +334,7 @@ function addRecordListItem(date, time, name, subject, record) { ' + time + '\ ' + name + '\ ' + subject + '\ - (실격) ' + disqualificationRecord + '\ + (아깝) ' + disqualificationRecord + '\ \ '); }