LINUX.ORG.RU

LXDE Continued

 ,


1

7

В общем, я создал профиль организации и начал помаленьку мерджить старые пулл-реквесты: https://github.com/lxde-continued

Кто хочет присоединиться к этому занятию, пишите, добавлю.

С прежними разрабами LXDE каши не сваришь.

https://github.com/lxde-continued/lxde-continued/issues/1

https://github.com/orgs/lxde-continued/discussions/2

https://github.com/orgs/lxde-continued/discussions/4

★★★

Последнее исправление: wandrien (всего исправлений: 2)
Ответ на: комментарий от alex1101

Updated 2 weeks ago

Тебя это волнует? Почитай тут: https://forum.puppyrus.org/index.php?topic=14595.msg186506#msg186506 и тут https://forum.puppyrus.org/index.php?topic=22946.0 т.е. товарищ wandrien зарелизил релиз с багфиксами по просьбам людей. А тебе то что до этого?

gtk222
()
Ответ на: комментарий от alex1101

ТС в этом году лежит болеет и едва ходит из-за больной спины, но умудряется приносить пользу людям бесплатно, пока ты, балабол, только звездишь и постишь тупняк.

wandrien ★★★
() автор топика
Последнее исправление: wandrien (всего исправлений: 2)
1 ноября 2023 г.

Для libfm вот тут есть весьма полезный патч, который фиксит тонкие полоски снизу и справа от значков (это выпирает когда клавиатурой браузишь каталоги, в которых много всего):

https://github.com/lxde/libfm/commit/17d08903ea484da1e25c3204c55d768868a17eda

Правда, лучше не удалять отступы по вертикали, смотрится весьма крипово, первая строка прям обрезается сверху, я добавил просто +3 в высоту в расчете размера:

if (height)
 *height += 3;

Норм.

gtk222
()
Последнее исправление: gtk222 (всего исправлений: 1)

Текст всплывающих подсказок. Проверьте мой английский плз. Ну и вообще, может это как-то можно улучшить.

atime:

The last time the file was accessed. This value may be inaccurate depending on the file system mounting options. Refer to <b>mount(8)</b> manual page for more information about <b>noatime</b>, <b>relatime</b> and <b>strictatime</b> options.

mtime:

The last time the file’s contents were modified.

ctime:

The last time metadata related to the file was changed. This includes permissions change, file owner change, hard links creation and deletion.
<b>Note:</b>
On some systems (like Unix) this field is the time of the last metadata change, and, on others (like Windows), it's the file creation time.
wandrien ★★★
() автор топика
Последнее исправление: wandrien (всего исправлений: 2)
Ответ на: комментарий от wandrien

Хм. Glade позволяет отметить tooltip_text (плейнтекст) как предназначенный для перевода, а отметить tooltip_markup - не позволяет.

Пришлось вручную из кода:

    const char * mtime_tooltip = _("The last time the file’s contents were modified.");
    const char * atime_tooltip = _("The last time a file was accessed. This value may be inaccurate depending on the file system mount options. Refer to <b>mount(8)</b> manual page for more information about <b>noatime</b>, <b>relatime</b> and <b>strictatime</b> options.");
    const char * ctime_tooltip = _("The last time metadata related to a file was changed. This includes permissions change, file owner change, creation and deletion of hard links.\n<b>Note:</b>\nOn some systems (like Unix) this field is the time of the last metadata change, and, on others (like Windows), it's the file creation time.");
    gtk_widget_set_tooltip_markup(GTK_WIDGET(data->mtime_label), mtime_tooltip);
    gtk_widget_set_tooltip_markup(GTK_WIDGET(data->atime_label), atime_tooltip);
    gtk_widget_set_tooltip_markup(GTK_WIDGET(data->ctime_label), ctime_tooltip);
wandrien ★★★
() автор топика

Кстати, там тот перец на гитхубе, который работник распбери, пилит форк свой. Так он pacman-dekstop довольно существенно перерабатывает. Чтобы работало на несколько мониторов, с обработкой хотплагов. Правда вяленд форсит зачем-то. А вот этот патч везде подойдет:

https://github.com/raspberrypi-ui/pcmanfm-bullseye/commit/69cffbb638a6060df509f1af46d20f214c05c715

gtk222
()