3 Commits

Author SHA1 Message Date
ac9696f38a Version bump to v0.3.2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
2023-04-07 00:13:01 -04:00
582a54617e Edited some styles
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-04-07 00:12:29 -04:00
4a59b8b1d3 Added code to open external links in the user's default browser
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-04-06 09:49:59 -04:00
4 changed files with 32 additions and 9 deletions

View File

@ -1,3 +1,16 @@
shell = require('electron').shell
document.addEventListener('DOMContentLoaded', () ->
links = document.querySelectorAll('a[href^="http"]')
i = 0
while i < links.length
links[i].addEventListener('click', (event) ->
event.preventDefault()
shell.openExternal(this.href)
)
i++
)
@openTab = (tab) ->
# show the component info that's selected
tabs = document.querySelectorAll('.tab-button')

View File

@ -1,5 +1,11 @@
$tab-bar-height: 50px
$primary-color: #009688
$primary-color-light: lighten($primary-color, 10%)
$primary-color-dark: darken($primary-color, 10%)
$default-transition: all 230ms ease-in-out
body
margin: 0
padding: $tab-bar-height 0 90px
@ -7,20 +13,20 @@ body
font-size: 18px
a
color: cornflowerblue
transition: all 200ms ease-in-out
color: $primary-color
transition: $default-transition
&:hover
color: darken(cornflowerblue, 10%)
color: $primary-color-light
input
transition: all 200ms ease-in-out
transition: $default-transition
input[type=submit],
button
background-color: cornflowerblue
color: #f0f0f0
transition: all 200ms ease-in-out
transition: $default-transition
&:hover
background-color: darken(cornflowerblue, 10%)
@ -69,9 +75,10 @@ button
color: #212121
font-size: 2rem
font-weight: bold
transition: all 230ms ease-in-out
transition: $default-transition
&.active
&.active,
&:hover
background-color: white
.component-display
@ -142,6 +149,9 @@ table.hardware-info
p.no-margin
margin-bottom: 0
p#version-info
text-decoration: underline
#systemPages
> div:nth-child(2n + 3)
margin-left: 0

View File

@ -47,7 +47,7 @@
<div class="container fluid">
<div class="row">
<div class="columns three">
<p class="faded-text no-margin u-text-center">Sentry v<span id="app-version"></span></p>
<p id="version-info" class="no-margin u-text-center">Sentry v<span id="app-version"></span></p>
</div>
<div class="columns six">
<p class="no-margin u-text-center">Developed by Bit Goblin free of charge.</p>

View File

@ -1,6 +1,6 @@
{
"name": "sentry",
"version": "0.3.1",
"version": "0.3.2",
"description": "Desktop app to view system information and sensors",
"main": "main.js",
"scripts": {