Skip to content

Commit

Permalink
Release v0.1.3🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
360tetsu360 committed May 14, 2024
1 parent 443b093 commit f598146
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion atom-skygaze/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atom-skygaze"
version = "0.1.1"
version = "0.1.3"
edition = "2021"
authors = ["tmmgq"]

Expand Down
2 changes: 1 addition & 1 deletion output/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</div>
</div>
<div class="control-panel">
<img id="prev-dialog" class="prev" src="aaa.jpg">
<img id="prev-dialog-prev" class="prev" src="aaa.jpg">
</div>
</dialog>
<div class="left">
Expand Down
4 changes: 2 additions & 2 deletions output/assets/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ connection.onerror = function(error) {
};

var prev = document.getElementById("prev");
var prev_dialog = document.getElementById("prev-dialog");
var prev_dialog = document.getElementById("prev-dialog-prev");
var blob = null;
connection.onmessage = function(event) {
if (typeof event.data === 'string') {
Expand All @@ -134,7 +134,7 @@ connection.onmessage = function(event) {
new_item.appendChild(oneline);
new_item.onclick = () => {
document.getElementById("video-dialog-title").textContent = `[${timestamp}] Meteor Detected`;
document.getElementById("videoframe").src = `/view?filename=${record_path}`;
document.getElementById("imageframe").src = `/view?filename=${record_path}`;
document.getElementById("download").href = `/download?filename=${record_path}`;
const dialog = document.getElementById("video-dialog");
dialog.showModal();
Expand Down

0 comments on commit f598146

Please sign in to comment.