소스 검색

UPD: Rename Pinyin table file

Alexander Koblov 4 년 전
부모
커밋
a13ed438d8
5개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  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 pixmaps.txt                  $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
 

+ 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 pixmaps.txt                  $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
 # 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 pixmaps.txt                    %DC_INSTALL_DIR%\
 copy multiarc.ini                   %DC_INSTALL_DIR%\
-copy tcmatch.tbl                    %DC_INSTALL_DIR%\
+copy pinyin.tbl                     %DC_INSTALL_DIR%\
 rem Copy libraries
 copy *.dll                          %DC_INSTALL_DIR%\
 

+ 0 - 0
tcmatch.tbl → pinyin.tbl


+ 1 - 1
src/uPinyin.pas

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