Synchronizing doc with sources
This commit is contained in:
parent
d19caefb11
commit
260ac3c634
@ -12,6 +12,12 @@ ______________________________________________________________________
|
||||
Notes for GoldED+ 1.1.5, /snapshot/
|
||||
______________________________________________________________________
|
||||
|
||||
- Partially fixed ATTRIBSEMAIL and ATTRIBSNEWS operation. They still
|
||||
not affected to the areas defined as such through the AREAISEMAIL
|
||||
and AREAISNEWS and if no ATTRIBUTES defined in the Random System
|
||||
group. It seems will never been fixed but will rather documented as
|
||||
a feature.
|
||||
|
||||
! REPLYLINK defaults changed to DIRECT.
|
||||
|
||||
! AREAAUTOID defaults changed to LONG.
|
||||
|
@ -615,11 +615,11 @@ bool AreaList::GetAreaFirstPart(AreaCfg& aa, char*& key, char*& val) {
|
||||
break;
|
||||
case CRC_EMAIL:
|
||||
aa.type = AT_EMAIL | AT_NET;
|
||||
aa.attr = CFG->attribsnet;
|
||||
aa.attr = CFG->attribsemail;
|
||||
break;
|
||||
case CRC_NEWS:
|
||||
aa.type = AT_NEWSGROUP | AT_ECHO;
|
||||
aa.attr = CFG->attribsecho;
|
||||
aa.attr = CFG->attribsnews;
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
|
@ -770,11 +770,11 @@ CfgGed::CfgGed() {
|
||||
attribscc.loc1();
|
||||
attribscfm.loc1();
|
||||
attribsecho.loc1();
|
||||
// attribsemail.reset();
|
||||
attribsemail.loc1();
|
||||
attribsfrq.loc1();
|
||||
attribslocal.loc1();
|
||||
attribsnet.loc1();
|
||||
// attribsnews.reset();
|
||||
attribsnews.loc1();
|
||||
switches.set(akamatchnet, true);
|
||||
switches.set(areaautonext, true);
|
||||
switches.set(areacatchupread, true);
|
||||
|
@ -259,7 +259,11 @@ void Area::RandomizeData(int mode) {
|
||||
CFG->grp.GetItm(GRP_AKAMATCHING, adat->akamatching);
|
||||
|
||||
if(CFG->grp.GetItm(GRP_ATTRIBUTES, buf, sizeof(buf))) {
|
||||
if(isnet())
|
||||
if(isemail())
|
||||
adat->attributes = CFG->attribsemail;
|
||||
else if(isnewsgroup())
|
||||
adat->attributes = CFG->attribsnews;
|
||||
else if(isnet())
|
||||
adat->attributes = CFG->attribsnet;
|
||||
else if(isecho())
|
||||
adat->attributes = CFG->attribsecho;
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user