This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Warp-only sync with warp-barrier [blocknumber] flag. (#8228) * Warp-only sync with warp-after [blocknumber] flag. * Fix tests. * Fix configuration tests. * Rename to warp barrier. * Allow unsafe js eval on Parity Wallet. (#8204) * Update musicoin spec in line with gmc v2.6.2 (#8242) * Supress TemporaryInvalid verification failures. (#8256) * Include suicided accounts in state diff (#8297) * Include suicided accounts in state diff * Shorten form match -> if let * Test suicide trace diff in State * replace_home for password_files, reserved_peers and log_file (#8324) * replace_home for password_files, reserved_peers and log_file * typo: arg_log_file is Option * Enable UI by default, but only display info page. * Fix test. * Fix naming and remove old todo. * Change "wallet" with "browser UI"
- Loading branch information
Showing
25 changed files
with
561 additions
and
104 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -240,6 +240,7 @@ impl Server { | |
registrar, | ||
sync_status, | ||
fetch, | ||
false, | ||
) | ||
} else { | ||
Middleware::dapps( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
description = "Parity UI deprecation notice." | ||
name = "parity-ui-deprecation" | ||
version = "1.10.0" | ||
license = "GPL-3.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
build = "build.rs" | ||
|
||
[features] | ||
default = ["with-syntex", "use-precompiled-js"] | ||
use-precompiled-js = ["parity-dapps-glue/use-precompiled-js"] | ||
with-syntex = ["parity-dapps-glue/with-syntex"] | ||
|
||
[build-dependencies] | ||
parity-dapps-glue = "1.9" | ||
|
||
[dependencies] | ||
parity-dapps-glue = "1.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2015-2018 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
extern crate parity_dapps_glue; | ||
|
||
fn main() { | ||
parity_dapps_glue::generate(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width"> | ||
<title>Parity</title> | ||
<style> | ||
/* Copyright 2015-2017 Parity Technologies (UK) Ltd. | ||
/* This file is part of Parity. | ||
/* | ||
/* Parity is free software: you can redistribute it and/or modify | ||
/* it under the terms of the GNU General Public License as published by | ||
/* the Free Software Foundation, either version 3 of the License, or | ||
/* (at your option) any later version. | ||
/* | ||
/* Parity is distributed in the hope that it will be useful, | ||
/* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
/* GNU General Public License for more details. | ||
/* | ||
/* You should have received a copy of the GNU General Public License | ||
/* along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
:root, :root body { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
background: rgb(95, 95, 95); | ||
color: rgba(255, 255, 255, 0.75); | ||
font-size: 16px; | ||
font-family: 'Roboto', sans-serif; | ||
font-weight: 300; | ||
} | ||
|
||
:root a, :root a:visited { | ||
text-decoration: none; | ||
cursor: pointer; | ||
color: rgb(0, 151, 167); /* #f80 */ | ||
} | ||
|
||
:root a:hover { | ||
color: rgb(0, 174, 193); | ||
} | ||
|
||
h1,h2,h3,h4,h5,h6 { | ||
font-weight: 300; | ||
text-transform: uppercase; | ||
text-decoration: none; | ||
} | ||
|
||
h1 { | ||
font-size: 24px; | ||
line-height: 36px; | ||
color: rgb(0, 151, 167); | ||
} | ||
|
||
h2 { | ||
font-size: 20px; | ||
line-height: 34px; | ||
} | ||
|
||
code,kbd,pre,samp { | ||
font-family: 'Roboto Mono', monospace; | ||
} | ||
|
||
.parity-navbar { | ||
background: rgb(65, 65, 65); | ||
height: 72px; | ||
padding: 0 1rem; | ||
display: flex; | ||
justify-content: space-between; | ||
} | ||
|
||
.parity-status { | ||
clear: both; | ||
padding: 1rem; | ||
margin: 1rem 0; | ||
text-align: right; | ||
opacity: 0.75; | ||
} | ||
|
||
.parity-box { | ||
margin: 1rem; | ||
padding: 1rem; | ||
background-color: rgb(48, 48, 48); | ||
box-sizing: border-box; | ||
box-shadow: rgba(0, 0, 0, 0.117647) 0px 1px 6px, rgba(0, 0, 0, 0.117647) 0px 1px 4px; | ||
border-radius: 2px; | ||
z-index: 1; | ||
color: #aaa; | ||
} | ||
|
||
.parity-box h1, | ||
.parity-box h2, | ||
.parity-box h3, | ||
.parity-box h4, | ||
.parity-box h5, | ||
.parity-box h6 { | ||
margin: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="parity-navbar"> | ||
</div> | ||
<div class="parity-box"> | ||
<h1>Parity browser UI is deprecated.</h1> | ||
<h3>Get a standalone Parity UI from <a href="https://github.com/Parity-JS/shell/releases">here</a></h3> | ||
<p> | ||
|
||
</p> | ||
</div> | ||
<div class="parity-status"> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2015-2018 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity. | ||
|
||
// Parity is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
#[cfg(feature = "with-syntex")] | ||
include!(concat!(env!("OUT_DIR"), "/lib.rs")); | ||
|
||
#[cfg(not(feature = "with-syntex"))] | ||
include!("lib.rs.in"); |
Oops, something went wrong.