Sbstn Bcht
Sbstn Bcht
+1 Example: `GEO:12.345678\;-1.234587` -> ``` Caused by: java.lang.NumberFormatException: For input string: "12345678\" at java.lang.Long.parseLong(Long.java:594) at java.lang.Long.parseLong(Long.java:636) at java.math.BigDecimal.(BigDecimal.java:344) at java.math.BigDecimal.(BigDecimal.java:425) at net.fortuna.ical4j.model.property.Geo.setValue(Geo.java:214) ```
Maybe unescape string forgotten like here? ``` aValue.substring(0, aValue.indexOf(';')); ... ```
Hello kyragit, I test your code: 10 seconds with A4 frequency then change to low freq between G#4 and A4.
I am also against adding complexity via FFIs. It's probably better to have something that works on a number of devices than none. What do you think about trying to...
1) I see `ANDROID_STORAGE` and `EXTERNAL_STORAGE` we can use too. My guess is we can always write here : `$ANDROID_STORAGE/self/primary` for shared internal directory 2) I confirm `/data/data` has the...
I have done a small piece of code to review: [here](https://github.com/sbechet/dirs-sys-rs/commit/dc0a871a311fe23b787315b3e2e5575148629fb3)
Maybe [this bug extract](https://codeberg.org/sbechet/xmrsplayer/src/branch/main/examples/arp_bug.rs) can help. You can find [here](https://codeberg.org/sbechet/xmrsplayer/src/branch/main/src/effect_arpeggio.rs#L74) and [here](https://codeberg.org/sbechet/xmrsplayer/src/branch/main/src/effect_arpeggio.rs#L35) the implementation. It would also be necessary to clip the notes with the highest frequency but I don't...
Hello rasky, You right: it's only a part of the bug. I look again and again and ... again because i want to fix this (maybe last) issue for my...
I realize that I have not detailed enough the elements that allow me to reach this conclusion. I started with `binary_world.xm` pattern number 7, channel 8. Like you, I noticed...
I have done a test [here](https://github.com/sbechet/test_arp_semitone).