Browse Source

UPD: Rename Pinyin table file

Alexander Koblov 3 years ago
parent
commit
a13ed438d8
5 changed files with 4 additions and 4 deletions
  1. 1 1
      install/darwin/install.sh
  2. 1 1
      install/linux/install.sh
  3. 1 1
      install/windows/install.bat
  4. 0 0
      pinyin.tbl
  5. 1 1
      src/uPinyin.pas

+ 1 - 1
install/darwin/install.sh

@@ -37,7 +37,7 @@ cp -a doublecmd.zdli               $DC_INSTALL_DIR/
 cp -a doublecmd.ext.example        $DC_INSTALL_DIR/
 cp -a doublecmd.ext.example        $DC_INSTALL_DIR/
 cp -a pixmaps.txt                  $DC_INSTALL_DIR/
 cp -a pixmaps.txt                  $DC_INSTALL_DIR/
 cp -a multiarc.ini                 $DC_INSTALL_DIR/
 cp -a multiarc.ini                 $DC_INSTALL_DIR/
-cp -a tcmatch.tbl                  $DC_INSTALL_DIR/
+cp -a pinyin.tbl                   $DC_INSTALL_DIR/
 
 
 # Copy plugins
 # Copy plugins
 
 

+ 1 - 1
install/linux/install.sh

@@ -75,7 +75,7 @@ cp -a doublecmd.zdli               $DC_INSTALL_DIR/
 cp -a doublecmd.ext.example        $DC_INSTALL_DIR/
 cp -a doublecmd.ext.example        $DC_INSTALL_DIR/
 cp -a pixmaps.txt                  $DC_INSTALL_DIR/
 cp -a pixmaps.txt                  $DC_INSTALL_DIR/
 cp -a multiarc.ini                 $DC_INSTALL_DIR/
 cp -a multiarc.ini                 $DC_INSTALL_DIR/
-cp -a tcmatch.tbl                  $DC_INSTALL_DIR/
+cp -a pinyin.tbl                   $DC_INSTALL_DIR/
 
 
 # copy plugins
 # copy plugins
 # WCX
 # WCX

+ 1 - 1
install/windows/install.bat

@@ -39,7 +39,7 @@ copy doublecmd.zdli                 %DC_INSTALL_DIR%\
 copy doublecmd.ext.example          %DC_INSTALL_DIR%\
 copy doublecmd.ext.example          %DC_INSTALL_DIR%\
 copy pixmaps.txt                    %DC_INSTALL_DIR%\
 copy pixmaps.txt                    %DC_INSTALL_DIR%\
 copy multiarc.ini                   %DC_INSTALL_DIR%\
 copy multiarc.ini                   %DC_INSTALL_DIR%\
-copy tcmatch.tbl                    %DC_INSTALL_DIR%\
+copy pinyin.tbl                     %DC_INSTALL_DIR%\
 rem Copy libraries
 rem Copy libraries
 copy *.dll                          %DC_INSTALL_DIR%\
 copy *.dll                          %DC_INSTALL_DIR%\
 
 

+ 0 - 0
tcmatch.tbl → pinyin.tbl


+ 1 - 1
src/uPinyin.pas

@@ -20,7 +20,7 @@ var
   f: THandle;
   f: THandle;
   tblpath: String;
   tblpath: String;
 begin
 begin
-  tblpath := ExtractFilePath(Paramstr(0)) + 'tcmatch.tbl';
+  tblpath := ExtractFilePath(Paramstr(0)) + 'pinyin.tbl';
   if FileExists(tblpath) then
   if FileExists(tblpath) then
   begin
   begin
     f:= FileOpen(tblpath, fmOpenRead or fmShareDenyNone);
     f:= FileOpen(tblpath, fmOpenRead or fmShareDenyNone);