Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18dccb8a64 | ||
|
|
6325a90b4f | ||
|
|
be1133adf7 |
Generated
+281
-734
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -4,7 +4,7 @@ description = "An emulator for the Virtual Boy."
|
||||
repository = "https://git.virtual-boy.com/PVB/lemur"
|
||||
publish = false
|
||||
license = "MIT"
|
||||
version = "0.10.0"
|
||||
version = "0.10.1"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
@@ -36,7 +36,7 @@ object = "0.38"
|
||||
oneshot = "0.1"
|
||||
pollster = "0.4"
|
||||
rand = "0.9"
|
||||
rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "async-std"]}
|
||||
rfd = "0.17"
|
||||
rtrb = "0.3"
|
||||
rubato = "0.16"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@ RUN apt-get update && \
|
||||
ln -s $(which ld64.lld-21) /usr/bin/ld64.lld && \
|
||||
SDK_VERSION=14.5 UNATTENDED=1 ENABLE_COMPILER_RT_INSTALL=1 TARGET_DIR=/osxcross ./build.sh
|
||||
|
||||
FROM rust:1.91-bookworm
|
||||
FROM rust:1.93-bookworm
|
||||
ADD --chmod=644 "https://apt.llvm.org/llvm-snapshot.gpg.key" /etc/apt/trusted.gpg.d/apt.llvm.org.asc
|
||||
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
|
||||
RUN rustup target add x86_64-pc-windows-msvc && \
|
||||
|
||||
+1
-1
@@ -683,7 +683,7 @@ impl ShortcutProvider {
|
||||
else {
|
||||
return true;
|
||||
};
|
||||
if shortcut.logical_key != *key || !shortcut.modifiers.contains(*modifiers) {
|
||||
if *key != shortcut.logical_key || !modifiers.contains(shortcut.modifiers) {
|
||||
return true;
|
||||
}
|
||||
if matches!(command, Command::FastForward(_)) {
|
||||
|
||||
Reference in New Issue
Block a user