Very useful feature that is currently not natively supported (a pull request is under review and testing). An alternative is the tailscale-wakeonlan project.



Very useful feature that is currently not natively supported (a pull request is under review and testing). An alternative is the tailscale-wakeonlan project.



Summary: Rust 1.88.0 Release (June 26, 2025)
rustup update stable.rustup default beta|nightly.let statements with && in if and while.
if let A(x) = some_func() && let B(y) = x && y > 0 { ... }
#[unsafe(naked)] and naked_asm! block for full control.
#[unsafe(naked)]
pub unsafe extern "sysv64" fn f(a: u64, b: u64) -> u64 {
core::arch::naked_asm!("lea rax, [rdi + rsi]", "ret");
}
cfgcfg(true) and cfg(false) for clearer conditional compilation.cfg(all()) or cfg(any()) for unconditional flags.cache.auto-clean-frequency.New Stable APIs
Cell::update, HashMap::extract_if, hint::select_unpredictable, and more.Now Const-Stable
NonNull<T>::replace, std::ptr::swap_nonoverlapping, Cell methods, etc.i686-pc-windows-gnu demoted to Tier 2 (still supported, less tested).For full details, check the Rust 1.88.0 release notes.
How to enable the new study screen:
Settings โ About โ tap the Anki logo a few times โ go back โ Developer options โ enable โNew study screenโ โ go back โ New study screen.


This way, you can distinguish between a live iso and the first boot from the disk ๐



Automatic updates are also supported!
Another good feature is the portable installation with Anki running on a USB.





Copying the /.local/share/AnkiProgramFiles folder makes the installation portable !!

you can even select your preferred Qt version by modifying the pyproject.toml file:
[project]
name = “anki-launcher”
version = “0.1.0”
description = “UV-based launcher for Anki.”
requires-python = “>=3.9”
dependencies = [
“aqt[qt69,audio]==25.06b6”,
]

https://forums.ankiweb.net/t/new-online-installer-launcher/62745/25?page=2
Anki’s method for determining the last review time has two main issues:
due and interval fields can be incorrect, especially when modified manually or by add-ons.last_review_time_secs (optional int64) to the protobuf definition.last_review_time: Option<TimestampSecs> to the Rust Card struct.last_review_time into read/write logic.last_review_time over legacy methods.