0.3.2 final cleanup (#1782)

* bump version with stubbed release notes

* increase BE timeout

* 032 release notes

* hide developer menu for now

* remove unused sub/import

* remoce reconnect from disks res in setup wiz

* remove quirks

* flatten drives response

Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
This commit is contained in:
Aiden McClelland
2022-09-08 16:14:42 -06:00
committed by GitHub
parent 5442459b2d
commit b9ce2bf2dc
32 changed files with 154 additions and 395 deletions

View File

@@ -42,10 +42,7 @@ export type EmbassyOSRecoveryInfo = {
'wrapped-key': string | null
}
export type DiskListResponse = {
disks: DiskInfo[]
reconnect: string[]
}
export type DiskListResponse = DiskInfo[]
export type DiskBackupTarget = {
vendor: string | null

View File

@@ -41,7 +41,7 @@ export class LiveApiService implements ApiService {
/**
* We want to update the secret, which means that we will call in clearnet the
* getSecret, and all the information is never in the clear, and only public
* information is sent across the network. We don't want to expose that we do
* information is sent across the network. We don't want to expose that we do
* this wil all public/private key, which means that there is no information loss
* through the network.
*/

View File

@@ -37,32 +37,29 @@ export class MockApiService implements ApiService {
async getDrives() {
await pauseFor(1000)
return {
disks: [
{
logicalname: 'abcd',
vendor: 'Samsung',
model: 'T5',
partitions: [
{
logicalname: 'pabcd',
label: null,
capacity: 73264762332,
used: null,
'embassy-os': {
version: '0.2.17',
full: true,
'password-hash': null,
'wrapped-key': null,
},
return [
{
logicalname: 'abcd',
vendor: 'Samsung',
model: 'T5',
partitions: [
{
logicalname: 'pabcd',
label: null,
capacity: 73264762332,
used: null,
'embassy-os': {
version: '0.2.17',
full: true,
'password-hash': null,
'wrapped-key': null,
},
],
capacity: 123456789123,
guid: 'uuid-uuid-uuid-uuid',
},
],
reconnect: [],
}
},
],
capacity: 123456789123,
guid: 'uuid-uuid-uuid-uuid',
},
]
}
async set02XDrive() {