Skip to content

Commit

Permalink
Merge pull request TK11235#152 from entyu/v1.10.0b1.1
Browse files Browse the repository at this point in the history
V1.10.0b1.1
  • Loading branch information
entyu authored Jan 19, 2023
2 parents a22e68c + 8d2f61d commit fe5de59
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "udonarium_lily",
"version": "1.10.0b1",
"version": "1.10.0b1.1",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
3 changes: 3 additions & 0 deletions src/app/component/chat-window/chat-window.component.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
/*
// これを入れるとチャットログの高さ計算が8px(おそらくpadding分)ずれて最終行下部の高さが足りなくなるためコメントアウト※リリィ
:host {
display: block;
height: 100%;
}
*/

.loop-anime {
-webkit-animation: anime1 1.3s infinite ease-in-out;
Expand Down
4 changes: 4 additions & 0 deletions src/app/component/peer-menu/peer-menu.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ export class PeerMenuComponent implements OnInit, OnDestroy, AfterViewInit {
this.modalService.open(LobbyComponent, { width: 700, height: 400, left: 0, top: 400 });
}

togglePasswordVisibility() {
this.isPasswordVisible = !this.isPasswordVisible;
}

findUserId(peerId: string) {
const peerCursor = PeerCursor.findByPeerId(peerId);
return peerCursor ? peerCursor.userId : '';
Expand Down
6 changes: 5 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
</script>

<title>UdonariumLily 1.10.0b1</title>
<title>UdonariumLily 1.10.0b1.1</title>
<!--
0.02.0 立ち絵表示を12ポジションに、アクティブを手前に、他を薄く
Expand Down Expand Up @@ -352,6 +352,10 @@
・カットインを末尾発動した際に通常BGMを停止できなかった現象を修正
・ルーム全体音量の誤操作防止にチェックボックスを追加
1.10.0b1.1
・マージの際に起きた不具合、チャットの最終行の高さが減少してしまう現象を修正
・マージの際に起きた不具合、パスワードの表示/非表示ボタンが効かなかった現象を修正
-->
<base href="./">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down

0 comments on commit fe5de59

Please sign in to comment.