Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions mobileapp/www/css/stati.css
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,19 @@

#about-view {
margin: 2em;
font-size: 118%
font-size: 116%;
margin-top: 0.5em;
}

span.dist-info {
display: block;
font-size: 80%;
margin-bottom: 0.5em;
}

.app-logo {
margin-bottom: 1em;
margin-bottom: 1em auto;
width: 90%;
}

.empty-timeline-element {
Expand Down
Binary file modified mobileapp/www/img/spideroak_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion mobileapp/www/js/stati.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ app.pauseEventHandler = function pauseEventHandler () {
app.aboutView = function _aboutView () {
var header = 'About Kloak';
var logos = '<p><img class="app-logo" src="img/spideroak_logo.png" /> </p>';
var info = 'Kloak is an <strong>*experiment*</strong> in social networking that is un-dataminable. All data sent to the server is "end to end" encrypted and unreadable by the server operator. <br /> Kloak is in beta and <strong>should not be used to hide communications from well-equipped potential attackers</strong> <p><a onclick="window.open(\'https://github.com/Crypton/statusapp\', \'_system\')" class="media-link media-link-url">Kloak issue tracker</a> <br />Kloak is built with <a onclick="window.open(\'https://crypton.io\', \'_system\')" class="media-link media-link-url">Crypton</a> by <a onclick="window.open(\'https://spideroak.com\', \'_system\')" class="media-link media-link-url">SpiderOak</a></p>';
var info = '<span class="dist-info">Version: ' + app.kloak_version +'<br>Build: ' + app.build + '</span>Kloak is an <strong>*experiment*</strong> in social networking that is un-dataminable. All data sent to the server is "end to end" encrypted and unreadable by the server operator. <br /> Kloak is in beta and <strong>should not be used to hide communications from well-equipped potential attackers</strong> <p><a onclick="window.open(\'https://github.com/Crypton/statusapp\', \'_system\')" class="media-link media-link-url">Kloak issue tracker</a> <br />Kloak is built with <a onclick="window.open(\'https://crypton.io\', \'_system\')" class="media-link media-link-url">Crypton</a> by <a onclick="window.open(\'https://spideroak.com\', \'_system\')" class="media-link media-link-url">SpiderOak</a></p>';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should change app.kloak_version to app.app_version as well as add a section to the README about the existence of these required properties that should be in configuration.js
perhaps the best thing to do is add a section for "Configuration" in the readme where you display a sample configuration.js that has comments for each line?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other than that, I can merge this PR


var html = '<div id="about-view"><h4>'
+ header
Expand Down