You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(136) |
Dec
(218) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(214) |
Feb
(208) |
Mar
(186) |
Apr
(15) |
May
(3) |
Jun
(35) |
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(58) |
Aug
(123) |
Sep
(31) |
Oct
(9) |
Nov
|
Dec
(1) |
2006 |
Jan
(25) |
Feb
(10) |
Mar
(25) |
Apr
(61) |
May
|
Jun
(78) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(10) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Rob <geo...@us...> - 2006-04-26 08:38:00
|
Update of /cvsroot/timewarp/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9330/source Modified Files: scp.cpp Log Message: Index: scp.cpp =================================================================== RCS file: /cvsroot/timewarp/source/scp.cpp,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** scp.cpp 29 Jan 2006 16:14:33 -0000 1.75 --- scp.cpp 26 Apr 2006 08:37:54 -0000 1.76 *************** *** 18,22 **** */ - //#define INCLUDE_GAMEX #include <stdlib.h> --- 18,21 ---- *************** *** 86,93 **** #define SCPGUI_TITLE 1 - #ifdef INCLUDE_GAMEX - #include "gamex/projectx.h" - // for future use (Rob) - #endif Game *old_game = NULL; --- 85,88 ---- *************** *** 157,163 **** MAIN_DIALOG_HELP, MAIN_DIALOG_EXIT, - #ifdef INCLUDE_GAMEX - MAIN_DIALOG_FG, - #endif }; --- 152,155 ---- *************** *** 174,181 **** { my_d_button_proc, 45, 290, 170, 30, 255, 0, 0, D_EXIT, 0, 0, (void *)"Help", NULL, NULL }, { my_d_button_proc, 45, 325, 170, 30, 255, 0, 0, D_EXIT, 0, 0, (void *)"Exit", NULL, NULL }, - #ifdef INCLUDE_GAMEX - { my_d_button_proc, 550, 440, 50, 30, 255, 0, 0, D_EXIT | D_SPECIAL_BUTTON, - 0, 0, (void *)"FG" , NULL, NULL }, - #endif { d_tw_yield_proc, 0, 0, 0, 0, 255, 0, 0, 0, 0, 0, NULL, NULL, NULL }, { NULL, 0, 0, 0, 0, 255, 0, 0, 0, 1, 0, NULL, NULL, NULL } --- 166,169 ---- *************** *** 1822,1833 **** showTitle(); break; - #ifdef INCLUDE_GAMEX - case MAIN_DIALOG_FG: - disable(); - play_fg(&scp, SCPGUI_MUSIC); - enable(); - showTitle(); - break; - #endif } } while((mainRet != MAIN_DIALOG_EXIT) && (mainRet != -1)); --- 1810,1813 ---- *************** *** 2051,2057 **** if (!strcmp(auto_play, "net1server")) play_net1server(auto_param, auto_port); if (!strcmp(auto_play, "net")) play_net(atoi(auto_param)); - #ifdef INCLUDE_GAMEX - if (!strcmp(auto_play, "fg")) play_fg(&scp, SCPGUI_MUSIC, auto_param); - #endif } else { --- 2031,2034 ---- |
From: Rob <geo...@us...> - 2006-04-26 08:37:59
|
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9330/source/melee Modified Files: msprite.cpp Log Message: Index: msprite.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/msprite.cpp,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** msprite.cpp 16 Mar 2006 22:30:31 -0000 1.36 --- msprite.cpp 26 Apr 2006 08:37:54 -0000 1.37 *************** *** 398,404 **** bpp = videosystem.bpp; - general_attributes |= SpaceSprite::NO_AA; - general_attributes |= SpaceSprite::ALPHA; - // general_attributes |= SpaceSprite::DITHER; // this is moved lower... --- 398,401 ---- *************** *** 539,542 **** --- 536,629 ---- } + + + + // all the sprite-relevant information (and nothing else). + SpaceSprite::SpaceSprite(BITMAP **bmplist, int sprite_count, int _attributes, int rotations) + { + count_base = sprite_count; // real different images + count_rotations = rotations; // derived rotations from each image. + count = sprite_count * rotations; + if ((rotations < 1) || (count < 1)) {tw_error("SpaceSprite::SpaceSprite - bad parameters");} + + int i, j, obpp; + + if (_attributes == -1) _attributes = string_to_sprite_attributes(NULL); + + references = 0; + sbitmap = 0; + + general_attributes = _attributes; + bpp = videosystem.bpp; + + + if (general_attributes & ALPHA) { + if (bpp <= 16) bpp = 16; + else bpp = 32; + } + + + smask = new PMASK*[count]; + sbitmap = new BITMAP* [count]; + // attributes = new char [count]; + + for ( i = 0; i < sprite_count; ++i ) + { + + BITMAP *bmp = NULL; + bmp = create_bitmap_ex(bpp, bmplist[i]->w, bmplist[i]->h); + + if (general_attributes & MASKED) + clear_to_color(bmp, bitmap_mask_color(bmp)); + + obpp = bitmap_color_depth(bmplist[i]); + + /* + if (obpp != bpp) + { + convert_bitmap(bmplist[i], bmp, (general_attributes & MASKED) ? AA_MASKED : 0); + + } else { + + if (general_attributes & MASKED) + draw_sprite(bmp, bmplist[i], 0, 0); + else + blit(bmplist[i], bmp, 0, 0, 0, 0, bmp->w, bmp->h); + }*/ + // this will copy, and convert if necessary. + blit(bmplist[i], bmp, 0, 0, 0, 0, bmp->w, bmp->h); + + //color_correct_bitmap(bmp, general_attributes & MASKED); + + if (general_attributes & ALPHA) + handle_alpha_load(bmp); + + + for (j = 1; j < rotations; j += 1) + { + + int index = j + (i * rotations); + smask[index] = 0; + + sbitmap[index] = 0; + } + + int index = i * rotations; + smask[index] = 0; + + sbitmap[index] = bmp; + + } + + + if (!sbitmap[0]) + { + tw_error("Basic sprite shape expected, but doesn't exist"); + } + } + + + + SpaceSprite::SpaceSprite(SpaceSprite &old) { STACKTRACE *************** *** 1027,1115 **** - // all the sprite-relevant information (and nothing else). - SpaceSprite::SpaceSprite(BITMAP **bmplist, int sprite_count, int _attributes, int rotations) - { - count_base = sprite_count; // real different images - count_rotations = rotations; // derived rotations from each image. - count = sprite_count * rotations; - if ((rotations < 1) || (count < 1)) {tw_error("SpaceSprite::SpaceSprite - bad parameters");} - - int i, j, obpp; - - if (_attributes == -1) _attributes = string_to_sprite_attributes(NULL); - - references = 0; - sbitmap = 0; - - general_attributes = _attributes; - bpp = videosystem.bpp; - - - if (general_attributes & ALPHA) { - if (bpp <= 16) bpp = 16; - else bpp = 32; - } - - - smask = new PMASK*[count]; - sbitmap = new BITMAP* [count]; - // attributes = new char [count]; - - for ( i = 0; i < sprite_count; ++i ) - { - - BITMAP *bmp = NULL; - bmp = create_bitmap_ex(bpp, bmplist[i]->w, bmplist[i]->h); - - if (general_attributes & MASKED) - clear_to_color(bmp, bitmap_mask_color(bmp)); - - obpp = bitmap_color_depth(bmplist[i]); - - /* - if (obpp != bpp) - { - convert_bitmap(bmplist[i], bmp, (general_attributes & MASKED) ? AA_MASKED : 0); - - } else { - - if (general_attributes & MASKED) - draw_sprite(bmp, bmplist[i], 0, 0); - else - blit(bmplist[i], bmp, 0, 0, 0, 0, bmp->w, bmp->h); - }*/ - // this will copy, and convert if necessary. - blit(bmplist[i], bmp, 0, 0, 0, 0, bmp->w, bmp->h); - - //color_correct_bitmap(bmp, general_attributes & MASKED); - - if (general_attributes & ALPHA) - handle_alpha_load(bmp); - - - for (j = 1; j < rotations; j += 1) - { - - int index = j + (i * rotations); - smask[index] = 0; - - sbitmap[index] = 0; - } - - int index = i * rotations; - smask[index] = 0; - - sbitmap[index] = bmp; - - } - - - if (!sbitmap[0]) - { - tw_error("Basic sprite shape expected, but doesn't exist"); - } - } - - --- 1114,1117 ---- |
From: Rob <geo...@us...> - 2006-04-26 08:35:41
|
Update of /cvsroot/timewarp/source/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7782/source/melee Modified Files: mhelpers.cpp Log Message: graphics initialization error fix Index: mhelpers.cpp =================================================================== RCS file: /cvsroot/timewarp/source/melee/mhelpers.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** mhelpers.cpp 16 Mar 2006 16:11:13 -0000 1.13 --- mhelpers.cpp 26 Apr 2006 08:35:38 -0000 1.14 *************** *** 320,325 **** { // try 1 failed ! if ( set_gfx_mode(GFX_TIMEWARP_FULLSCREEN, 640, 480, 0, 0)) { // trying default value, also failed --- 320,332 ---- { // try 1 failed ! ! // now, try a default setting ! // define new dimensions ! width = 640; ! height = 480; ! ! if ( set_gfx_mode(GFX_AUTODETECT_FULLSCREEN, width, height, 0, 0)) { + /* // trying default value, also failed *************** *** 341,344 **** --- 348,352 ---- surface = NULL; redraw(); + */ return false; } |
From: Rob <geo...@us...> - 2006-04-25 14:21:23
|
Update of /cvsroot/timewarp/source/gamex/stuff In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25959/source/gamex/stuff Removed Files: backgr_stars.cpp backgr_stars.h space_body.cpp space_body.h Log Message: removing gamex sources, since those won't be developed any further --- backgr_stars.cpp DELETED --- --- space_body.cpp DELETED --- --- space_body.h DELETED --- --- backgr_stars.h DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:21:23
|
Update of /cvsroot/timewarp/source/gamex/edit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25959/source/gamex/edit Removed Files: disk_stuff.cpp disk_stuff.h edit_dialogue.cpp edit_dialogue.h Log Message: removing gamex sources, since those won't be developed any further --- edit_dialogue.cpp DELETED --- --- edit_dialogue.h DELETED --- --- disk_stuff.h DELETED --- --- disk_stuff.cpp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:21:23
|
Update of /cvsroot/timewarp/source/gamex/general In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25959/source/gamex/general Removed Files: sprites.cpp sprites.h Log Message: removing gamex sources, since those won't be developed any further --- sprites.cpp DELETED --- --- sprites.h DELETED --- |
Update of /cvsroot/timewarp/source/gamex In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25959/source/gamex Removed Files: ai_fleet.cpp ai_fleet.h ai_race.cpp ai_race.h gamedata.cpp gamedata.h gamedata_map.cpp gamedata_map.h gamedialogue.cpp gamedialogue.h gamegeneral.cpp gamegeneral.h gamehyper.cpp gamehyper.h gamemelee.cpp gamemelee.h gameplanetmission.cpp gameplanetmission.h gameplanetscan.cpp gameplanetscan.h gameplanetview.cpp gameplanetview.h gameproject.cpp gameproject.h gamesolarview.cpp gamesolarview.h gamestarmap.cpp gamestarmap.h projectx.cpp projectx.h Log Message: removing gamex sources, since those won't be developed any further --- gameproject.h DELETED --- --- projectx.cpp DELETED --- --- gameproject.cpp DELETED --- --- gameplanetview.cpp DELETED --- --- gamedata.h DELETED --- --- gamegeneral.cpp DELETED --- --- gamestarmap.h DELETED --- --- gameplanetscan.cpp DELETED --- --- gamemelee.cpp DELETED --- --- gameplanetview.h DELETED --- --- gamegeneral.h DELETED --- --- gamedata_map.h DELETED --- --- ai_fleet.cpp DELETED --- --- ai_race.h DELETED --- --- gamehyper.cpp DELETED --- --- projectx.h DELETED --- --- gamestarmap.cpp DELETED --- --- gamedialogue.h DELETED --- --- gameplanetmission.cpp DELETED --- --- gamemelee.h DELETED --- --- ai_fleet.h DELETED --- --- gameplanetmission.h DELETED --- --- gamehyper.h DELETED --- --- gamedialogue.cpp DELETED --- --- gamedata.cpp DELETED --- --- gamesolarview.h DELETED --- --- gamedata_map.cpp DELETED --- --- gamesolarview.cpp DELETED --- --- ai_race.cpp DELETED --- --- gameplanetscan.h DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:13
|
Update of /cvsroot/timewarp/gamex/triggers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/triggers Removed Files: test.triggers Log Message: removing gamex data content, since it won't be developed any further --- test.triggers DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:11
|
Update of /cvsroot/timewarp/gamex/mouse In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/mouse Removed Files: pointer_starmap.bmp Log Message: removing gamex data content, since it won't be developed any further --- pointer_starmap.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:10
|
Update of /cvsroot/timewarp/gamex/interface/planetview/list In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/planetview/list Removed Files: backgr.bmp info.txt list_backgr.bmp Log Message: removing gamex data content, since it won't be developed any further --- list_backgr.bmp DELETED --- --- info.txt DELETED --- --- backgr.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:10
|
Update of /cvsroot/timewarp/gamex/interface/planetview/editcol In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/planetview/editcol Removed Files: backgr.bmp dialogname_backgr.bmp info.txt new_default.bmp population_backgr.bmp race_backgr.bmp rem_default.bmp update_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- update_default.bmp DELETED --- --- population_backgr.bmp DELETED --- --- backgr.bmp DELETED --- --- race_backgr.bmp DELETED --- --- info.txt DELETED --- --- dialogname_backgr.bmp DELETED --- --- new_default.bmp DELETED --- --- rem_default.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:09
|
Update of /cvsroot/timewarp/gamex/player In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/player Removed Files: playerinfo.ini Log Message: removing gamex data content, since it won't be developed any further --- playerinfo.ini DELETED --- |
Update of /cvsroot/timewarp/gamex/planetscan In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/planetscan Removed Files: player_01.bmp shot_01.bmp surface_classM.ini surface_classM_01.bmp surface_default.ini surface_default_01.bmp surface_europe.ini surface_europe_01.bmp surface_flames.ini surface_flames_01.bmp surface_giant_blue.ini surface_giant_blue_01.bmp surface_hot.ini surface_hot_01.bmp surface_icy.ini surface_icy_01.bmp surface_medium_purp.ini surface_medium_purp_01.bmp surface_medium_red.ini surface_medium_red_01.bmp surface_small_brown.ini surface_small_brown_01.bmp surface_small_purp.ini surface_small_purp_01.bmp Log Message: removing gamex data content, since it won't be developed any further --- shot_01.bmp DELETED --- --- surface_icy_01.bmp DELETED --- --- surface_small_brown.ini DELETED --- --- surface_hot_01.bmp DELETED --- --- surface_europe.ini DELETED --- --- surface_small_purp.ini DELETED --- --- surface_icy.ini DELETED --- --- surface_europe_01.bmp DELETED --- --- surface_giant_blue.ini DELETED --- --- surface_default.ini DELETED --- --- surface_medium_purp_01.bmp DELETED --- --- surface_default_01.bmp DELETED --- --- surface_small_brown_01.bmp DELETED --- --- surface_medium_purp.ini DELETED --- --- player_01.bmp DELETED --- --- surface_hot.ini DELETED --- --- surface_small_purp_01.bmp DELETED --- --- surface_flames.ini DELETED --- --- surface_flames_01.bmp DELETED --- --- surface_classM.ini DELETED --- --- surface_giant_blue_01.bmp DELETED --- --- surface_medium_red.ini DELETED --- --- surface_classM_01.bmp DELETED --- --- surface_medium_red_01.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:08
|
Update of /cvsroot/timewarp/gamex/stars In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/stars Removed Files: player_01.bmp star_big.ini star_big_01.bmp star_dwarf.ini star_dwarf_01.bmp star_giant.ini star_giant_01.bmp star_medium.ini star_medium_01.bmp star_small.ini star_small_01.bmp surface_default.ini surface_default_01.bmp Log Message: removing gamex data content, since it won't be developed any further --- star_dwarf_01.bmp DELETED --- --- star_big_01.bmp DELETED --- --- star_small_01.bmp DELETED --- --- star_dwarf.ini DELETED --- --- surface_default.ini DELETED --- --- star_giant.ini DELETED --- --- surface_default_01.bmp DELETED --- --- star_big.ini DELETED --- --- star_medium_01.bmp DELETED --- --- star_small.ini DELETED --- --- star_medium.ini DELETED --- --- player_01.bmp DELETED --- --- star_giant_01.bmp DELETED --- |
Update of /cvsroot/timewarp/gamex/solarview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/solarview Removed Files: planet_big.ini planet_big_01.bmp planet_dwarf.ini planet_dwarf_01.bmp planet_giant.ini planet_giant_01.bmp planet_medium.ini planet_medium_01.bmp planet_small.ini planet_small_01.bmp player_01.bmp star_big_01.bmp star_dwarf_01.bmp star_giant_01.bmp star_medium_01.bmp star_small_01.bmp Log Message: removing gamex data content, since it won't be developed any further --- planet_small.ini DELETED --- --- star_dwarf_01.bmp DELETED --- --- planet_dwarf_01.bmp DELETED --- --- planet_medium.ini DELETED --- --- star_small_01.bmp DELETED --- --- star_big_01.bmp DELETED --- --- planet_small_01.bmp DELETED --- --- planet_big.ini DELETED --- --- planet_giant.ini DELETED --- --- planet_medium_01.bmp DELETED --- --- planet_giant_01.bmp DELETED --- --- planet_dwarf.ini DELETED --- --- star_medium_01.bmp DELETED --- --- planet_big_01.bmp DELETED --- --- player_01.bmp DELETED --- --- star_giant_01.bmp DELETED --- |
Update of /cvsroot/timewarp/gamex/planetscan/hazards In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/planetscan/hazards Removed Files: fireball_01.bmp fireball_02.bmp fireball_03.bmp fireball_04.bmp fireball_05.bmp fireball_06.bmp fireball_07.bmp fireball_08.bmp firewall_01.bmp firewall_02.bmp firewall_03.bmp firewall_04.bmp firewall_05.bmp firewall_06.bmp firewall_07.bmp firewall_08.bmp lightning_01.bmp lightning_02.bmp lightning_03.bmp lightning_04.bmp lightning_05.bmp lightning_06.bmp lightning_07.bmp lightning_08.bmp quake_01.bmp quake_02.bmp quake_03.bmp quake_04.bmp quake_05.bmp quake_06.bmp quake_07.bmp quake_08.bmp whirl_01.bmp whirl_02.bmp whirl_03.bmp whirl_04.bmp whirl_05.bmp whirl_06.bmp whirl_07.bmp whirl_08.bmp Log Message: removing gamex data content, since it won't be developed any further --- lightning_08.bmp DELETED --- --- whirl_08.bmp DELETED --- --- firewall_02.bmp DELETED --- --- fireball_04.bmp DELETED --- --- whirl_05.bmp DELETED --- --- fireball_02.bmp DELETED --- --- firewall_01.bmp DELETED --- --- quake_01.bmp DELETED --- --- firewall_06.bmp DELETED --- --- firewall_04.bmp DELETED --- --- quake_08.bmp DELETED --- --- firewall_05.bmp DELETED --- --- lightning_06.bmp DELETED --- --- firewall_03.bmp DELETED --- --- lightning_05.bmp DELETED --- --- whirl_02.bmp DELETED --- --- fireball_01.bmp DELETED --- --- lightning_04.bmp DELETED --- --- whirl_07.bmp DELETED --- --- fireball_08.bmp DELETED --- --- lightning_03.bmp DELETED --- --- quake_03.bmp DELETED --- --- quake_07.bmp DELETED --- --- firewall_08.bmp DELETED --- --- whirl_01.bmp DELETED --- --- quake_06.bmp DELETED --- --- quake_05.bmp DELETED --- --- lightning_07.bmp DELETED --- --- fireball_03.bmp DELETED --- --- firewall_07.bmp DELETED --- --- quake_04.bmp DELETED --- --- fireball_07.bmp DELETED --- --- lightning_02.bmp DELETED --- --- whirl_06.bmp DELETED --- --- quake_02.bmp DELETED --- --- fireball_06.bmp DELETED --- --- lightning_01.bmp DELETED --- --- fireball_05.bmp DELETED --- --- whirl_04.bmp DELETED --- --- whirl_03.bmp DELETED --- |
Update of /cvsroot/timewarp/gamex/interface/planetview/edit/oud In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/planetview/edit/oud Removed Files: plot2_dec_default.bmp plot2_inc_default.bmp plot_dec_default.bmp plot_inc_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- plot2_inc_default.bmp DELETED --- --- plot_inc_default.bmp DELETED --- --- plot2_dec_default.bmp DELETED --- --- plot_dec_default.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:08
|
Update of /cvsroot/timewarp/gamex/interface/melee In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/melee Removed Files: backgr.bmp info.txt map_backgr.bmp zoomin_default.bmp zoomout_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- zoomin_default.bmp DELETED --- --- backgr.bmp DELETED --- --- zoomout_default.bmp DELETED --- --- map_backgr.bmp DELETED --- --- info.txt DELETED --- |
Update of /cvsroot/timewarp/gamex/interface/hyperspace In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/hyperspace Removed Files: backgr.bmp exit_default.bmp info.txt map_backgr.bmp radar_backgr.bmp starname_backgr.bmp zoomin_default.bmp zoomout_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- starname_backgr.bmp DELETED --- --- info.txt DELETED --- --- exit_default.bmp DELETED --- --- map_backgr.bmp DELETED --- --- zoomin_default.bmp DELETED --- --- radar_backgr.bmp DELETED --- --- backgr.bmp DELETED --- --- zoomout_default.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:08
|
Update of /cvsroot/timewarp/gamex/interface/dialogeditor/text In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/dialogeditor/text Removed Files: backgr.bmp barver_backgr.bmp barver_button.bmp down_default.bmp up_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- up_default.bmp DELETED --- --- barver_button.bmp DELETED --- --- down_default.bmp DELETED --- --- backgr.bmp DELETED --- --- barver_backgr.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:06
|
Update of /cvsroot/timewarp/gamex/interface/planetview/edit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/planetview/edit Removed Files: backgr.bmp backgr_old.bmp info.txt new_default.bmp plot2_backgr.bmp plot_backgr.bmp replace_default.bmp values_barhor_backgr.bmp values_barhor_button.bmp values_edit_backgr.bmp values_info_backgr.bmp Log Message: removing gamex data content, since it won't be developed any further --- replace_default.bmp DELETED --- --- plot2_backgr.bmp DELETED --- --- values_barhor_backgr.bmp DELETED --- --- backgr_old.bmp DELETED --- --- plot_backgr.bmp DELETED --- --- values_edit_backgr.bmp DELETED --- --- new_default.bmp DELETED --- --- info.txt DELETED --- --- backgr.bmp DELETED --- --- values_info_backgr.bmp DELETED --- --- values_barhor_button.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:05
|
Update of /cvsroot/timewarp/gamex/interface/starmap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/starmap Removed Files: backgr.bmp info.txt map_backgr.bmp zoomin_default.bmp zoomout_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- zoomin_default.bmp DELETED --- --- backgr.bmp DELETED --- --- zoomout_default.bmp DELETED --- --- map_backgr.bmp DELETED --- --- info.txt DELETED --- |
Update of /cvsroot/timewarp/gamex/interface/starmap/edit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/starmap/edit Removed Files: backgr.bmp dec_default.bmp inc_default.bmp info.txt new_default.bmp plot_backgr.bmp replace_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- replace_default.bmp DELETED --- --- plot_backgr.bmp DELETED --- --- dec_default.bmp DELETED --- --- inc_default.bmp DELETED --- --- new_default.bmp DELETED --- --- info.txt DELETED --- --- backgr.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:03
|
Update of /cvsroot/timewarp/gamex/interface/filebrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/filebrowser Removed Files: backgr.bmp downdir_default.bmp info.txt list_backgr.bmp list_barver_backgr.bmp list_barver_button.bmp list_down_default.bmp list_up_default.bmp Log Message: removing gamex data content, since it won't be developed any further --- list_barver_button.bmp DELETED --- --- list_up_default.bmp DELETED --- --- backgr.bmp DELETED --- --- list_backgr.bmp DELETED --- --- list_down_default.bmp DELETED --- --- info.txt DELETED --- --- list_barver_backgr.bmp DELETED --- --- downdir_default.bmp DELETED --- |
From: Rob <geo...@us...> - 2006-04-25 14:19:00
|
Update of /cvsroot/timewarp/gamex/interface/dialogeditor/raceselect In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23893/gamex/interface/dialogeditor/raceselect Removed Files: backgr.bmp info.txt Log Message: removing gamex data content, since it won't be developed any further --- info.txt DELETED --- --- backgr.bmp DELETED --- |