File ChangeLog changed (mode: 100644) (index ce39023b3..9d22e3a93) |
85 |
85 |
Set `title` option by default if $TERM is foot* as its terminfo entry |
Set `title` option by default if $TERM is foot* as its terminfo entry |
86 |
86 |
might lack tsl and fsl attributes. Thanks to nobodyatandnothing. |
might lack tsl and fsl attributes. Thanks to nobodyatandnothing. |
87 |
87 |
|
|
|
88 |
|
Display permissions in octal form in File Info dialog and group them with |
|
89 |
|
owner/group info. Thanks to iSeeU816. |
|
90 |
|
|
88 |
91 |
Fixed cursor appearing at random places on entering command-line mode. |
Fixed cursor appearing at random places on entering command-line mode. |
89 |
92 |
|
|
90 |
93 |
Fixed flicker and loosing parts of input on incremental search in menus. |
Fixed flicker and loosing parts of input on incremental search in menus. |
File src/modes/file_info.c changed (mode: 100644) (index d21102f47..9464379a9) |
... |
... |
modfinfo_redraw(void) |
187 |
187 |
|
|
188 |
188 |
#ifndef _WIN32 |
#ifndef _WIN32 |
189 |
189 |
get_perm_string(perm_buf, sizeof(perm_buf), curr->mode); |
get_perm_string(perm_buf, sizeof(perm_buf), curr->mode); |
190 |
|
curr_y += print_item("Permissions: ", perm_buf, curr_y); |
|
|
190 |
|
snprintf(buf, sizeof(buf), "%s (%03o)", perm_buf, curr->mode & 0777); |
|
191 |
|
curr_y += print_item("Permissions: ", buf, curr_y); |
191 |
192 |
|
|
192 |
193 |
get_uid_string(curr, 0, sizeof(id_buf), id_buf); |
get_uid_string(curr, 0, sizeof(id_buf), id_buf); |
193 |
194 |
if(isdigit(id_buf[0])) |
if(isdigit(id_buf[0])) |