Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-developer committed May 24, 2023
2 parents 06bf378 + d800720 commit dd59d91
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 59 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "src/sunwait-src"]
path = src/sunwait-src
url = https://github.com/risacher/sunwait
15 changes: 12 additions & 3 deletions html/documentation/changeLog.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,18 @@ <h4>Enhancements</h4>
Depending on your settings and the sky brightness,
it may take many images before it gets a good one to save.
The new warning image makes it obvious Allsky hasn't hung.
</li>
<li>In the WebUI's <span class="WebUIWebPage">Editor</span> page,
the buttons (e.g., "Save changes") are now at the top of the page
and stay there as you scroll down.
A new "Top" button appears at the bottom of the page after you scroll
to make it quick to get back to the top.
to make it quick to get back to the top.</li>
<li>Selecting <code>Refresh</code> from the
<span class="WebUISetting">Camera Type</span> drop-down
can be used to change cameras of the same
<span class="WebUISetting">Camera Type</span>.
For example, replacing a ZWO ASI120 with an ASI290.
</li>
<li>Speed up the installation process by using prebuilt binaries where possible</li>
</ul>

Expand All @@ -76,17 +78,24 @@ <h4>Bug Fixes</h4>
If after installing this point release you are still getting a lot of "bad" images,
do NOT disable <span class="shSetting">REMOVE_BAD_IMAGES</span> - instead,
modify the <span class="shSetting">REMOVE_BAD_IMAGES_THRESHOLD_*</span> values as needed.
</blockquote>
</li>
</blockquote>
<li>The <code>s3</code> upload protocol now sets the destination file name to
<span class="fileName">image.jpg</span> instead of
<span class="fileName">image-YYYYMMDDHHMMSS.jpg</span>.
</li>
<li>The <code>scp</code> upload protocol now uses the
<span class="shSetting">REMOTE_USER</span> setting.
</li>
<li>The <code>sunwait</code> command is no longer included with Allsky.</li>
It was created but never used so was simply taking disk space.
<li>Set the upper limits on the x and y spinner controls in the overlay property editors to the size
of the image, previously these were hard coded to 2048</li>
<li>When adding a new variable to the overlay variable list it can now be selected without
refreshing the page</li>
<li>When an image is moved out of bounds using the x and y spinner controls a red rectangle will be drawn around the image, the same as if it were dragged out of bounds</li>
<li>When an image is moved out of bounds using the x and y spinner controls a red rectangle will be
drawn around the image, the same as if it were dragged out of bounds</li>

</ul>

<hr class="separator"><!-- =========================================== -->
Expand Down
20 changes: 2 additions & 18 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ endif

CFLAGS += $(DEFS) $(ZWOSDK)

all:check_deps capture_ZWO capture_RPi startrails keogram sunwait
all:check_deps capture_ZWO capture_RPi startrails keogram
.PHONY : all

ifneq ($(shell id -u), 0)
Expand All @@ -104,20 +104,6 @@ ifeq (,$(OPENCV))
endif
.PHONY : check_deps

patchsunwait:
@echo `date +%F\ %R:%S` Initializing sunwait submodule...
@git submodule init
@git submodule update
@echo `date +%F\ %R:%s` Patching sunwait compile warnings...
@patch -p1 -d sunwait-src/ < sunwait.patch
@touch patchsunwait

sunwait: patchsunwait
@echo `date +%F\ %R:%S` Building sunwait...
@$(MAKE) -C sunwait-src
@cp sunwait-src/sunwait .
@echo `date +%F\ %R:%S` Done.

allsky_common.o: allsky_common.cpp include/allsky_common.h
@echo Building $@ ...
@$(CC) -c allsky_common.cpp -o $@ $(CFLAGS) $(OPENCV)
Expand Down Expand Up @@ -183,7 +169,6 @@ install:
install -o $(SUDO_USER) -g $(SUDO_USER) keogram ../bin/; \
install -o $(SUDO_USER) -g $(SUDO_USER) startrails ../bin/; \
fi
@install sunwait $(DESTDIR)$(bindir)

uninstall:
@echo `date +%F\ %R:%S` Removing binaries...
Expand All @@ -192,7 +177,6 @@ uninstall:
rm -f $(DESTDIR)$(bindir)/capture_RPi; \
rm -f $(DESTDIR)$(bindir)/keogram; \
rm -f $(DESTDIR)$(bindir)/startrails; \
rm -f $(DESTDIR)$(bindir)/sunwait; \
else \
rm -f ../bin/capture_ZWO; \
rm -f ../bin/capture_RPi; \
Expand All @@ -204,7 +188,7 @@ endif # sudo / root check
.PHONY : install uninstall

clean:
rm -f capture_ZWO capture_RPi startrails keogram sunwait *.o *.a
rm -f capture_ZWO capture_RPi startrails keogram *.o *.a
.PHONY : clean

endif # Correct directory structure check
Expand Down
1 change: 0 additions & 1 deletion src/sunwait-src
Submodule sunwait-src deleted from 102cb4
34 changes: 0 additions & 34 deletions src/sunwait.patch

This file was deleted.

0 comments on commit dd59d91

Please sign in to comment.