Changeset 580
- Timestamp:
- Jun 25, 2011, 7:20:41 PM (14 years ago)
- Location:
- branches/guitools-1.0/install
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/guitools-1.0/install/changes
r574 r580 1 Version 1.0.2 25-06-2011 2 !Fixed: Do not trash smb.conf on Samba 3.3.x under 3 all possible conditions (Ticket #146). 1 4 Version 1.0.1 13-06-2011 2 5 +Added: Workgroup/Domain can set during installation 3 6 *Changed: Internal names of objects 7 !Fixed: Do not trash smb.conf on Samba 3.3.x when 8 switching from expert mode to simple mode. 4 9 Version 1.0.0 13-03-2010 5 10 +Added: Use a more wizard-like style instead of … … 16 21 !Fixed: Initiate notebook page load earlier (no more 17 22 crashes in certain situations) 18 !Fixed: Do not crash on almost empty smb.conf (created19 by a client installation23 !Fixed: Do not crash on almost empty smb.conf 24 (created by a client installation) 20 25 !Fixed: Bug in NLV.VRS 2.0 21 26 Version 0.9.5 06-03-2010 -
branches/guitools-1.0/install/sscc.vrp
r574 r580 7 7 VRXWindow: __VREMainWindow,1,1987,5059,891,7263 8 8 VRXWindow: __VRESectionListWindow,1,3071,10551,8974,4890 9 VRXWindow: __VREToolsWindow,1,1590,337,648 3,166710 VRXWindow: __VREWindListWindow,1,4 22,10551,2650,31509 VRXWindow: __VREToolsWindow,1,1590,337,6489,1659 10 VRXWindow: __VREWindListWindow,1,458,12190,2650,3150 11 11 UserFile: 1 12 12 UserWindow: Main,1 13 UserWindow: Installer,1 -
branches/guitools-1.0/install/sscc.vrx
r574 r580 978 978 /*:VRX _SmbConfCommitChanges 979 979 */ 980 _SmbConfCommitChanges: 980 _SmbConfCommitChanges: 981 IF options.!debug == 1 THEN say '_SmbConfCommitChanges() started' 982 981 983 src = TempDir'smb.conf' 984 if stream(src,'c','query size') = 0 then do 985 ok = VRCopyFile(smbconf,src) 986 end 987 'pause' 988 say src' 'stream(src,'c','query size') 989 'pause' 982 990 trg = smbconf 991 say trg 983 992 ok = SysFileDelete(smbconf) 984 993 call lineout trg, '# Samba config file created using SSCC ver. 'word(VRGet("Main","Hinttext"),2) … … 999 1008 ok = stream(src,'c','close') 1000 1009 ok = SysFileDelete(src) 1010 IF options.!debug == 1 THEN say '_SmbConfCommitChanges() done' 1001 1011 return 1002 1012 … … 2726 2736 */ 2727 2737 PB_Cancel_Click: 2728 call PB_Save_Click 2738 IF options.!debug == 1 THEN say 'PB_Cancel_Click() started' 2739 if VRGet("PB_Save","Enabled") then call PB_Save_Click 2729 2740 call Quit 2741 IF options.!debug == 1 THEN say 'PB_Cancel_Click() done' 2730 2742 return 2731 2743 … … 2853 2865 */ 2854 2866 PB_Save_Click: 2867 IF options.!debug == 1 THEN say 'PB_Save_Click() started' 2855 2868 if ValueChanged then do 2856 2869 if CurSection <> "" then do … … 2860 2873 end 2861 2874 end 2875 IF options.!debug == 1 THEN say 'PB_Save_Click() done' 2862 2876 return 2863 2877 … … 2918 2932 */ 2919 2933 Quit: 2934 IF options.!debug == 1 THEN say "Quit() start" 2935 2920 2936 if VRGet("Main","WindowState") = "Maximized"|, 2921 2937 VRGet("Main","WindowState") = "Minimized" then ok = VRMethod("Main", "Restore") … … 2931 2947 ok = SysFileDelete(smboutput) 2932 2948 2949 IF options.!debug == 1 THEN say "Quit() done" 2933 2950 /* ok = VRRedirectStdio('OFF') */ 2934 2951 window = VRWindow()
Note:
See TracChangeset
for help on using the changeset viewer.