Changes: Restructure folder.

edi-0.5
Alastair Poole 3 years ago
parent 920b61ee82
commit 75e1daf45e
  1. 7
      NEWS
  2. 3
      README.md
  3. 0
      src/bin/disks.c
  4. 0
      src/bin/disks.h
  5. 0
      src/bin/main.c
  6. 9
      src/bin/meson.build
  7. 0
      src/bin/process.c
  8. 0
      src/bin/process.h
  9. 0
      src/bin/system.c
  10. 0
      src/bin/system.h
  11. 1
      src/bin/ui.c
  12. 0
      src/bin/ui.h
  13. 10
      src/meson.build

@ -1,3 +1,10 @@
============
Evisum 0.3.0
============
* Move to Meson build system.
...
============
Evisum 0.2.6
============

@ -26,6 +26,3 @@ NOTES
You can press 'k', 'm', 'g' to display results in KB, MB of GB
respectively.
The plan is to rewrite the whole program to log system information
over time to disk so we can do nice things with E and displaying
system information (not duplicating loads of code).

@ -0,0 +1,9 @@
executable('evisum', [
'disks.c', 'disks.h',
'process.c', 'process.h',
'system.c', 'system.h',
'ui.c', 'ui.h',
'main.c'],
dependencies : deps,
gui_app : true,
install : true)

@ -386,6 +386,7 @@ _tab_cpu_update(Ui *ui, results_t *results)
frame = elm_frame_add(box);
evas_object_size_hint_align_set(frame, EVAS_HINT_FILL, 0);
evas_object_size_hint_weight_set(frame, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
if (i == 0 && results->temperature != INVALID_TEMP)
elm_object_text_set(frame, eina_slstr_printf("CPU %d (%d °C)", i, results->temperature));
else

@ -1,9 +1 @@
executable('evisum', [
'disks.c', 'disks.h',
'process.c', 'process.h',
'system.c', 'system.h',
'ui.c', 'ui.h',
'main.c'],
dependencies : deps,
gui_app : true,
install : true)
subdir('bin')

Loading…
Cancel
Save