forked from TK11235/udonarium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request TK11235#160 from entyu/v1.11.0b0
V1.11.0b0
- Loading branch information
Showing
17 changed files
with
464 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
:host { | ||
display: block; | ||
} | ||
|
||
.box { | ||
border-bottom:1px dotted #888; | ||
} | ||
.image { | ||
padding: 0px; | ||
width: 64px; | ||
height: 64px; | ||
display: inline-block; | ||
vertical-align: top; | ||
} | ||
|
||
.contain { | ||
background-position: center center; | ||
background-repeat: no-repeat; | ||
background-size: contain; | ||
} | ||
|
||
.room-list { | ||
font-size: 12px; | ||
border: 0; | ||
border-spacing: 0; | ||
padding: 0; | ||
width: 100%; | ||
max-width: 100%; | ||
white-space: nowrap; | ||
} | ||
|
||
.room-list > tr > * { | ||
padding: 1px 0.5em; | ||
text-align: center; | ||
} | ||
|
||
.room-name { | ||
white-space: normal; | ||
word-wrap: break-word; | ||
overflow-wrap: anywhere; | ||
word-break: break-word; | ||
min-width: 50%; | ||
} | ||
|
||
.is-small-font { | ||
font-size: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<div> | ||
※試験的機能です<br> | ||
<button (click)="cancel()">キャンセル</button> | ||
<span *ngIf="isDisconnect" style="color: #bbb;">STEP1</span> | ||
<span *ngIf="!isDisconnect" style="color: #000;">STEP1</span> | ||
<button (click)="reConnect()" class="danger" [disabled]="isDisconnect">切断実行</button>> | ||
<span *ngIf="!isDisconnect" style="color: #bbb;">STEP2</span> | ||
<span *ngIf="isDisconnect" style="color: #000;">STEP2</span> | ||
<button (click)="reConnect2()" class="danger" [disabled]="!isDisconnect">再接続実行</button> | ||
<hr/> | ||
</div> | ||
<span style="font-size: 16px;"> | ||
画像や音楽の再ダウンロードを行わず高速に部屋に再接続します。<br> | ||
ただし、確実に成功するわけではありません。<br> | ||
うまくいかない場合は、従来どおりページリロードで最初からの接続を試みてください。<br> | ||
<font color="red">注意:他に部屋データの保持者が居ない場合、データが破棄された上に失敗します。<br> | ||
必要に応じて部屋データの保存を行ってから実行してください。</font><br> | ||
<br> | ||
STEP1、2の順で実行してください。<br> | ||
<br> | ||
STEP1:既存の接続を切断し、同期が取れなくなった可能性のある要素を削除します。<br> | ||
STEP2:ルームに再度接続し、データ同期の回復を試みます。<br> | ||
<br> | ||
STEP2は1度の試みで成功しない場合があります。<br> | ||
STEP2を複数回試みても復帰できない場合はページリロードし、部屋に入り直してください。 | ||
</span> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; | ||
|
||
import { ReConnectComponent } from './re-connect.component'; | ||
|
||
describe('ReConnectComponent', () => { | ||
let component: ReConnectComponent; | ||
let fixture: ComponentFixture<ReConnectComponent>; | ||
|
||
beforeEach(waitForAsync(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ ReConnectComponent ] | ||
}) | ||
.compileComponents(); | ||
})); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ReConnectComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should be created', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
Oops, something went wrong.