Compare commits
No commits in common. "639fce376af9455edd723e3db4363eb73128bcaa" and "3dcafdf4039275cfc9d56238a08c79cdb6eab41b" have entirely different histories.
639fce376a
...
3dcafdf403
@ -31,7 +31,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
out/TildeFriends-release.fdroid.apk
|
out/TildeFriends-release.fdroid.apk
|
||||||
out/winrelease/tildefriends.standalone.exe
|
out/winrelease/tildefriends.exe
|
||||||
out/tildefriends-x86_64.AppImage
|
out/tildefriends-x86_64.AppImage
|
||||||
out/release/tildefriends.standalone
|
out/release/tildefriends.standalone
|
||||||
out/armrelease/tildefriends.standalone
|
out/armrelease/tildefriends.standalone
|
||||||
|
@ -127,7 +127,6 @@ WINDOWS_TARGETS := \
|
|||||||
out/winrelease/tildefriends.exe
|
out/winrelease/tildefriends.exe
|
||||||
ifeq ($(HAVE_WIN),1)
|
ifeq ($(HAVE_WIN),1)
|
||||||
BUILD_TYPES += windebug winrelease
|
BUILD_TYPES += windebug winrelease
|
||||||
all: out/windebug/tildefriends.standalone.exe out/winrelease/tildefriends.standalone.exe
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AARCH64_TARGETS := \
|
AARCH64_TARGETS := \
|
||||||
@ -1092,7 +1091,6 @@ out/%.app/tildefriends.png: src/ios/tildefriends.png
|
|||||||
@cp -v $< $@
|
@cp -v $< $@
|
||||||
|
|
||||||
out/data.zip: $(RAW_FILES)
|
out/data.zip: $(RAW_FILES)
|
||||||
@echo [zip] $@
|
|
||||||
@zip -u $@ -q -9 $(RAW_FILES)
|
@zip -u $@ -q -9 $(RAW_FILES)
|
||||||
|
|
||||||
out/tildefriends-%.app/tildefriends: out/%/tildefriends out/tildefriends-%.app/Info.plist out/tildefriends-%.app/tildefriends.png out/data.zip
|
out/tildefriends-%.app/tildefriends: out/%/tildefriends out/tildefriends-%.app/Info.plist out/tildefriends-%.app/tildefriends.png out/data.zip
|
||||||
|
@ -2719,8 +2719,7 @@ static void _tf_ssb_connection_finalizer(JSRuntime* runtime, JSValue value)
|
|||||||
static void _tf_ssb_connection_process_message_async(uv_async_t* async)
|
static void _tf_ssb_connection_process_message_async(uv_async_t* async)
|
||||||
{
|
{
|
||||||
tf_ssb_connection_t* connection = async->data;
|
tf_ssb_connection_t* connection = async->data;
|
||||||
/* The receive may initiate a close, so this order is important. */
|
if (!connection->is_closing && _tf_ssb_connection_box_stream_recv(connection))
|
||||||
if (_tf_ssb_connection_box_stream_recv(connection) && !connection->is_closing)
|
|
||||||
{
|
{
|
||||||
uv_async_send(&connection->async);
|
uv_async_send(&connection->async);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user