diff --git a/CREDITS b/CREDITS new file mode 100644 index 0000000..9332d8a --- /dev/null +++ b/CREDITS @@ -0,0 +1,6 @@ +Testing is undervalued especially when provided for free. + +Thanks to: + +Apostolos Bartziokas + diff --git a/NEWS b/NEWS index 7736d06..e66ecc5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +============ +Evisum 0.2.6 +============ + + * Add support for multiple batteries (GUI). + * Various refactoring. + * Increase responsiveness. + * GUI changes. + * Shutdown improvements. + * Fix some memory leaks. + * Battery names (where applicable). + * Various small tidying. + ============ Evisum 0.2.4 ============ diff --git a/src/tingle/README b/src/tingle/README index 0a00a57..1903ff5 100644 --- a/src/tingle/README +++ b/src/tingle/README @@ -40,5 +40,5 @@ Usage: tingle [OPTIONS] -h | -help | --help This help. -Al Poole +Alastair Poole diff --git a/src/ui.c b/src/ui.c index 0efca58..e9b7dc3 100644 --- a/src/ui.c +++ b/src/ui.c @@ -663,7 +663,6 @@ _fields_append(Ui *ui, Proc_Stats *proc) static void _fields_show(Ui *ui) { - elm_object_text_set(ui->entry_pid, ui->fields[PROCESS_INFO_FIELD_PID]); elm_object_text_set(ui->entry_uid, ui->fields[PROCESS_INFO_FIELD_UID]); elm_object_text_set(ui->entry_size, ui->fields[PROCESS_INFO_FIELD_SIZE]); @@ -1987,8 +1986,6 @@ _ui_memory_view_add(Ui *ui) elm_object_content_set(frame, progress); elm_box_pack_end(box, frame); - - elm_box_pack_end(ui->mem_activity, box); }