Skip to content

Commit

Permalink
Add 1.11.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcprince committed May 20, 2024
1 parent 6d60d45 commit 31200ae
Show file tree
Hide file tree
Showing 46 changed files with 4,114 additions and 417 deletions.
268 changes: 268 additions & 0 deletions VerticalTabs/verticalTabs.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions VerticalTabs/verticalTabs.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions VerticalTabs/verticalTabs.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
$horizontal-tabs-min: 350px;

$vertical-tabs-min: 400px;

$fixed-tab-size: 92px;

$left-tabs-text-align: left;
$right-tabs-text-align: right;

@import "../node_modules/bootstrap-5-vertical-tabs/scss/responsive-vertical-tabs";
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<div class="container" style="text-align: center;">
<div class="row" style="margin-top: 5%; margin-bottom: 5%;">
<div class="col-lg-12">
<img src="icon-256.png" width="128px" height="128px">
<img src="./resources/icon-256.png" width="128px" height="128px">
</div>
</div>
<div class="row" style="font-weight: bold; ">
Expand Down
44 changes: 41 additions & 3 deletions constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ exports.getFirmwareClassification = (desc) => {

/* Version number for the latest firmware */

exports.latestFirmwareVersionArray = ['1', '9', '0'];
exports.latestFirmwareVersionString = '1.9.0';
exports.latestFirmwareVersionArray = ['1', '10', '0'];
exports.latestFirmwareVersionString = '1.10.0';

/* Time zone modes */

Expand All @@ -216,4 +216,42 @@ exports.MILLISECONDS_IN_SECOND = 1000;
exports.SECONDS_IN_MINUTE = 60;
exports.SECONDS_IN_DAY = 86400;

exports.MINUTES_IN_HOUR = 60;
exports.MINUTES_IN_HOUR = 60;
exports.MINUTES_IN_DAY = 1440;

/* Schedule limitations */

exports.MAX_PERIODS = 4;

/* Sunrise and sunset results */

exports.SUN_ABOVE_HORIZON = 0;
exports.NORMAL_SOLUTION = 1;
exports.SUN_BELOW_HORIZON = 2;

exports.DAY_LONGER_THAN_NIGHT = 0;
exports.DAY_EQUAL_TO_NIGHT = 1;
exports.DAY_SHORTER_THAN_NIGHT = 2;

exports.MINIMUM_SUN_RECORDING_GAP = 60;
exports.SUN_RECORDING_GAP_MULTIPLIER = 4;

/* Sun schedule modes */

exports.MODE_BEFORE_SUNRISE_AFTER_SUNRISE = 0;
exports.MODE_BEFORE_SUNSET_AFTER_SUNSET = 1;
exports.MODE_BEFORE_BOTH_AFTER_BOTH = 2;
exports.MODE_BEFORE_SUNSET_AFTER_SUNRISE = 3;
exports.MODE_BEFORE_SUNRISE_AFTER_SUNSET = 4;

/* Sun events modes */

exports.SUNRISE_AND_SUNSET = 0;
exports.CIVIL_DAWN_AND_DUSK = 1;
exports.NAUTICAL_DAWN_AND_DUSK = 2;
exports.ASTRONOMICAL_DAWN_AND_DUSK = 3;

/* First/last recording date range */

exports.MIN_FIRST_LAST_DATE = '2020-01-01';
exports.MAX_FIRST_LAST_DATE = '2029-12-31';
24 changes: 23 additions & 1 deletion index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@font-face {
font-family: 'Ubuntu';
src: url('./ubuntu.mono.ttf');
src: url('./resources/ubuntu.mono.ttf');
}

input[type=number]::-webkit-inner-spin-button,
Expand Down Expand Up @@ -56,3 +56,25 @@ input {
.greyStart {
display: inline-block;
}

.form-select-sm {
height: 25px;
font-family: Helvetica, Arial, sans-serif;
font-size: 10pt;
}

canvas {
image-rendering: pixelated;
image-rendering: crisp-edges;
}

.wider-col {
height: 182px;
width: 89.55%;
}

.button-icon {
width: 13px;
height: 13px;
vertical-align: initial;
}
Loading

0 comments on commit 31200ae

Please sign in to comment.