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
**/*.rs.bk
.DS_Store

View File

@@ -1,6 +1,6 @@
manifest-version: 0
app-id: start9-ambassador
app-version: 0.2.10
app-version: 0.2.11
uri-rewrites:
- =/api -> http://{{start9-ambassador}}:5959/authenticate
- /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",
"version": "0.2.10",
"version": "0.2.11",
"description": "GUI for EmbassyOS",
"author": "Start9 Labs",
"homepage": "https://github.com/Start9Labs/embassy-ui",

View File

@@ -1,7 +1,7 @@
<ion-header>
<ion-toolbar>
<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-toolbar>
</ion-header>
@@ -9,14 +9,14 @@
<ion-content class="ion-padding">
<div style="display: flex; flex-direction: column; justify-content: space-between; height: 100%">
<h2>Highlights</h2>
<p 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.
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.
It also introduces support for services to define one-time actions that are exposed to the user. This
can be useful for password resets or other types of operations where doing it through the service UI would be
insecure or otherwise undesirable.
</p>
<div class="main-content">
<p>0.2.11 Release includes several bugfixes:</p>
<ol>
<li>Refreshing error messages during configuration changes</li>
<li>Starting services with uninstalled optional dependencies</li>
<li>Fixed redirect for https</li>
</ol>
</div>
<div class="close-button">
<ion-button fill="outline" (click)="dismiss()">

View File

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

View File

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