diff --git a/.gitignore b/.gitignore
index e7e7f12..d84ce48 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,5 @@ node_modules
# Desktop Services Store on macOS
.DS_Store
+
+cypherglass-lens-1.0.0-web.zip
diff --git a/electron/package.json b/electron/package.json
index 82cf01f..8ba1ab2 100644
--- a/electron/package.json
+++ b/electron/package.json
@@ -1,7 +1,7 @@
{
"name": "cypherglass-lens-electron",
- "version": "0.1.0",
- "description": "Vote safely for your EOS Block Producers",
+ "version": "1.0.0",
+ "description": "Cypherglass Lens: the safest voting tool",
"homepage": "https://cypherglass.com",
"main": "index.js",
"scripts": {
diff --git a/landing-page/index.html b/landing-page/index.html
index 205f47c..f738ea7 100644
--- a/landing-page/index.html
+++ b/landing-page/index.html
@@ -64,9 +64,9 @@
-
-
-
+
+
+
@@ -106,14 +106,14 @@ Application Version
You can download our apps if you want to be even more safer!
-
+
Microsoft Windows App
-
+
diff --git a/package.json b/package.json
index a54de99..b9ee30e 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
- "name": "cypherglass-voting",
- "version": "0.1.0",
- "description": "Cypherglass VOTING Tool",
+ "name": "cypherglass-lens",
+ "version": "1.0.0",
+ "description": "Cypherglass Lens: the safest voting tool",
"main": "index.js",
"directories": {
"test": "tests"
diff --git a/src/Components.elm b/src/Components.elm
index 041242d..b8a1ca9 100644
--- a/src/Components.elm
+++ b/src/Components.elm
@@ -187,6 +187,7 @@ basicFieldInput isLoading fieldLabel fieldValue fieldPlaceHolder fieldIcon field
]
[ input
[ class "input"
+ , attribute "autocomplete" "off"
, placeholder fieldPlaceHolder
, type_ fieldType
, defaultValue fieldValue
diff --git a/src/View.elm b/src/View.elm
index e5e4020..0401651 100644
--- a/src/View.elm
+++ b/src/View.elm
@@ -5,7 +5,6 @@ import Components exposing (icon, loadingIcon, titleMenu, modalCard, columns, pa
import Html exposing (Html, div, img, p, text, a, button, section, span, nav, tr, td, table, thead, th, li, ul, h1, strong, br, small, pre)
import Html.Attributes exposing (src, class, attribute, colspan, href, target)
import Html.Events exposing (onClick)
-import Random
view : Model -> Html Msg
@@ -194,16 +193,14 @@ listBpsView model =
restProducers =
model.producers
- |> List.take 51
+ |> List.take 101
|> List.drop 1
|> List.sortWith
(\a b ->
- if model.orderType == "A" then
- compare a.account b.account
- else if model.orderType == "R" then
+ if model.orderType == "R" then
compare a.random b.random
else
- compare b.totalVotes a.totalVotes
+ compare a.account b.account
)
adjustedProducers =
@@ -222,9 +219,8 @@ listBpsView model =
orderOptions =
selectInput
(model.isLoading > 0)
- [ ( "", "Order by Total Votes" )
- , ( "A", "Top 50 - Alphabetical Order" )
- , ( "R", "Top 50 - Random Order" )
+ [ ( "", "Top 100 - Alphabetical Order" )
+ , ( "R", "Top 100 - Random Order" )
]
""
model.orderType
@@ -307,7 +303,7 @@ pkSection model =
pkForm =
if model.transactionSignature /= Nothing then
div []
- [ strong [ class "has-text-success" ] [ text "Your transaction was signed and your Private Key was already destroyed from the session safely." ]
+ [ strong [ class "has-text-success" ] [ text "Your transaction was signed. Your Private Key has not been saved on this computer, and has been erased from system memory." ]
, statusText
, div [ class "has-text-centered has-margin-top" ]
[ p [] [ text ("Your voting transaction is prepared and will expire in " ++ (toString model.expirationCounter) ++ " seconds.") ]