Ignore:
Timestamp:
Feb 8, 2010, 7:50:36 PM (16 years ago)
Author:
Herwig Bauernfeind
Message:

GUI-Tools: Added EVFSGUI 2.0.3

Location:
branches/guitools-2.0/evfsgui
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/guitools-2.0/evfsgui/changes

    r394 r404  
    99- Eventually support on-the-fly browsing of directories/files in EVFSGUI
    1010
     11Version 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.
     16NOTE: 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           
    1122Version 2.0.2 2010-01-25
    1223- Changed: Remove Win95/98/IBM Peer length limits from smbtree.vrs.
  • branches/guitools-2.0/evfsgui/evfsgui.VRP

    r393 r404  
    11VX-REXX OS/2 V2.14 Build B3
    22VRX: evfsgui.VRX
    3 VXOFile: VRSPLIT
    4 MacroPath: VRM:U:\Develop\Samba\guitools-2.0\evfsgui
    5 EXEPath:
    6 RunParameters:
    7 RunDirectory: U:\Develop\Samba\guitools-2.0\evfsgui
    8 VRXWindow: __VREMainWindow,1,976,48,891,7757
    9 VRXWindow: __VRESectionListWindow,1,434,10937,11491,4445
    10 VRXWindow: __VREToolsWindow,0,2012,6215,6992,1669
    11 UserFile: 1
    12 UserWindow: Main,1
  • branches/guitools-2.0/evfsgui/evfsgui.VRX

    r393 r404  
    21082108    IF options.!master     \= '' THEN src = src';MASTER='options.!master
    21092109    IF options.!mastertype \= '' THEN src = src';MASTERTYPE='options.!mastertype
    2110     IF options.!memlen     \= '' THEN src = src';MEMLEN='options.!memlen
     2110/*  IF options.!memlen     \= '' THEN src = src';MEMLEN='options.!memlen
    21112111    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 */
    21132113    IF options.!easupport  \= '' THEN src = src';EASUPPORT='options.!easupport
    21142114
     
    24882488        resdata = resdata||';MASTER='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.masterfh)
    24892489        resdata = resdata||';MASTERTYPE='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.mtypefh)
    2490         resdata = resdata||';MEMLEN='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.memlenfh)
     2490/*      resdata = resdata||';MEMLEN='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.memlenfh)
    24912491        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) */
    24932493        resdata = resdata||';EASUPPORT='||VRMethod("CN_CONDET","GetFieldData", records.i, cd.easupportfh)
    24942494        resdata = resdata||' '||VRMethod("CN_CONDET","GetFieldData", records.i, cd.rwfh)
     
    27002700        PARSE VAR resource . 'MASTER=' master ';' .
    27012701        PARSE VAR resource . 'MASTERTYPE=' mtype ';' .
    2702         PARSE VAR resource . 'MEMLEN=' memlen ';' .
     2702/*      PARSE VAR resource . 'MEMLEN=' memlen ';' .
    27032703        PARSE VAR resource . 'LOGFILE=' logfile ';'.
    2704         PARSE VAR resource . 'LOGLEVEL=' loglevel ';' .
     2704        PARSE VAR resource . 'LOGLEVEL=' loglevel ';' . */
    27052705        PARSE VAR resource . 'EASUPPORT=' easupport .
    27062706
Note: See TracChangeset for help on using the changeset viewer.