mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-05 13:45:25 -06:00
afdaa39836
- add a new menu item that displays version information about the app - bump up the version number
46 lines
1.1 KiB
HTML
46 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>More Information</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
height: 100%;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.version-text {
|
|
flex: 1;
|
|
font-size: 1em;
|
|
color: #2f2f2f;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 20px
|
|
}
|
|
|
|
.logo {
|
|
margin: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<span><b>Version Information</b></span>
|
|
<span id="electron" class="content"></span>
|
|
<span id="chromium" class="content"></span>
|
|
<span id="v8" class="content"></span>
|
|
<span id="node" class="content"></span>
|
|
<span id="openssl" class="content"></span>
|
|
<span id="zlib" class="content"></span>
|
|
<span id="uv" class="content"></span>
|
|
<span id="ares" class="content"></span>
|
|
<span id="httpparser" class="content"></span>
|
|
</div>
|
|
</body>
|
|
</html>
|