Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel committed Dec 21, 2020
1 parent c0fd0af commit 33a7cc0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# How to Release

- Release the service at keys-pub/keys-ext.
- Publish (and unlink) @keys-pub/tsclient changes.
- Update package.json version.
- Test updater: `VERSION=0.0.0 KEYS_BIN=~/go/bin/keys UPDATER_BIN=~/go/bin/updater UPDATER_APPLY=/Applications/Keys.app yarn start-prod` to ensure this version is updateable. (On Windows, `VERSION=0.0.0 KEYS_BIN=~/go/bin/keys.exe UPDATER_BIN=~/go/bin/updater.exe yarn start-prod`)
- Create branch with version v1.2.3, the github action will build the apps.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "keys",
"productName": "Keys",
"version": "0.2.1",
"version": "0.2.3",
"description": "Key management, signing and encryption.",
"scripts": {
"check": "eslint --ignore-path .gitignore --ignore-pattern node_modules --quiet 'src/**/*.ts' 'src/**/*.tsx'",
Expand Down Expand Up @@ -158,7 +158,7 @@
"dependencies": {
"@grpc/grpc-js": "^1.0.3",
"@grpc/proto-loader": "^0.5.5",
"@keys-pub/tsclient": "^0.1.4",
"@keys-pub/tsclient": "0.1.5",
"@material-ui/core": "^4.3.2",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.39",
Expand Down
2 changes: 2 additions & 0 deletions src/renderer/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import {
VisibilityOutlined as VerifyIcon,
VpnKeySharp as KeysIcon,
VpnLock as PasswordIcon,
Warning as WarningIcon,
} from '@material-ui/icons'

export {
Expand Down Expand Up @@ -67,5 +68,6 @@ export {
UserIcon,
UserLinkIcon,
VerifyIcon,
WarningIcon,
WormholeIcon,
}
3 changes: 2 additions & 1 deletion src/renderer/key/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as React from 'react'

import {Box, Button, IconButton, Table, TableBody, TableCell, TableRow, Typography} from '@material-ui/core'

import {UserLinkIcon} from '../icons'
import {UserLinkIcon, WarningIcon} from '../icons'

import {IDLabel} from './label'

Expand Down Expand Up @@ -161,6 +161,7 @@ export default (props: Props) => {
Update
</Link>
</Typography>
{key.user?.proxied && <Typography style={{color: '#666'}}>via keys.pub proxy</Typography>}
</TableCell>
</TableRow>
)}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1612,10 +1612,10 @@
"@types/yargs" "^15.0.0"
chalk "^4.0.0"

"@keys-pub/tsclient@^0.1.4":
version "0.1.4"
resolved "https://registry.yarnpkg.com/@keys-pub/tsclient/-/tsclient-0.1.4.tgz#8f08136b57b377dcfe8bb879312317c601c39789"
integrity sha512-roAs7jRioS4Fi/07gOOAGcfuNgsNFMd0zRqEkKEy4dlY2FgJ5Gpjy/cxHCd62LMI7UEpTfVDeThJnyBU7ODaDA==
"@keys-pub/[email protected].5":
version "0.1.5"
resolved "https://registry.yarnpkg.com/@keys-pub/tsclient/-/tsclient-0.1.5.tgz#4a2d30fdb0f8a2c1e9a2b8e97cfb21c6eb697213"
integrity sha512-oH+1RqkB3O24wqZq0QhbEjsJ7oeVt11XfWy6v35AIA+Vfl/lqjZSAqsXxKXaloUnSWj16J2g4GrqE6Zq9QsFDg==
dependencies:
"@grpc/grpc-js" "^1.1.7"
getenv "^1.0.0"
Expand Down

0 comments on commit 33a7cc0

Please sign in to comment.