Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Prepare Windows version for deployment |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6cfe1e1e85a72fb627442b3e62c88ac9 |
User & Date: | kevin 2015-10-05 02:00:08 |
Context
2015-10-05
| ||
02:02 | More tweaks check-in: 546b27ed47 user: kevin tags: trunk | |
02:00 | Prepare Windows version for deployment check-in: 6cfe1e1e85 user: kevin tags: trunk | |
2015-10-04
| ||
03:56 | More adjustments check-in: bbc7fc8a2d user: kevin tags: trunk | |
Changes
Changes to filemorph.pl.
︙ | ︙ | |||
13 14 15 16 17 18 19 | use Env qw(HOME); use File::Path qw(remove_tree); use File::Copy::Recursive qw (rmove); BEGIN { if ($Config{osname} eq "darwin") { | | | | | | | | | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | use Env qw(HOME); use File::Path qw(remove_tree); use File::Copy::Recursive qw (rmove); BEGIN { if ($Config{osname} eq "darwin") { my $frameworkpath = "$Bin/Contents/Frameworks/Tcl.framework/Tcl"; $ENV{'PERL_TCL_DL_PATH'} = $frameworkpath; } if ($Config{osname} eq "MSWin32") { if (exists $ENV{PAR_PROGNAME}) { my $libtarget = "$ENV{TMP}/lib"; my $libsrc = "$ENV{PAR_TEMP}/inc/script/Tcl/lib"; rmove($libsrc, $libtarget); my $bintarget = "$ENV{TMP}/bin"; my $binsrc = "$ENV{PAR_TEMP}/inc/script/Tcl/bin"; rmove($binsrc, $bintarget); } } } #use strict; use warnings; use Tkx; our $IS_AQUA = &Tkx::tk_windowingsystem eq "aqua"; our $IS_WINDOWS = &Tkx::tk_windowingsystem eq "win32"; use File::Copy qw(move copy); use Env qw (HOME TMP TEMP TMPDIR); use Time::Local; use POSIX qw( strftime ); use File::Basename qw(fileparse basename dirname); use LWP::Simple; use Config::IniFiles; use File::Temp qw(tempfile); Tkx::set('::argv0', $ARGV[0] || ""); Tkx::catch('console hide'); Tkx::package_require('tkdnd'); Tkx::package_require('Img'); Tkx::package_require('regproc'); Tkx::package_require('machelp'); Tkx::package_require('softwareupdate'); |
︙ | ︙ | |||
97 98 99 100 101 102 103 | #initialize the app &startUp; &makeImage; @filelist = (); if ($IS_AQUA) { | | | | | | | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | #initialize the app &startUp; &makeImage; @filelist = (); if ($IS_AQUA) { Tkx::interp_alias("", "::tk::mac::OpenDocument", "", [\&openDoc]); Tkx::interp_alias("", "::tk::mac::ShowHelp", "", [\&showHelp]); Tkx::interp_alias("", "bgerror", "", [\&errlog]); } if ($IS_WINDOWS) { Tkx::package_require("twapi"); Tkx::twapi__AddFontResourceEx('iconic_stroke.ttf'); } #draw the GUI our $mw = Tkx::widget->new("."); Tkx::wm_title($mw, "FileMorph"); $mw->g_wm_withdraw; if ($IS_WINDOWS) { $mw->g_wm_protocol(WM_DELETE_WINDOW => \&shutdown); $mw->g_wm_iconphoto(-default => $icon); } #menubar code my $menubar = $mw->new_menu(); Tkx::option_add("*tearOff", 0); our $applemenu; if ($IS_AQUA) { |
︙ | ︙ | |||
248 249 250 251 252 253 254 | ); $folderbutton->g_pack( -expand => "no", -fill => "both", -side => "left" ); | | < < < | | 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 | ); $folderbutton->g_pack( -expand => "no", -fill => "both", -side => "left" ); Tkx::DynamicHelp__register($folderbutton, "balloon", "Select the directory"); my $filebutton = $toolbar->new_ttk__button( -text => "\x{e000}", -style => "Toolbutton", -takefocus => 0, -command => \&setFile, ); $filebutton->g_pack( -expand => "no", -fill => "both", -side => "left" ); Tkx::DynamicHelp__register($filebutton, "balloon", "Select the file"); my $sep = $toolbar->new_ttk__separator(-orient => "vertical"); $sep->g_pack( -fill => "both", -expand => "no", -side => "top", ); |
︙ | ︙ | |||
335 336 337 338 339 340 341 | ); $listbox->g_pack( -fill => "both", -expand => "yes", -side => "left", ); | | | | 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | ); $listbox->g_pack( -fill => "both", -expand => "yes", -side => "left", ); Tkx::tkdnd__drop___target_register($listbox, "*"); Tkx::bind($listbox, "<<Drop:DND_Files>>", [sub {&selectFileSystem;}, Tkx::Ev("%D")]); my $noteframe = $textframe->new_ttk__frame; $noteframe->g_pack( -fill => "both", -expand => "yes", -side => "right", |
︙ | ︙ | |||
361 362 363 364 365 366 367 | $scrollhouse->g_pack( -fill => "y", -expand => "no", -side => "right", ); my $scrollbar = $scrollhouse->new_ttk__scrollbar(-orient => 'vertical'); | | | | 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | $scrollhouse->g_pack( -fill => "y", -expand => "no", -side => "right", ); my $scrollbar = $scrollhouse->new_ttk__scrollbar(-orient => 'vertical'); $scrollbar->configure(-command => [$listbox, "yview"]); $scrollbar->g_pack( -fill => "y", -expand => "no", -side => "right", ); $listbox->configure(-yscrollcommand => [$scrollbar, "set"]); #notebook components my $extension = $notebook->new_ttk__frame; my $replacement = $notebook->new_ttk__frame; my $text = $notebook->new_ttk__frame; my $date = $notebook->new_ttk__frame; my $case = $notebook->new_ttk__frame; |
︙ | ︙ | |||
394 395 396 397 398 399 400 | ); my $extundo = $extension->new_ttk__button( -text => "Undo", -command => \&undoExtension ); my $extclear = $extension->new_ttk__button( -text => "Clear", | | | 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | ); my $extundo = $extension->new_ttk__button( -text => "Undo", -command => \&undoExtension ); my $extclear = $extension->new_ttk__button( -text => "Clear", -command => sub {$sourceext = ""; $targetext = "";} ); our @extarray = ( $exsrclabel, $exsrcentry, $extargetlabel, $extargetentry, $extchange, $extundo, $extclear ); |
︙ | ︙ | |||
426 427 428 429 430 431 432 | ); my $repundo = $replacement->new_ttk__button( -text => "Undo", -command => \&undoReplaceString ); my $repclear = $replacement->new_ttk__button( -text => "Clear", | | | 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | ); my $repundo = $replacement->new_ttk__button( -text => "Undo", -command => \&undoReplaceString ); my $repclear = $replacement->new_ttk__button( -text => "Clear", -command => sub {$srcstring = ""; $targetstring = "";}, ); our @reparray = ( $repsrclabel, $repsrcentry, $reptargetlabel, $reptargetentry, $repbutton, $repundo, $repclear ); |
︙ | ︙ | |||
464 465 466 467 468 469 470 | $text->new_ttk__button(-text => "Change", -command => \&addString); my $txtundo = $text->new_ttk__button( -text => "Undo", -command => \&undoAddString ); my $txtclear = $text->new_ttk__button( -text => "Clear", | | | 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | $text->new_ttk__button(-text => "Change", -command => \&addString); my $txtundo = $text->new_ttk__button( -text => "Undo", -command => \&undoAddString ); my $txtclear = $text->new_ttk__button( -text => "Clear", -command => sub {$prependstring = "";} ); $prepend = 1; our @txtarray = ( $txtsrclabel, $txtsrcentry, $txtbefore, $txtafter, $txtbutton, $txtundo, $txtclear |
︙ | ︙ | |||
499 500 501 502 503 504 505 | my $timeentry = $attributes->new_ttk__entry(-textvariable => \$clocktime,); my $attbutton = $attributes->new_ttk__button( -text => "Change", -command => \&changeTime ); | | | 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 | my $timeentry = $attributes->new_ttk__entry(-textvariable => \$clocktime,); my $attbutton = $attributes->new_ttk__button( -text => "Change", -command => \&changeTime ); our @attarray = ($todaylabel, $today, $timelabel, $timeentry, $attbutton); foreach (@attarray) { $_->g_pack( -fill => "both", -expand => "no", -side => "top", ); |
︙ | ︙ | |||
544 545 546 547 548 549 550 | # Tkx::catch(remove_tree("$ENV{TMP}/lib")); # Tkx::catch(remove_tree("$ENV{TMP}/bin")); &Tkx::exit; } sub makeImage { | | | 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 | # Tkx::catch(remove_tree("$ENV{TMP}/lib")); # Tkx::catch(remove_tree("$ENV{TMP}/bin")); &Tkx::exit; } sub makeImage { my $data = "iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABGdBTUEAALGPC/xh BQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAA CXBIWXMAABYlAAAWJQFJUiTwAAABWWlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAA PHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1Q IENvcmUgNS40LjAiPgogICA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cu dzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogICAgICA8cmRmOkRl c2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczp0aWZmPSJo dHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyI+CiAgICAgICAgIDx0aWZmOk9y |
︙ | ︙ | |||
653 654 655 656 657 658 659 | } } #"about application"command sub Tkx::tkAboutDialog { our $about = $mw->new_toplevel; | | | 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 | } } #"about application"command sub Tkx::tkAboutDialog { our $about = $mw->new_toplevel; Tkx::wm_title($about, "About FileMorph"); my $aboutframe = $about->new_frame; my $buttonframe = $about->new_frame; $aboutframe->g_pack( -fill => "both", -expand => "yes", |
︙ | ︙ | |||
756 757 758 759 760 761 762 | #handle errors in Tk sub errlog { my $msg = shift; if ($IS_AQUA) { system("syslog -s -l Error FileMorph: An error occurred: $msg\n"); } else { | | | 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 | #handle errors in Tk sub errlog { my $msg = shift; if ($IS_AQUA) { system("syslog -s -l Error FileMorph: An error occurred: $msg\n"); } else { print "An error occurred: $msg\n"; } } #error message for selected file sub fileErrMsg { |
︙ | ︙ | |||
780 781 782 783 784 785 786 | "Cannot run operation without text.Please enter text into the appropriate entry field to run this operation." ); } #update display of files sub updateFileDisplay { | | | | | | | | | | 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 | "Cannot run operation without text.Please enter text into the appropriate entry field to run this operation." ); } #update display of files sub updateFileDisplay { $listbox->delete(0, "end"); if (scalar(@filelist) > 1) { @filelist = <"$folder/*">; } foreach (@filelist) { $listbox->insert("end", "$_"); } } #set search directory sub setDir { $listbox->delete(0, "end"); $folder = Tkx::tk___chooseDirectory(-parent => $mw); return unless $folder; @filelist = <"$folder/*">; foreach (@filelist) { $listbox->insert("end", "$_"); } return "$folder"; } #set file to change sub setFile { $listbox->delete(0, "end"); my $filename = Tkx::tk___getOpenFile(-parent => $mw); return unless $filename; @filelist = (); push(@filelist, $filename); foreach (@filelist) { $listbox->insert("end", "$_"); } return @filelist; } #change all file extensions in a directory sub changeExtension { &checkfilelist; return if (scalar(@filelist) == 0); if (scalar(@filelist) == 1) { &fileErrMsg; return; } if ($exsrcentry->get() eq "" || $extargetentry->get() eq "") { &dataErrMsg; return; } $sourceext = $exsrcentry->get(); $targetext = $extargetentry->get(); |
︙ | ︙ | |||
861 862 863 864 865 866 867 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } | | | 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } if ($exsrcentry->get() eq "" || $extargetentry->get() eq "") { &dataErrMsg; return; } $sourceext = $exsrcentry->get(); $targetext = $extargetentry->get(); |
︙ | ︙ | |||
894 895 896 897 898 899 900 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } | | | | | 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } if ($repsrcentry->get() eq "") { &dataErrMsg; return; } $srcstring = $repsrcentry->get(); $targetstring = $reptargetentry->get(); if ($reptargetentry->get() eq "") { my $changeQuestion; $changeQuestion = Tkx::tk___messageBox( -parent => $mw, -title => "Confirm Removal of Text", -type => "yesno", -icon => "info", -message => "Do you want to strip out \"$srcstring\"with no replacement?", -detail => "This operation cannot be undone.", ); if ($changeQuestion eq "no") { return; } } foreach (@filelist) { next unless -f $_; my $filename = $_; |
︙ | ︙ | |||
942 943 944 945 946 947 948 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } | | | | 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } if ($repsrcentry->get() eq "") { &dataErrMsg; return; } if ($reptargetentry->get() eq "") { my $sorryQuestion; $sorryQuestion = Tkx::tk___messageBox( -parent => $mw, -title => "Removal Operation Cannot Be Undone", -icon => "info", -message => "You confirmed removing the string \"$srcstring.\"", -detail => "This operation cannot be undone.", |
︙ | ︙ | |||
982 983 984 985 986 987 988 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } | | | 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 | if (scalar(@filelist) == 1) { &fileErrMsg; return; } if ($txtsrcentry->get() eq "") { &dataErrMsg; return; } $prependstring = $txtsrcentry->get(); foreach (@filelist) { |
︙ | ︙ | |||
1007 1008 1009 1010 1011 1012 1013 | move $filename, $newname; } if ($prepend == 1) { my $filename = $_; my @components = split(/\./, $filename); | > | | | 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 | move $filename, $newname; } if ($prepend == 1) { my $filename = $_; my @components = split(/\./, $filename); my $newname = $components[0] . $prependstring . "\." . $components[1]; move $filename, $newname; } } &updateFileDisplay; } #replace string in file name sub undoAddString { &checkfilelist; return if (scalar(@filelist) == 0); if (scalar(@filelist) == 1) { &fileErrMsg; return; } if ($txtsrcentry->get() eq "") { &dataErrMsg; return; } $prependstring = $txtsrcentry->get(); foreach (@filelist) { |
︙ | ︙ | |||
1067 1068 1069 1070 1071 1072 1073 | -message => "Do you want to change the file modification time?", -detail => "This operation cannot be undone.", ); if ($changeQuestion eq "no") { return; } | | | | 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 | -message => "Do you want to change the file modification time?", -detail => "This operation cannot be undone.", ); if ($changeQuestion eq "no") { return; } if ($changeQuestion eq "yes") { my @datearray = split(/\//, $datetime); my @clockarray = split(/\:/, $clocktime); my $hour; my $second = "00"; if ($timeofday == 1) { $hour = $clockarray[0] + 12; } else { $hour = $clockarray[0]; } |
︙ | ︙ | |||
1101 1102 1103 1104 1105 1106 1107 | sub validateTime { my $time = $timeentry->get(); if ($time =~ (/\d\d:\d\d/)) { return 1; } else { | | | | | | | | 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 | sub validateTime { my $time = $timeentry->get(); if ($time =~ (/\d\d:\d\d/)) { return 1; } else { $timeentry->delete(0, "end"); Tkx::tk___messageBox( -parent => $mw, -title => "Incorrect Time Format", -icon => "info", -message => "Incorrect Time Format", -detail => "Please enter the time in HH:MM format, i.e. 12:30.", ); return 0; } } #select directory from operations--this runs when drag and drop or from external script sub selectFileSystem { my $fname = shift; my @name = Tkx::SplitList($fname); my $path = join "", @name; $folder = $path; if (-f $folder) { $listbox->delete(0, "end"); @filelist = (); push(@filelist, $folder); foreach (@filelist) { $listbox->insert("end", "$_"); } } if (-d $folder) { $listbox->delete(0, "end"); @filelist = <"$folder/*">; foreach (@filelist) { $listbox->insert("end", "$_"); } return $folder; } return $folder; } |
︙ | ︙ | |||
1163 1164 1165 1166 1167 1168 1169 | &Tkx::machelp__userhelp; } #initialize the app sub startUp { $appname = 'FileMorph'; | | | | 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 | &Tkx::machelp__userhelp; } #initialize the app sub startUp { $appname = 'FileMorph'; $appversion = '2.2'; &Tkx::machelp__setAppName($appname, $appversion); &Tkx::softwareupdate__setAppName($appname); &Tkx::softwareupdate__setVersion($appname, $appversion); #check for app support directory our $prefdir = Tkx::xplat__appconfig("FileMorph"); mkdir $prefdir unless (-d $prefdir); } #check version of installed software sub checkUpdate { &Tkx::softwareupdate__setIcon($icon); &Tkx::softwareupdate__checkingForUpdates; my $url = "http://www.codebykevin.com/filemorph.ini"; my $tmp = new File::Temp(UNLINK => 1, SUFFIX => ".ini"); my $parser = get($url); print $tmp $parser; close $tmp; my $cfg = Config::IniFiles->new( -file => $tmp, |
︙ | ︙ | |||
1241 1242 1243 1244 1245 1246 1247 | } #-----AppleScript handlers------$ if ($IS_AQUA) { sub createAppleScriptCommands { | | | | | | | | | | | | | | | | | | | 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 | } #-----AppleScript handlers------$ if ($IS_AQUA) { sub createAppleScriptCommands { Tkx::aem__installeventhandler("CoKv", "fMdr", \&scriptSetDir); Tkx::aem__installeventhandler("CoKv", "fMfl", \&scriptSetFile); Tkx::aem__installeventhandler("CoKv", "oExt", \&scriptOldExt); Tkx::aem__installeventhandler("CoKv", "nExt", \&scriptNewExt); Tkx::aem__installeventhandler("CoKv", "rExt", \&scriptChangeExt); Tkx::aem__installeventhandler("CoKv", "oTxt", \&scriptOldText); Tkx::aem__installeventhandler("CoKv", "nTxt", \&scriptNewText); Tkx::aem__installeventhandler("CoKv", "cTxt", \&scriptChangeText); Tkx::aem__installeventhandler("CoKv", "beTx", \&scriptAddedText); Tkx::aem__installeventhandler("CoKv", "afTx", \&scriptPrefixOrSuffix); Tkx::aem__installeventhandler("CoKv", "adTx", \&scriptAddText); Tkx::aem__installeventhandler("CoKv", "tmDa", \&scriptSetTime); Tkx::aem__installeventhandler("CoKv", "cTme", \&scriptFileTime); } } sub scriptSetDir { my $path = shift; #join with spaces foreach (@_) { $path = $_ . ' '; } $folder = $path; if (-f $folder) { $listbox->delete(0, "end"); @filelist = (); push(@filelist, $folder); foreach (@filelist) { $listbox->insert("end", "$_"); } } if (-d $folder) { $listbox->delete(0, "end"); @filelist = <"$folder/*">; foreach (@filelist) { $listbox->insert("end", "$_"); } return $folder; } return $folder; } |
︙ | ︙ | |||
1330 1331 1332 1333 1334 1335 1336 | &addString; } sub scriptSetTime { my $time; $time = shift; my @datearray = split(/\//, $time); | | | 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 | &addString; } sub scriptSetTime { my $time; $time = shift; my @datearray = split(/\//, $time); $modtime =timelocal("00", "00", "00", $datearray[1], ($datearray[0] - 1), $datearray[2]); } sub scriptFileTime { return if (scalar(@filelist) == 0); foreach (@filelist) { utime $modtime, $modtime, $_; } } #------end of subroutines--------- |
Added filemorph.sed.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | [Version] Class=IEXPRESS SEDVersion=3 [Options] PackagePurpose=InstallApp ShowInstallProgramWindow=0 HideExtractAnimation=0 UseLongFileName=1 InsideCompressed=0 CAB_FixedSize=0 CAB_ResvCodeSigning=0 RebootMode=N InstallPrompt=%InstallPrompt% DisplayLicense=%DisplayLicense% FinishMessage=%FinishMessage% TargetName=%TargetName% FriendlyName=%FriendlyName% AppLaunched=%AppLaunched% PostInstallCmd=%PostInstallCmd% AdminQuietInstCmd=%AdminQuietInstCmd% UserQuietInstCmd=%UserQuietInstCmd% SourceFiles=SourceFiles [Strings] InstallPrompt=Would you like to install FileMorph and its supporting files? DisplayLicense=mit.txt FinishMessage=Thank you for installing FileMorph. To run the program, please select it from the start menu. TargetName=FileMorph_Setup.exe FriendlyName=FileMorph_Setup AppLaunched=cmd /c install.bat PostInstallCmd=<None> AdminQuietInstCmd= UserQuietInstCmd= FILE2="FileMorph.exe" FILE0="uninstall.bat" FILE1="install.bat" [SourceFiles] SourceFiles0=C:\Users\kevin\Desktop\filemorph [SourceFiles0] %FILE0%= %FILE1%= %FILE2%= |
Added makeinstaller.bat.
> > > > > > > > | 1 2 3 4 5 6 7 8 | iexpress /n filemorph.sed set VERSION="2.4.0.0 (%date%)" set FILEDESCR=/s desc "Installer for FileMorph" set COMPINFO=/s company "WordTech Communications LLC" /s (c) "(c) 2015" set PRODINFO=/s product "FileMorph" /pv "2.4.0.0" "C:\Users\kevin\Desktop\verpatch.exe" /va FileMorph_Setup.exe %VERSION% %FILEDESCR% %COMPINFO% %PRODINFO% |
Changes to scriptlibs/machelp/help.tcl.
︙ | ︙ | |||
120 121 122 123 124 125 126 | if {[tk windowingsystem] eq "win32"} { source [file join $library win_images.tcl] } if {[tk windowingsystem] eq "aqua"} { source [file join $library images.tcl] | < | 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | if {[tk windowingsystem] eq "win32"} { source [file join $library win_images.tcl] } if {[tk windowingsystem] eq "aqua"} { source [file join $library images.tcl] } # # ::Help::AddPage -- Adds another page to the help system |
︙ | ︙ |
Changes to scriptlibs/machelp/help.txt.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | title: FileMorph User Help alias: TOC - [Introduction to FileMorph] - [Installing FileMorph] - [Using FileMorph] - [Scripting FileMorph] - [Window Menu] - [Help] - [Acknowledgments] - [FileMorph Version History] ------------------- title: Introduction to FileMorph alias: Introduction FileMorph is a simple but powerful application for searching and replacing text in multiple files, quickly and easily. Using an elegant, intuitive interface, FileMorph allows you to select a directory, specify which files will be modified, enter a new filename, and see the changes instantly. | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | title: FileMorph User Help alias: TOC - [Introduction to FileMorph] - [Installing FileMorph] - [Using FileMorph] - [Scripting FileMorph] - [Window Menu] - [Help] - [Acknowledgments] - [FileMorph Version History] - [License] ------------------- title: Introduction to FileMorph alias: Introduction FileMorph is a simple but powerful application for searching and replacing text in multiple files, quickly and easily. Using an elegant, intuitive interface, FileMorph allows you to select a directory, specify which files will be modified, enter a new filename, and see the changes instantly. |
︙ | ︙ | |||
168 169 170 171 172 173 174 | '''1.1 (November 15, 2012):''' * Improved error handling. * Compatibility with Mac sandboxing requirements. '''1.0 (August 15, 2012):''' * Initial commercial release. | > > > > > > > > > > > > > > > > | 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | '''1.1 (November 15, 2012):''' * Improved error handling. * Compatibility with Mac sandboxing requirements. '''1.0 (August 15, 2012):''' * Initial commercial release. ------------------- title: License alias: License '''The MIT License (MIT)''' FileMoroph source code: [http://fossil.codebykevin.com/fossil.cgi/filemorph/] Copyright (c) 2015 WordTech Communications LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |