Changeset ac64e2ff1a3fd50f3c602f31b23c56a16b1f3ca6

Show
Ignore:
Timestamp:
11/01/09 12:10:27 (2 years ago)
Author:
Erwan Velu <erwan.velu@…>
Children:
291f0542a26110868069d9f92d7d71c9974e28ff
Parents:
c2f4ec7d2a22c57853b6616d4ab49d79c6744d25
git-committer:
Erwan Velu <erwan.velu@free.fr> / 2009-11-01T13:10:27Z+0100
Message:

hdt: Adding core developper role

Impact: Visual

Pierre is more than a contributor ;)

Location:
com32/hdt
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • com32/hdt/hdt-cli-hdt.c

    r079f92 rac64e2  
    242242    reset_more_printf(); 
    243243        more_printf("HDT\n"); 
    244         more_printf(" Product     : %s\n", PRODUCT_NAME); 
    245         more_printf(" Version     : %s\n", VERSION); 
    246         more_printf(" Author      : %s\n", AUTHOR); 
    247         more_printf(" Contact     : %s\n", CONTACT); 
     244        more_printf(" Product        : %s\n", PRODUCT_NAME); 
     245        more_printf(" Version        : %s\n", VERSION); 
     246        more_printf(" Project Leader : %s\n", AUTHOR); 
     247        more_printf(" Contact        : %s\n", CONTACT); 
     248        more_printf(" Core Developer : %s\n", CORE_DEVELOPER); 
    248249        char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; 
    249250        for (int c = 0; c < NB_CONTRIBUTORS; c++) { 
    250                 more_printf(" Contributor : %s\n", contributors[c]); 
     251                more_printf(" Contributor    : %s\n", contributors[c]); 
    251252        } 
    252253} 
  • com32/hdt/hdt-menu-about.c

    ra7f6dd rac64e2  
    4040  set_menu_pos(SUBMENU_Y, SUBMENU_X); 
    4141 
    42   snprintf(buffer, sizeof buffer, "Product     : %s", PRODUCT_NAME); 
     42  snprintf(buffer, sizeof buffer, "Product        : %s", PRODUCT_NAME); 
    4343  snprintf(statbuffer, sizeof statbuffer, "Product : %s", PRODUCT_NAME); 
    4444  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    4545  menu->items_count++; 
    4646 
    47   snprintf(buffer, sizeof buffer, "Version     : %s", VERSION); 
     47  snprintf(buffer, sizeof buffer, "Version        : %s", VERSION); 
    4848  snprintf(statbuffer, sizeof statbuffer, "Version : %s", VERSION); 
    4949  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    5050  menu->items_count++; 
    5151 
    52   snprintf(buffer, sizeof buffer, "Author      : %s", AUTHOR); 
    53   snprintf(statbuffer, sizeof statbuffer, "Author  : %s", AUTHOR); 
     52  snprintf(buffer, sizeof buffer, "Project Leader : %s", AUTHOR); 
     53  snprintf(statbuffer, sizeof statbuffer, "Project Leader  : %s", AUTHOR); 
    5454  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    5555  menu->items_count++; 
    5656 
    57   snprintf(buffer, sizeof buffer, "Contact     : %s", CONTACT); 
     57  snprintf(buffer, sizeof buffer, "Contact        : %s", CONTACT); 
    5858  snprintf(statbuffer, sizeof statbuffer, "Contact : %s", CONTACT); 
     59  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
     60  menu->items_count++; 
     61 
     62  snprintf(buffer, sizeof buffer, "Core Developer : %s", CORE_DEVELOPER); 
     63  snprintf(statbuffer, sizeof statbuffer, "Core Developer  : %s", CORE_DEVELOPER); 
    5964  add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
    6065  menu->items_count++; 
     
    6267  char *contributors[NB_CONTRIBUTORS] = CONTRIBUTORS; 
    6368  for (int c=0; c<NB_CONTRIBUTORS; c++) { 
    64    snprintf(buffer, sizeof buffer, "Contributor : %s", contributors[c]); 
     69   snprintf(buffer, sizeof buffer, "Contributor    : %s", contributors[c]); 
    6570   snprintf(statbuffer, sizeof statbuffer, "Contributor : %s", contributors[c]); 
    6671   add_item(buffer, statbuffer, OPT_INACTIVE, NULL, 0); 
  • com32/hdt/hdt.h

    ra7f6dd rac64e2  
    3232#define PRODUCT_NAME "Hardware Detection Tool" 
    3333#define AUTHOR "Erwan Velu" 
     34#define CORE_DEVELOPER "Pierre-Alexandre Meyer" 
    3435#define CONTACT "hdt@zytor.com" 
    3536#define VERSION "0.3.5-pre1" 
    36 #define NB_CONTRIBUTORS 3 
    37 #define CONTRIBUTORS {"Pierre-Alexandre Meyer", "Sebastien Gonzalve", "Gert Hulselmans"} 
     37#define NB_CONTRIBUTORS 2  
     38#define CONTRIBUTORS {"Sebastien Gonzalve", "Gert Hulselmans"} 
    3839 
    3940#define ATTR_PACKED __attribute__((packed))