playdate icon indicating copy to clipboard operation
playdate copied to clipboard

Playdate Build Tools and API

Results 86 playdate issues
Sort by recently updated
recently updated
newest added

error: serial not found for sn https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/serial/discover.rs#L38 / or \_\_any\_\_ Playdate\- serial port if \`sn\` is \`None\`\. / or \_\_any\_\_ Playdate\- serial port if \`sn\` is \`None\`\. / / In...

todo

should be ExecutionError: https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/win.rs#L472 / Perhaps not work on Win7 and earlier\. / Returns exit code\. / Returns number in the stdout, should be trimmed\. / Perhaps not work on...

todo

remove this check: https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/win.rs#L198 let mut overlapped \= windows::Win32::System::IO::OVERLAPPED::default\(\); / e\.g\.: \`D:\`\. / / Returned first element is a pinned \`CString\` that \_\_must not\_\_ be freed before the returned \`PCSTR\`...

todo

MountError for this module https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/mod.rs#L27 Source of this issue ```rust use std::borrow::Cow; use std::ops::Deref; use std::ops::DerefMut; use std::path::Path; use crate::device::Device; use crate::error::Error; #[cfg(target_os = "macos")] #[path = "mac.rs"] pub mod...

todo

If unmount fails, do warn!("Please press 'A' on the Playdate to exit Data Disk mode.") https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/mod.rs#L24 Source of this issue ```rust use std::borrow::Cow; use std::ops::Deref; use std::ops::DerefMut; use std::path::Path; use...

todo

Check query is path and this is mounted volume. https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/methods.rs#L306 check is \`path\` is a a path of existing \_\_volume\_\_, try find device behind the volume, unmount the volume anyway...

todo

this is needed too: https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/linux.rs#L322 pub fn volumes\_for\\( devs: I\) \-\> Result\ \{ // Ok\(vec\!\[\(futures::future::lazy\(\|\_\| todo\!\(\)\)\.into\_future\(\), &todo\!\(\)\)\]\.into\_iter\(\)\) \} Source of this issue ```rust use std::borrow::Cow; use std::collections::HashMap; use std::ffi::OsStr; use...

todo

use `udisks_power_off` also as fallback for `udisksctl_power_off`: https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/linux.rs#L146 udisksctl unmount \-b /dev/sdc1 && udisksctl power\-off \-b /dev/sdc udisks \-\-unmount /dev/sdb1 && udisks \-\-detach /dev/sdb Source of this issue ```rust use...

todo

use `udisks_power_off` also as fallback for `udisksctl_power_off`: https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/mount/linux.rs#L88 Source of this issue ```rust use std::borrow::Cow; use std::collections::HashMap; use std::ffi::OsStr; use std::path::Path; use std::path::PathBuf; use std::future::Future; use std::future::IntoFuture; use futures::FutureExt; use...

todo

Check query is path and this is mounted volume. https://github.com/boozook/playdate/blob/242a336585c8e947d2fa8f6421ff22f902edae6b/support/device/src/install.rs#L160 Source of this issue ```rust use std::ffi::OsStr; use std::path::{Path, PathBuf}; use std::time::Duration; use futures::{FutureExt, Stream, StreamExt, TryFutureExt}; use crate::device::query::Query; use...

todo