289
I Use This!
High Activity

News

Analyzed 1 day ago. based on code collected 2 days ago.
Posted over 4 years ago by andrew_b
Status, Votes for changeset, Resolution, Branch state changed Merged to master: [0ef1737aa84c7511bdfb87373de9ccb3f18931b5].
Posted over 4 years ago by andrew_b
Votes for changeset, Branch state changed
Posted over 4 years ago by andrew_b
Branch state changed Branch: 4016_panel_no_double_right_click changeset:7b187676c4e642e45eaf2c95356fd039cef75039
Posted over 4 years ago by andrew_b
Owner, Status, Milestone changed
Posted over 4 years ago by gryf
As for uc1541, it supports both - python2 and python3, although I recommend to update it to the latest version (available on ​https://github.com/gryf/uc1541), since there are couple of tweaks and fixes. I'd also recommend to use python in shebang ... [More] , probably this form is best: #!/usr/bin/env python so that, default python interpreter defined in a system will be used. Some systems allows to set default interpreter to be python3 and /usr/bin/python is a link to the chosen interpreter. According to ​https://legacy.python.org/dev/peps/pep-0394/ python interpreter can be used for both - python2 and python3 compatible scripts, and uc1541 currently is compatible with both versions. [Less]
Posted over 4 years ago by blubbkm
Posted over 4 years ago by andrew_b
Linkage fail can be fixed using AM_ICONV: configure.ac a ... [More] b dnl ############################################################################  272 272 dnl Internationalization  273 273 dnl ############################################################################  274 274     275 AM_ICONV  275 276 AM_GNU_GETTEXT([external], [need-ngettext])  276 277 AM_GNU_GETTEXT_VERSION([0.18.1])  277 278   But anyway, i18n is broken. There no cyrillic in the TUI: question marks are shown instead of cyrillic letters. [Less]
Posted over 4 years ago by blubbkm
Because my goal was to prevent right click from opening files. But checking for left click only is a fine way to do it as well.
Posted over 4 years ago by andrew_b
CCLD mc /usr/bin/ld: cannot find -liconv collect2: error: ld returned 1 exit status
Posted over 4 years ago by andrew_b
Why ((event->buttons & GPM_B_RIGHT) == 0) is used in the patch instead of ((event->buttons & GPM_B_LEFT) != 0) ?