Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates #121

Merged
merged 3 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ compose.desktop {
iconFile.set(iconsRoot.resolve("icon-linux.png"))
println("iconFile=" + iconsRoot.resolve("icon-linux.png"))
}

jvmArgs += "-splash:" + iconsRoot.resolve("splash_screen.png")
println("jvmArgs=" + jvmArgs)
println("targetFormats=" + targetFormats)
}
}
Expand Down
Binary file modified images/on_github_nightly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/common/icon-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/icon-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/splash_screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ else if (timestamp < ((System.currentTimeMillis() / 1000) - (60 * 200)))

long peernum = tox_group_peer_by_public_key(group_number, original_sender_peerpubkey);
final String peer_name_saved = tox_group_peer_get_name(group_number, peernum);
if (peer_name_saved != null)
if ((peer_name_saved != null) && (peer_name_saved.length() > 0))
{
// HINT: use saved name instead of name from sync message
Log.i(TAG,"handle_incoming_sync_group_message:use saved name instead of name from sync message:" + peer_name_saved);
Expand Down
Loading