copy updates for 0.2.11 (#248)

* copy updates for 0.2.11

* fix moderate npm vulns

* fix mocks and welcome page layout
This commit is contained in:
Lucy C
2021-03-12 15:27:15 -07:00
committed by Keagan McClelland
parent 1f56be3cbf
commit ac5dec476d
7 changed files with 16619 additions and 824 deletions

1
appmgr/.gitignore vendored
View File

@@ -1,2 +1,3 @@
/target /target
**/*.rs.bk **/*.rs.bk
.DS_Store

View File

@@ -1,6 +1,6 @@
manifest-version: 0 manifest-version: 0
app-id: start9-ambassador app-id: start9-ambassador
app-version: 0.2.10 app-version: 0.2.11
uri-rewrites: uri-rewrites:
- =/api -> http://{{start9-ambassador}}:5959/authenticate - =/api -> http://{{start9-ambassador}}:5959/authenticate
- /api/ -> http://{{start9-ambassador}}:5959/ - /api/ -> http://{{start9-ambassador}}:5959/

17415
ui/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "embassy-ui", "name": "embassy-ui",
"version": "0.2.10", "version": "0.2.11",
"description": "GUI for EmbassyOS", "description": "GUI for EmbassyOS",
"author": "Start9 Labs", "author": "Start9 Labs",
"homepage": "https://github.com/Start9Labs/embassy-ui", "homepage": "https://github.com/Start9Labs/embassy-ui",

View File

@@ -1,7 +1,7 @@
<ion-header> <ion-header>
<ion-toolbar> <ion-toolbar>
<ion-title > <ion-title >
<ion-label style="font-size: 20px;" class="ion-text-wrap">Welcome to 0.2.10!</ion-label> <ion-label style="font-size: 20px;" class="ion-text-wrap">Welcome to 0.2.11!</ion-label>
</ion-title> </ion-title>
</ion-toolbar> </ion-toolbar>
</ion-header> </ion-header>
@@ -9,14 +9,14 @@
<ion-content class="ion-padding"> <ion-content class="ion-padding">
<div style="display: flex; flex-direction: column; justify-content: space-between; height: 100%"> <div style="display: flex; flex-direction: column; justify-content: space-between; height: 100%">
<h2>Highlights</h2> <h2>Highlights</h2>
<p class="main-content"> <div class="main-content">
0.2.10 introduces LAN support for services running on the Embassy. A service's LAN address (.local URL) can be accessed while connected to the same network. <p>0.2.11 Release includes several bugfixes:</p>
This is useful for two reasons: (1) LAN connections are significantly faster than Tor, and (2) if the Tor network is experiencing connectivity issues, you will not be locked out of your services. <ol>
<li>Refreshing error messages during configuration changes</li>
It also introduces support for services to define one-time actions that are exposed to the user. This <li>Starting services with uninstalled optional dependencies</li>
can be useful for password resets or other types of operations where doing it through the service UI would be <li>Fixed redirect for https</li>
insecure or otherwise undesirable. </ol>
</p> </div>
<div class="close-button"> <div class="close-button">
<ion-button fill="outline" (click)="dismiss()"> <ion-button fill="outline" (click)="dismiss()">

View File

@@ -492,8 +492,8 @@ const mockApiNotifications: ReqRes.GetNotificationsRes = [
const mockApiServer: () => ReqRes.GetServerRes = () => ({ const mockApiServer: () => ReqRes.GetServerRes = () => ({
serverId: 'start9-mockxyzab', serverId: 'start9-mockxyzab',
name: 'Embassy:12345678', name: 'Embassy:12345678',
versionInstalled: '0.2.10', versionInstalled: '0.2.11',
versionLatest: '0.2.11', versionLatest: '0.2.12',
status: ServerStatus.RUNNING, status: ServerStatus.RUNNING,
alternativeRegistryUrl: 'beta-registry.start9labs.com', alternativeRegistryUrl: 'beta-registry.start9labs.com',
welcomeAck: true, welcomeAck: true,

View File

@@ -1,5 +1,4 @@
{ {
"useMocks": false, "useMocks": false,
"mockOver": "tor",
"skipStartupAlerts": false "skipStartupAlerts": false
} }