Changeset 404 for branches/guitools-2.0/evfsgui
- Timestamp:
- Feb 8, 2010, 7:50:36 PM (16 years ago)
- Location:
- branches/guitools-2.0/evfsgui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-2.0/evfsgui/changes
r394 r404 9 9 - Eventually support on-the-fly browsing of directories/files in EVFSGUI 10 10 11 Version 2.0.3 2010-01-29 12 - Changed: In the 1.5.0 GA version of the plugin the MEMLEN, LOGFILE and 13 LOGLEVEL tokens are removed in order to address the problem with 14 EVFSRxGetMount() return strings - several changes in EVFSGUI were 15 required to address this change in the plugin. 16 NOTE: This changes makes older profile files, both .ndc and .evp incompatible. 17 EVFSGUI can read old profiles, but only saves new profiles. The Netdrive 18 GUI does not have such a feature. Older profiles may easily be migrated 19 by editing with a text editor and removing the MEMLEN, LOGLEVEL and 20 LOGFILE tokens from the resource strings manually. 21 11 22 Version 2.0.2 2010-01-25 12 23 - Changed: Remove Win95/98/IBM Peer length limits from smbtree.vrs. -
branches/guitools-2.0/evfsgui/evfsgui.VRP
r393 r404 1 1 VX-REXX OS/2 V2.14 Build B3 2 2 VRX: evfsgui.VRX 3 VXOFile: VRSPLIT4 MacroPath: VRM:U:\Develop\Samba\guitools-2.0\evfsgui5 EXEPath:6 RunParameters:7 RunDirectory: U:\Develop\Samba\guitools-2.0\evfsgui8 VRXWindow: __VREMainWindow,1,976,48,891,77579 VRXWindow: __VRESectionListWindow,1,434,10937,11491,444510 VRXWindow: __VREToolsWindow,0,2012,6215,6992,166911 UserFile: 112 UserWindow: Main,1 -
branches/guitools-2.0/evfsgui/evfsgui.VRX
r393 r404 2108 2108 IF options.!master \= '' THEN src = src';MASTER='options.!master 2109 2109 IF options.!mastertype \= '' THEN src = src';MASTERTYPE='options.!mastertype 2110 2110 /* IF options.!memlen \= '' THEN src = src';MEMLEN='options.!memlen 2111 2111 IF options.!logfile \= '' THEN src = src';LOGFILE='options.!logfile 2112 IF options.!loglevel \= '' THEN src = src';LOGLEVEL='options.!loglevel 2112 IF options.!loglevel \= '' THEN src = src';LOGLEVEL='options.!loglevel */ 2113 2113 IF options.!easupport \= '' THEN src = src';EASUPPORT='options.!easupport 2114 2114 … … 2488 2488 resdata = resdata||';MASTER='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.masterfh) 2489 2489 resdata = resdata||';MASTERTYPE='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.mtypefh) 2490 2490 /* resdata = resdata||';MEMLEN='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.memlenfh) 2491 2491 resdata = resdata||';LOGFILE='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.logfilefh) 2492 resdata = resdata||';LOGLEVEL='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.loglevelfh) 2492 resdata = resdata||';LOGLEVEL='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.loglevelfh) */ 2493 2493 resdata = resdata||';EASUPPORT='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.easupportfh) 2494 2494 resdata = resdata||' '||VRMethod("CN_CONDET","GetFieldData", records.i, cd.rwfh) … … 2700 2700 PARSE VAR resource . 'MASTER=' master ';' . 2701 2701 PARSE VAR resource . 'MASTERTYPE=' mtype ';' . 2702 2702 /* PARSE VAR resource . 'MEMLEN=' memlen ';' . 2703 2703 PARSE VAR resource . 'LOGFILE=' logfile ';'. 2704 PARSE VAR resource . 'LOGLEVEL=' loglevel ';' . 2704 PARSE VAR resource . 'LOGLEVEL=' loglevel ';' . */ 2705 2705 PARSE VAR resource . 'EASUPPORT=' easupport . 2706 2706
Note:
See TracChangeset
for help on using the changeset viewer.