PDA

View Full Version : CVS and Warnings



Sixes
07-21-2003, 09:06 AM
The CVS seems to be behind the downloadable zip files. Should we forget ever trying to keep sources up to date via CVS?

The following diff gets rid of a few minor warnings:

Index: myseq/Form1.cs
================================================== =================
RCS file: /home/CVS/MySEQ/myseq/Form1.cs,v
retrieving revision 1.1.1.1
diff -c -r1.1.1.1 Form1.cs
*** myseq/Form1.cs 21 Jul 2003 13:32:52 -0000 1.1.1.1
--- myseq/Form1.cs 21 Jul 2003 15:16:53 -0000
***************
*** 1919,1927 ****
ArrayList newSpawns = new ArrayList();

private void timer1_Tick(object sender, System.EventArgs e) {
- int c = 0;
bool found = false;
- bool done = false;

s.WriteByte(0x23);

--- 1919,1925 ----
Index: myseq/MapCon.cs
================================================== =================
RCS file: /home/CVS/MySEQ/myseq/MapCon.cs,v
retrieving revision 1.1.1.1
diff -c -r1.1.1.1 MapCon.cs
*** myseq/MapCon.cs 21 Jul 2003 13:34:28 -0000 1.1.1.1
--- myseq/MapCon.cs 21 Jul 2003 15:16:54 -0000
***************
*** 55,64 ****
// Hand relocation variables
private Cursor hCurs = null;
private int hx=0, hy=0;
- private int ox, oy;
private int ox2, oy2;
private bool hDown;
- private bool rclick;
public bool rhide;
public bool rhighlight;
public Font drawFont = new Font("Arial", 10);
--- 55,62 ----
***************
*** 594,609 ****
ox2 = offsetxg;
oy2 = offsetyg;
}
- else if (e.Button == MouseButtons.Right) {
- rclick = true;
- }
}

//~~
private void MapCon_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e) {
hDown = false;
hx = hy = 0;
- rclick = false;

//offsetx = offsetxg;
//offsety = offsetyg;
--- 592,603 ----
Index: myseqserverc/myseqserverc.cpp
================================================== =================
RCS file: /home/CVS/MySEQ/myseqserverc/myseqserverc.cpp,v
retrieving revision 1.1.1.1
diff -c -r1.1.1.1 myseqserverc.cpp
*** myseqserverc/myseqserverc.cpp 21 Jul 2003 13:39:17 -0000 1.1.1.1
--- myseqserverc/myseqserverc.cpp 21 Jul 2003 15:16:55 -0000
***************
*** 118,124 ****
CHAR Lastname[22];
int flags;
} ;
! #pragma pack(pop);


/*typedef struct _GROUNDITEM {
--- 118,124 ----
CHAR Lastname[22];
int flags;
} ;
! #pragma pack(pop)


/*typedef struct _GROUNDITEM {

shnauka
07-21-2003, 02:49 PM
Are you speaking of the 'official' downloadable versions, or the modified downloadable versions that another and myself posted?

As for ours, I havent heard any sort of response regarding my posted version from caveman. I personally dont have CVS checkin access.. :-(

I'm unsure of what method we should use beyond posting sources here. my version is currently still in a bit of flux as I'm changing alot of stuff around, and has gone beyond just a slight change..