Alex
Alex
I really like Dot Ledger. It is nearly perfect for personal finance. However, there is a lack of one feature which is a show stopper for me IMHO. The available...
Not sure if people consider this an issues, however, arrays are apparently padded with nulls for missing values, ``` > JSON.stringify(url('?','?t[0]=x&t[1]=y')); "{"t":["x","y"]}" > JSON.stringify(url('?','?t[0]=x&t[2]=y')); "{"t":["x",null,"y"]}" ``` Maybe the better option...
Multidimensional arrays are not parsed correctly, ``` > JSON.stringify(url('?','?t[0][0]=x')); "{"t[0]":["x"]}" > JSON.stringify(url('?','?t[0][0]=x&t[1][0]=y')); "{"t[0]":["x"],"t[1]":["y"]}" ``` The expected behavior is as follows, ``` > JSON.stringify(url('?','?t[0][0]=x')); "{"t":[["x"]]}" > JSON.stringify(url('?','?t[0][0]=x&t[1][0]=y')); "{"t":[["x"],["y"]]}" ```
There seems to be an issue parsing non-numeric keys in array arguments. Check out the following, ``` > JSON.stringify(url('?','?t[0]=x&t[1]=y')); "{"t":["x","y"]}" > JSON.stringify(url('?','?t[a]=x&t[b]=y')); "{"t[a]":"x","t[b]":"y"}" ``` The expected behavior is, ``` >...
Hi, This is a really great package. I found it very useful. However, one important feature is missing: the support for multiple versions of the package to be available for...
This is a nice tool, however, it is lacking username/password setting. I suggest adding this. Warning: I haven't tested this code myself, but I am pretty sure it should work.
### Context I use linphone-desktop's AppImage (v5.0.14) on Gentoo Linux with my own SIP server (Asterisk). I also use Zoiper, it doesn't have the issue I am having with Linphone....
### Describe your idea in details I've noticed that file IO causes the UI to freeze temporarily when the file system is busy. It would make for a snappier user...
Hi, It looks like PHP compiled with '--enable-sigchild' will have issues with `php-shellcommand` when proc_* functions are used (by default). `php-shellcommand` will return an error when the command executes successfully....