v0.6.1
This commit is contained in:
parent
bd7257663f
commit
c925c8241f
11 changed files with 11 additions and 46 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wimi",
|
||||
"version": "0.5.1",
|
||||
"version": "0.6.1",
|
||||
"webExt": {
|
||||
"sourceDir": "build/production"
|
||||
},
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# -*- mode: org -*-
|
||||
|
||||
** vNEXT
|
||||
** v0.6.1
|
||||
|
||||
**** Remove unneccessary translations
|
||||
Remove translations not in use anymore
|
||||
|
||||
**** Replace UI
|
||||
The new UI is focused on being simple but useful
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.5.1
|
||||
v0.6.1
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,27 +1,6 @@
|
|||
{
|
||||
"ip_address": {
|
||||
"message": "IP Address"
|
||||
},
|
||||
"isp": {
|
||||
"message": "ISP"
|
||||
},
|
||||
"location": {
|
||||
"message": "Location"
|
||||
},
|
||||
"tor_exit_node": {
|
||||
"message": "Tor exit node"
|
||||
},
|
||||
"loading": {
|
||||
"message": "Loading..."
|
||||
},
|
||||
"clean.myip.wtf": {
|
||||
"message": "clean.myip.wtf"
|
||||
},
|
||||
"yes": {
|
||||
"message": "Yes"
|
||||
},
|
||||
"no": {
|
||||
"message": "No"
|
||||
"message": "Loading"
|
||||
},
|
||||
"error": {
|
||||
"message": "Error"
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
.label {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.label-rounded {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.label-error {
|
||||
background: var(--primary-red);
|
||||
color: var(--primary-white);
|
||||
}
|
||||
|
||||
.label-success {
|
||||
background: var(--primary-green);
|
||||
color: var(--primary-white);
|
||||
}
|
|
@ -3,7 +3,6 @@
|
|||
<title></title>
|
||||
<link rel="stylesheet" href="/css/tail.min.css"/>
|
||||
<link rel="stylesheet" href="/css/index.css"/>
|
||||
<link rel="stylesheet" href="/css/components/BooleanLabel.css"/>
|
||||
</head>
|
||||
<body class="h-12 w-full">
|
||||
<div id="root"></div>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import { useWebService } from "~/hooks/useWebService";
|
||||
export function App() {
|
||||
const t = chrome.i18n.getMessage;
|
||||
const [response, error] = useWebService();
|
||||
if (response) {
|
||||
return (
|
||||
|
@ -15,14 +16,14 @@ export function App() {
|
|||
return (
|
||||
<div data-testid="error" className="font-sans p-2 flex items-center w-full h-full">
|
||||
<img className="w-8 h-8" src={`/images/icon.svg`} />
|
||||
<span className="ml-3 text-xs">Error</span>
|
||||
<span className="ml-3 text-xs">{t("error")}</span>
|
||||
</div>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<div data-testid="loading" className="font-sans p-2 flex items-center w-full h-full">
|
||||
<img className="w-8 h-8" src={`/images/icon.svg`} />
|
||||
<span className="ml-3 text-xs">Loading</span>
|
||||
<span className="ml-3 text-xs">{t("loading")}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "wimi",
|
||||
"version": "0.5.1",
|
||||
"version": "0.6.1",
|
||||
"description": "Your public IP address from clean.myip.wtf to your browser",
|
||||
"action": {
|
||||
"default_popup": "/html/browseraction.html"
|
||||
|
|
Loading…
Reference in a new issue