├── .gitignore ├── All.groupproj ├── ColorSet ├── Build.h ├── ColorSet.dpr ├── ColorSet.dproj ├── ColorSetConst.pas ├── ColorSetList.pas ├── ColorSetMain.pas ├── Dcc32.cfg ├── Dcc64.cfg ├── DefApp.inc ├── Doc │ ├── ColorSet_en.lng │ ├── Colors.ini │ ├── Pals │ │ ├── Default_BW.farpal │ │ ├── Default_Blue.farpal │ │ ├── FarAddons │ │ │ ├── Colors_from_Gernichenko.farpal │ │ │ ├── Colors_from_Sadovoj.farpal │ │ │ ├── Colors_from_admin_essp_ru.farpal │ │ │ ├── FARColors242.farpal │ │ │ ├── GreenMile.farpal │ │ │ ├── Rodion_Doroshkevich.farpal │ │ │ ├── VaxColors.farpal │ │ │ ├── black_from_Fonarev.farpal │ │ │ ├── black_from_Myodov.farpal │ │ │ ├── black_from_july.farpal │ │ │ ├── dn_like.farpal │ │ │ ├── hell.farpal │ │ │ └── nc5pal2.farpal │ │ └── Gray.farpal │ └── Readme.txt ├── bld.bat ├── bldver.bat └── fpc.cfg ├── ColumnC0 └── Ver │ ├── Build.h │ ├── DCC32.CFG │ ├── DefApp.inc │ ├── Doc │ └── file_id.diz │ ├── VersionColumn.dpr │ ├── VersionColumn.rc │ ├── VersionColumn_Main.pas │ └── fpc.cfg ├── CompileAll.bat ├── ConsoleControl ├── Build.h ├── ConCtrl.dpr ├── ConCtrl.dproj ├── ConCtrlMain.pas ├── ConCtrlW.rc ├── Dcc32.cfg ├── Dcc64.cfg ├── DefApp.inc ├── Doc │ ├── Aqueducts.pal │ ├── FarManager_Com.pal │ ├── Readme.txt │ ├── Solorized.pal │ ├── Windows95.pal │ └── _Default.pal ├── Doc3 │ ├── ConsoleControl-Macros.fmlua │ ├── ConsoleControl-Macros.lua │ └── ConsoleControl.lua ├── Image │ ├── Sample1.png │ └── Sample2.png ├── bld.bat ├── bldver.bat └── fpc.cfg ├── DlgSelect ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── DlgSelect.dpr ├── DlgSelect.dproj ├── DlgSelect.rc ├── DlgSelectMain.pas ├── Doc │ └── file_id.diz ├── bld.bat ├── bldver.bat └── fpc.cfg ├── EdtFind ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── EdtFind.hlf │ ├── EdtFindEng.lng │ ├── EdtFindRus.lng │ └── History.txt ├── Doc2 │ └── file_id.diz ├── Doc3 │ ├── Edt-Find-Ex.lua │ ├── Edt-Find.lua │ └── file_id.diz ├── EdtFind.dpr ├── EdtFind.dproj ├── EdtFindCtrl.pas ├── EdtFindDlg.pas ├── EdtFindEditor.pas ├── EdtFindFiles.pas ├── EdtFindFilesDlg.pas ├── EdtFindGrep.pas ├── EdtFindHints.pas ├── EdtFindMain.pas ├── EdtFindW.rc ├── EdtFinder.pas ├── EdtReplaceDlg.pas ├── Image │ └── Sample.png ├── bld.bat ├── bldver.bat └── fpc.cfg ├── FarAPI ├── FarColor.pas ├── FarKeys.pas ├── FarKeysW.pas ├── Far_API.pas ├── Plugin.pas ├── Plugin3.pas └── PluginW.pas ├── FarDebug ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── Debug.fml │ ├── FarDebug.hlf │ ├── FarDebug.ini │ ├── FarDebugEng.lng │ ├── History.txt │ ├── Presets.ini │ ├── Readme.txt │ └── file_id.diz ├── DocW │ └── file_id.diz ├── FarDebug.dpr ├── FarDebugA.rc ├── FarDebugAddrsList.pas ├── FarDebugBreakpoints.pas ├── FarDebugCallstack.pas ├── FarDebugConsole.pas ├── FarDebugCtrl.pas ├── FarDebugDisasm.pas ├── FarDebugDlgBase.pas ├── FarDebugEvaluate.pas ├── FarDebugFindAddr.pas ├── FarDebugGDB.pas ├── FarDebugHelp.pas ├── FarDebugIO.pas ├── FarDebugListBase.pas ├── FarDebugMain.pas ├── FarDebugOpenDlg.pas ├── FarDebugPathDlg.pas ├── FarDebugSourcesDlg.pas ├── FarDebugW.rc ├── Image │ ├── Sample1.png │ ├── Sample2.png │ ├── Sample3.png │ ├── Sample4.png │ └── Sample5.png └── fpc.cfg ├── FarFM ├── Build.h ├── Dcc32.cfg ├── Dcc64.cfg ├── DefApp.inc ├── Doc │ ├── FarFMEng.lng │ ├── FarFMRus.lng │ └── Readme.txt ├── Doc3 │ └── Renewal.xml ├── FarFM.dpr ├── FarFM.rc ├── FarFMCalls.pas ├── FarFMCopyDlg.pas ├── FarFMCtrl.pas ├── FarFMFindDlg.pas ├── FarFMFindUrlDlg.pas ├── FarFMLoginDlg.pas ├── FarFMMain.pas ├── FarFmClasses.pas ├── Image │ ├── Sample1.png │ └── Sample2.png └── fpc.cfg ├── FarHints ├── Build.h ├── FarHints.groupproj ├── FarHints │ ├── Address Space.txt │ ├── Build.h │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsEng.lng │ │ ├── FarHintsRus.lng │ │ ├── History.txt │ │ └── Readme.txt │ ├── Doc2 │ │ ├── FarHints.fml │ │ ├── Settings.reg │ │ └── file_id.diz │ ├── Doc3 │ │ ├── FarHints.lua │ │ └── file_id.diz │ ├── FarHints.dpr │ ├── FarHints.dproj │ ├── FarHintsClasses.pas │ ├── FarHintsConst.pas │ ├── FarHintsMain.pas │ ├── FarHintsPlugins.pas │ ├── FarHintsReg.pas │ ├── FarHintsStdPlugin.pas │ ├── FarHintsUtils.pas │ ├── FarHintsW.rc │ ├── FarHintsWin.pas │ ├── MSForms.pas │ ├── _bld.bat │ └── fpc.cfg ├── FarHintsAPI.pas ├── FarHintsAll.bpg ├── FarHintsAll.groupproj ├── FarHintsCursors │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsCursorsEng.lng │ │ ├── FarHintsCursorsRus.lng │ │ └── Settings.reg │ ├── FarHintsCursors.dpr │ ├── FarHintsCursors.dproj │ ├── FarHintsCursors.rc │ ├── FarHintsCursorsMain.pas │ ├── _bld.bat │ └── fpc.cfg ├── FarHintsDFM │ ├── DefApp.inc │ ├── FarHintsDFM.dpr │ └── FarHintsDFMMain.pas ├── FarHintsFolders │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsFoldersEng.lng │ │ └── FarHintsFoldersRus.lng │ ├── FarHintsFolders.dpr │ ├── FarHintsFolders.dproj │ ├── FarHintsFolders.rc │ ├── FarHintsFoldersMain.pas │ ├── _bld.bat │ └── fpc.cfg ├── FarHintsIcons │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── FarHintsIcons.dpr │ ├── FarHintsIcons.dproj │ ├── FarHintsIcons.rc │ ├── FarHintsIconsMain.pas │ └── fpc.cfg ├── FarHintsImage │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsImageEng.lng │ │ ├── FarHintsImageRus.lng │ │ └── Settings.reg │ ├── FarHintsImage.dpr │ ├── FarHintsImage.dproj │ ├── FarHintsImage.rc │ ├── FarHintsImageMain.pas │ ├── FarHintsImageUtil.pas │ ├── _bld.bat │ └── fpc.cfg ├── FarHintsMP3 │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsMP3Eng.lng │ │ └── FarHintsMP3Rus.lng │ ├── FarHintsMP3.dpr │ ├── FarHintsMP3.dproj │ ├── FarHintsMP3.rc │ ├── FarHintsMP3Main.pas │ ├── FarHintsTags.pas │ ├── _bld.bat │ └── fpc.cfg ├── FarHintsProcess │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsProcessEng.lng │ │ └── FarHintsProcessRus.lng │ ├── FarHintsProcess.dpr │ ├── FarHintsProcess.dproj │ ├── FarHintsProcess.rc │ ├── FarHintsProcessMain.pas │ ├── _bld.bat │ └── fpc.cfg ├── FarHintsVerInfo │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── FarHintsVerInfoEng.lng │ │ └── FarHintsVerInfoRus.lng │ ├── FarHintsVerInfo.dpr │ ├── FarHintsVerInfo.dproj │ ├── FarHintsVerInfo.drc │ ├── FarHintsVerInfo.rc │ ├── FarHintsVerInfoMain.pas │ ├── _bld.bat │ └── fpc.cfg ├── bld.bat ├── bldver.bat └── fpc.cfg ├── FarLib ├── FarColorDlg.pas ├── FarConMan.pas ├── FarConfig.pas ├── FarCtrl.pas ├── FarDlg.pas ├── FarDraw.pas ├── FarEdit.pas ├── FarGrid.pas ├── FarListDlg.pas ├── FarMatch.pas ├── FarMenu.pas └── FarPlug.pas ├── FarTabs ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── History.txt │ ├── PanelTabs.hlf │ ├── PanelTabsEng.lng │ ├── PanelTabsRus.lng │ └── file_id.diz ├── Doc2 │ ├── PanelTabs.fml │ └── Settings.reg ├── Doc3 │ └── PanelTabs.fmlua ├── EditActionDlg.pas ├── EditTabDlg.pas ├── Image │ └── Sample.png ├── PanelTabs.dpr ├── PanelTabs.dproj ├── PanelTabsA.rc ├── PanelTabsClasses.pas ├── PanelTabsCtrl.pas ├── PanelTabsMain.pas ├── PanelTabsOptions.pas ├── PanelTabsW.rc ├── TabActionsList.pas ├── TabListDlg.pas ├── bld.bat ├── bldver.bat └── fpc.cfg ├── FastWheel ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── FastWheel.lng │ └── file_id.diz ├── Doc2 │ ├── Settings.reg │ ├── Setup.reg │ └── SetupShell.reg ├── Doc3 │ └── FastScroll.lua ├── FastWheel.dpr ├── FastWheel.dproj ├── FastWheel.rc ├── FastWheelMain.pas ├── bld.bat ├── bldver.bat └── fpc.cfg ├── FontMan ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── FontMan.hlf │ ├── FontManEng.lng │ ├── FontManRus.lng │ ├── Readme.txt │ ├── Samples.ini │ └── file_id.diz ├── DocW │ └── file_id.diz ├── FontMan.dpr ├── FontManA.rc ├── FontManW.rc ├── FontsClasses.pas ├── FontsConfig.pas ├── FontsCopyDlg.pas ├── FontsCtrl.pas ├── FontsHints.pas ├── FontsMain.pas ├── FontsTTF.pas └── fpc.cfg ├── GitShell ├── Build.h ├── Dcc32.cfg ├── Dcc64.cfg ├── DefApp.inc ├── Doc │ ├── GitShell.hlf │ ├── GitShell_en.lng │ ├── GitShell_ru.lng │ └── Readme.txt ├── GitLibAPI.pas ├── GitShell.dpr ├── GitShell.dproj ├── GitShell.rc ├── GitShellBranches.pas ├── GitShellClasses.pas ├── GitShellCommit.pas ├── GitShellCommitDlg.pas ├── GitShellCtrl.pas ├── GitShellHistory.pas ├── GitShellInfo.pas ├── GitShellMain.pas ├── Lang.inc ├── Lang.templ ├── LngMake.bat ├── bld.bat └── bldver.bat ├── LngMake.bat ├── MacroLib ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── Colorer │ │ ├── MacroLib.hrc │ │ ├── MacroLibLua.hrc │ │ └── Schemes.hrc │ ├── History.txt │ ├── MacroLib.hlf │ ├── MacroLibEng.lng │ ├── MacroLibRus.lng │ ├── Readme.txt │ └── file_id.diz ├── Doc3 │ ├── MacroLib.fmlua │ └── MacroLib.lua ├── Image │ ├── Sample.png │ └── Sample2.png ├── MacroLib.dpr ├── MacroLib.dproj ├── MacroLib.rc ├── MacroLibClasses.pas ├── MacroLibConst.pas ├── MacroLibHints.pas ├── MacroLibMain.pas ├── MacroListDlg.pas ├── MacroParser.pas ├── bld.bat ├── bldver.bat └── fpc.cfg ├── MixLib ├── BD5 │ └── MixErrors.inc ├── BDXE │ └── MixErrors.inc ├── Defines.inc ├── FPC │ └── MixErrors.inc ├── MSWinAPI.pas ├── MixCheck.pas ├── MixClasses.pas ├── MixConsts.pas ├── MixCrc.pas ├── MixDebug.pas ├── MixErrors.pas ├── MixFormat.pas ├── MixMemCheck.pas ├── MixMemWin.pas ├── MixStream.pas ├── MixStrings.pas ├── MixTypes.pas ├── MixUtils.pas ├── MixWin.pas ├── MixWinUtils.pas ├── Win │ ├── ActiveX.pas │ ├── CommCtrl.pas │ ├── CommDlg.pas │ ├── DXTypes.pas │ ├── Direct3D9.pas │ ├── DirectDraw.pas │ ├── DirectShow9.pas │ ├── DirectSound.pas │ ├── Evr.pas │ ├── GDIPAPI.pas │ ├── GDIPOBJ.pas │ ├── MFIdl.pas │ ├── MFObjects.pas │ ├── MFTransform.pas │ ├── MMSystem.pas │ ├── MSXML.pas │ ├── Messages.pas │ ├── MultiMon.pas │ ├── ShDocVw.pas │ ├── ShellAPI.pas │ ├── ShlObj.pas │ ├── WinInet.pas │ ├── Wincodec.pas │ └── Windows.pas └── fpc.cfg ├── MoreHistory ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── History.txt │ ├── MoreHistory.hlf │ ├── MoreHistoryEng.lng │ ├── MoreHistoryRus.lng │ └── Readme.txt ├── Doc2 │ ├── History.fml │ ├── Settings.reg │ └── file_id.diz ├── Doc3 │ ├── History.fml │ ├── History.fmlua │ ├── MoreHistory.lua │ └── file_id.diz ├── Image │ └── Sample.png ├── MoreHistory.dpr ├── MoreHistory.dproj ├── MoreHistoryA.rc ├── MoreHistoryClasses.pas ├── MoreHistoryCmdDlg.pas ├── MoreHistoryCtrl.pas ├── MoreHistoryDlg.pas ├── MoreHistoryEdtDlg.pas ├── MoreHistoryHints.pas ├── MoreHistoryListBase.pas ├── MoreHistoryMain.pas ├── MoreHistoryOptionsDlg.pas ├── MoreHistoryW.rc ├── bld.bat ├── bldver.bat └── fpc.cfg ├── Noisy ├── Build.h ├── GUI │ ├── Buttons.bmp │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Note1.ico │ ├── WinNoisy.dpr │ ├── WinNoisy.dproj │ ├── WinNoisyCtrl.pas │ ├── WinNoisyMain.pas │ ├── WinNoisyPlaylist.pas │ ├── WinNoisyW.rc │ ├── XPTHEME.BIN │ ├── _bld.bat │ └── fpc.cfg ├── Lib │ ├── Bass.pas │ ├── NoisyConsts.pas │ ├── NoisyCtrl.pas │ └── NoisyUtil.pas ├── NoisyGroup.groupproj ├── Player │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Noisy.dpr │ ├── Noisy.dproj │ ├── NoisyW.rc │ ├── Note.ico │ ├── Note1.ico │ ├── NotePause.ico │ ├── NotePlay.ico │ ├── NoteStop.ico │ ├── PlayerHist.pas │ ├── PlayerMain.pas │ ├── PlayerMidi.pas │ ├── PlayerReg.pas │ ├── PlayerTags.pas │ ├── PlayerWin.pas │ ├── XPTHEME.BIN │ ├── _bld.bat │ └── fpc.cfg ├── Plugin │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── History.txt │ │ ├── Hotkeys.reg │ │ ├── Noisy.fmlua │ │ ├── Noisy.lua │ │ ├── NoisyCmd.txt │ │ ├── NoisyEng.lng │ │ ├── NoisyEng.mnu │ │ ├── NoisyRus.hlf │ │ ├── NoisyRus.lng │ │ ├── NoisyRus.mnu │ │ ├── Readme.txt │ │ ├── Settings.reg │ │ └── file_id.diz │ ├── FarPlayCtrl.pas │ ├── FarPlayInfoDlg.pas │ ├── FarPlayMain.pas │ ├── FarPlayPlaylistDlg.pas │ ├── FarPlayReg.pas │ ├── NoisyFar.dpr │ ├── NoisyFar.dproj │ ├── NoisyFar.rc │ ├── _bld.bat │ └── fpc.cfg ├── bld.bat └── bldver.bat ├── PathSync ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ └── Readme.txt ├── PathSync.dpr ├── PathSync.rc ├── PathSyncMain.pas └── fpc.cfg ├── PicViewGDI ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── GDIImageUtil.pas ├── GDIPlus.dpr ├── GDIPlus.rc ├── GDIPlus.txt ├── GDIPlusMain.pas ├── PVApi.pas └── fpc.cfg ├── PlugMenu ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── History.txt │ ├── PlugMenuEng.hlf │ ├── PlugMenuEng.lng │ ├── PlugMenuRus.hlf │ ├── PlugMenuRus.lng │ └── Readme.txt ├── Doc2 │ ├── Setup.reg │ ├── Uninstall.reg │ └── file_id.diz ├── Doc3 │ ├── PlugMenu.fmlua │ └── file_id.diz ├── PlugEditDlg.pas ├── PlugInfoDlg.pas ├── PlugListDlg.pas ├── PlugLoadDlg.pas ├── PlugMenu.dpr ├── PlugMenu.dproj ├── PlugMenuCtrl.pas ├── PlugMenuHints.pas ├── PlugMenuMain.pas ├── PlugMenuPlugs.pas ├── PlugMenuW.rc ├── PlugRing.pas ├── bld.bat ├── bldver.bat └── fpc.cfg ├── Review ├── Build.h ├── Review │ ├── Buttons.bmp │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── Doc │ │ ├── Background.bmp │ │ ├── Readme.txt │ │ ├── Review-Macros.lua │ │ ├── Review.hlf │ │ ├── Review.lua │ │ ├── ReviewEng.lng │ │ ├── ReviewRus.lng │ │ └── Review_NextDir.lua │ ├── GDIImageUtil.pas │ ├── Image │ │ ├── Sample.png │ │ ├── Sample2.png │ │ └── Sample3.png │ ├── Lang.inc │ ├── Lang.templ │ ├── LngMake.bat │ ├── PVApi.pas │ ├── Review.dpr │ ├── Review.dproj │ ├── ReviewClasses.pas │ ├── ReviewConst.pas │ ├── ReviewDecoders.pas │ ├── ReviewDlgDecoder.pas │ ├── ReviewDlgDecoders.pas │ ├── ReviewDlgGeneral.pas │ ├── ReviewDlgSaveAs.pas │ ├── ReviewDlgSlideShow.pas │ ├── ReviewDlgThumb.pas │ ├── ReviewGDI.pas │ ├── ReviewGDIPlus.pas │ ├── ReviewJPEG.pas │ ├── ReviewMain.pas │ ├── ReviewTags.pas │ ├── ReviewThumbs.pas │ ├── ReviewVideo.pas │ ├── ReviewW.rc │ ├── _bld.bat │ ├── fpc.cfg │ └── libJPEG.pas ├── ReviewGFL │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── GFL.dpr │ ├── GFL.dproj │ ├── GFL.rc │ ├── GFLMain.pas │ ├── LibGFL.pas │ ├── _bld.bat │ └── fpc.cfg ├── ReviewGroup.groupproj ├── ReviewMF │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── MFVideo.dpr │ ├── MFVideo.dproj │ ├── MFVideoMain.pas │ ├── MFVideoW.rc │ ├── MFVideo_Ses.pas │ ├── _bld.bat │ └── fpc.cfg ├── ReviewSVG │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── SVG.dpr │ ├── SVG.dproj │ ├── SVG.rc │ ├── SVGMain.pas │ └── _bld.bat ├── ReviewVideo │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DXVideo.dpr │ ├── DXVideo.dproj │ ├── DXVideoMain.pas │ ├── DXVideoW.rc │ ├── DXVideo_Api.pas │ ├── DefApp.inc │ ├── _bld.bat │ └── fpc.cfg ├── ReviewWIC │ ├── DCC32.CFG │ ├── DCC64.CFG │ ├── DefApp.inc │ ├── WIC.dpr │ ├── WIC.dproj │ ├── WIC.rc │ ├── WICMain.pas │ ├── _bld.bat │ └── fpc.cfg ├── bld.bat └── bldver.bat ├── SameFolder ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── History.txt │ ├── SameFolderEng.lng │ ├── SameFolderRus.lng │ └── file_id.diz ├── Doc2 │ └── Setup.reg ├── Doc3 │ └── SameFolder.fmlua ├── SameFolder.dpr ├── SameFolder.rc ├── SameFolderMain.pas ├── bld.bat ├── bldver.bat └── fpc.cfg ├── TestPlugin1 ├── Dcc32.cfg ├── Dcc64.cfg ├── DefApp.inc ├── Doc │ ├── HelloWorld_en.hlf │ ├── HelloWorld_en.lng │ ├── HelloWorld_ru.hlf │ └── HelloWorld_ru.lng ├── FPC.cfg ├── HelloWorld.dpr ├── HelloWorld.dproj ├── bld.bat └── bldver.bat ├── TestPlugin2 ├── ApiDemo.dpr ├── ApiDemo.dproj ├── ApiDemoMain.pas ├── Dcc32.cfg ├── Dcc64.cfg ├── DefApp.inc ├── Doc │ ├── ApiDemo_en.lng │ └── ApiDemo_ru.lng ├── bld.bat └── bldver.bat ├── TraceLib ├── DCC32.CFG ├── DefApp.inc ├── MSTrace.pas ├── MSTraceLib.dpr ├── MSTraceLibMain.pas ├── _fpc.bat ├── _fpc64.bat └── fpc.cfg ├── UCharMap ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── GroupsList.txt │ ├── History.txt │ ├── UCharMap.hlf │ ├── UCharMapEng.lng │ ├── UCharMapRus.lng │ └── file_id.diz ├── Image │ └── Sample.png ├── UCharListBase.pas ├── UCharMap.dpr ├── UCharMap.dproj ├── UCharMapCharsDlg.pas ├── UCharMapCtrl.pas ├── UCharMapDlg.pas ├── UCharMapFontsDlg.pas ├── UCharMapGroupsDlg.pas ├── UCharMapHints.pas ├── UCharMapMain.pas ├── UCharMapW.rc ├── bld.bat ├── bldver.bat └── fpc.cfg ├── VisualCompare ├── Build.h ├── DCC32.CFG ├── DCC64.CFG ├── DefApp.inc ├── Doc │ ├── History.txt │ ├── VisComp.hlf │ ├── VisCompEng.lng │ ├── VisCompRus.lng │ └── file_id.diz ├── Doc3 │ ├── Compare.fmlua │ └── Compare.lua ├── Image │ ├── Sample1.png │ └── Sample2.png ├── Lang.inc ├── Lang.templ ├── LngMake.bat ├── VisComp.dpr ├── VisComp.dproj ├── VisCompA.rc ├── VisCompAPI.pas ├── VisCompCtrl.pas ├── VisCompFiles.pas ├── VisCompFilesDlg.pas ├── VisCompIntegration.pas ├── VisCompMain.pas ├── VisCompOpers.pas ├── VisCompOptionsDlg.pas ├── VisCompPromptDlg.pas ├── VisCompTexts.pas ├── VisCompTextsDlg.pas ├── VisCompW.rc ├── bld.bat ├── bldver.bat └── fpc.cfg ├── _bld.bat ├── _bldver.bat └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /All.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/All.groupproj -------------------------------------------------------------------------------- /ColorSet/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Build.h -------------------------------------------------------------------------------- /ColorSet/ColorSet.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/ColorSet.dpr -------------------------------------------------------------------------------- /ColorSet/ColorSet.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/ColorSet.dproj -------------------------------------------------------------------------------- /ColorSet/ColorSetConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/ColorSetConst.pas -------------------------------------------------------------------------------- /ColorSet/ColorSetList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/ColorSetList.pas -------------------------------------------------------------------------------- /ColorSet/ColorSetMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/ColorSetMain.pas -------------------------------------------------------------------------------- /ColorSet/Dcc32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Dcc32.cfg -------------------------------------------------------------------------------- /ColorSet/Dcc64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Dcc64.cfg -------------------------------------------------------------------------------- /ColorSet/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/DefApp.inc -------------------------------------------------------------------------------- /ColorSet/Doc/ColorSet_en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/ColorSet_en.lng -------------------------------------------------------------------------------- /ColorSet/Doc/Colors.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Colors.ini -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/Default_BW.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/Default_BW.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/Default_Blue.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/Default_Blue.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/Colors_from_Gernichenko.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/Colors_from_Gernichenko.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/Colors_from_Sadovoj.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/Colors_from_Sadovoj.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/Colors_from_admin_essp_ru.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/Colors_from_admin_essp_ru.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/FARColors242.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/FARColors242.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/GreenMile.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/GreenMile.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/Rodion_Doroshkevich.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/Rodion_Doroshkevich.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/VaxColors.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/VaxColors.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/black_from_Fonarev.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/black_from_Fonarev.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/black_from_Myodov.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/black_from_Myodov.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/black_from_july.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/black_from_july.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/dn_like.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/dn_like.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/hell.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/hell.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/FarAddons/nc5pal2.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/FarAddons/nc5pal2.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Pals/Gray.farpal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Pals/Gray.farpal -------------------------------------------------------------------------------- /ColorSet/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/Doc/Readme.txt -------------------------------------------------------------------------------- /ColorSet/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat ColorSet %* 3 | -------------------------------------------------------------------------------- /ColorSet/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat ColorSet 3 | -------------------------------------------------------------------------------- /ColorSet/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColorSet/fpc.cfg -------------------------------------------------------------------------------- /ColumnC0/Ver/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/Build.h -------------------------------------------------------------------------------- /ColumnC0/Ver/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/DCC32.CFG -------------------------------------------------------------------------------- /ColumnC0/Ver/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/DefApp.inc -------------------------------------------------------------------------------- /ColumnC0/Ver/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/Doc/file_id.diz -------------------------------------------------------------------------------- /ColumnC0/Ver/VersionColumn.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/VersionColumn.dpr -------------------------------------------------------------------------------- /ColumnC0/Ver/VersionColumn.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/VersionColumn.rc -------------------------------------------------------------------------------- /ColumnC0/Ver/VersionColumn_Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/VersionColumn_Main.pas -------------------------------------------------------------------------------- /ColumnC0/Ver/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ColumnC0/Ver/fpc.cfg -------------------------------------------------------------------------------- /CompileAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/CompileAll.bat -------------------------------------------------------------------------------- /ConsoleControl/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Build.h -------------------------------------------------------------------------------- /ConsoleControl/ConCtrl.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/ConCtrl.dpr -------------------------------------------------------------------------------- /ConsoleControl/ConCtrl.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/ConCtrl.dproj -------------------------------------------------------------------------------- /ConsoleControl/ConCtrlMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/ConCtrlMain.pas -------------------------------------------------------------------------------- /ConsoleControl/ConCtrlW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/ConCtrlW.rc -------------------------------------------------------------------------------- /ConsoleControl/Dcc32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Dcc32.cfg -------------------------------------------------------------------------------- /ConsoleControl/Dcc64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Dcc64.cfg -------------------------------------------------------------------------------- /ConsoleControl/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/DefApp.inc -------------------------------------------------------------------------------- /ConsoleControl/Doc/Aqueducts.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc/Aqueducts.pal -------------------------------------------------------------------------------- /ConsoleControl/Doc/FarManager_Com.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc/FarManager_Com.pal -------------------------------------------------------------------------------- /ConsoleControl/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc/Readme.txt -------------------------------------------------------------------------------- /ConsoleControl/Doc/Solorized.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc/Solorized.pal -------------------------------------------------------------------------------- /ConsoleControl/Doc/Windows95.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc/Windows95.pal -------------------------------------------------------------------------------- /ConsoleControl/Doc/_Default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc/_Default.pal -------------------------------------------------------------------------------- /ConsoleControl/Doc3/ConsoleControl-Macros.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc3/ConsoleControl-Macros.fmlua -------------------------------------------------------------------------------- /ConsoleControl/Doc3/ConsoleControl-Macros.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc3/ConsoleControl-Macros.lua -------------------------------------------------------------------------------- /ConsoleControl/Doc3/ConsoleControl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Doc3/ConsoleControl.lua -------------------------------------------------------------------------------- /ConsoleControl/Image/Sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Image/Sample1.png -------------------------------------------------------------------------------- /ConsoleControl/Image/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/Image/Sample2.png -------------------------------------------------------------------------------- /ConsoleControl/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat ConCtrl %* 3 | -------------------------------------------------------------------------------- /ConsoleControl/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat ConCtrl 3 | -------------------------------------------------------------------------------- /ConsoleControl/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/ConsoleControl/fpc.cfg -------------------------------------------------------------------------------- /DlgSelect/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/Build.h -------------------------------------------------------------------------------- /DlgSelect/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DCC32.CFG -------------------------------------------------------------------------------- /DlgSelect/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DCC64.CFG -------------------------------------------------------------------------------- /DlgSelect/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DefApp.inc -------------------------------------------------------------------------------- /DlgSelect/DlgSelect.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DlgSelect.dpr -------------------------------------------------------------------------------- /DlgSelect/DlgSelect.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DlgSelect.dproj -------------------------------------------------------------------------------- /DlgSelect/DlgSelect.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DlgSelect.rc -------------------------------------------------------------------------------- /DlgSelect/DlgSelectMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/DlgSelectMain.pas -------------------------------------------------------------------------------- /DlgSelect/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/Doc/file_id.diz -------------------------------------------------------------------------------- /DlgSelect/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat DlgSelect %* 3 | -------------------------------------------------------------------------------- /DlgSelect/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat DlgSelect 3 | -------------------------------------------------------------------------------- /DlgSelect/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/DlgSelect/fpc.cfg -------------------------------------------------------------------------------- /EdtFind/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Build.h -------------------------------------------------------------------------------- /EdtFind/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/DCC32.CFG -------------------------------------------------------------------------------- /EdtFind/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/DCC64.CFG -------------------------------------------------------------------------------- /EdtFind/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/DefApp.inc -------------------------------------------------------------------------------- /EdtFind/Doc/EdtFind.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc/EdtFind.hlf -------------------------------------------------------------------------------- /EdtFind/Doc/EdtFindEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc/EdtFindEng.lng -------------------------------------------------------------------------------- /EdtFind/Doc/EdtFindRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc/EdtFindRus.lng -------------------------------------------------------------------------------- /EdtFind/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc/History.txt -------------------------------------------------------------------------------- /EdtFind/Doc2/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc2/file_id.diz -------------------------------------------------------------------------------- /EdtFind/Doc3/Edt-Find-Ex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc3/Edt-Find-Ex.lua -------------------------------------------------------------------------------- /EdtFind/Doc3/Edt-Find.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc3/Edt-Find.lua -------------------------------------------------------------------------------- /EdtFind/Doc3/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Doc3/file_id.diz -------------------------------------------------------------------------------- /EdtFind/EdtFind.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFind.dpr -------------------------------------------------------------------------------- /EdtFind/EdtFind.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFind.dproj -------------------------------------------------------------------------------- /EdtFind/EdtFindCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindCtrl.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindDlg.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindEditor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindEditor.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindFiles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindFiles.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindFilesDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindFilesDlg.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindGrep.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindGrep.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindHints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindHints.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindMain.pas -------------------------------------------------------------------------------- /EdtFind/EdtFindW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFindW.rc -------------------------------------------------------------------------------- /EdtFind/EdtFinder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtFinder.pas -------------------------------------------------------------------------------- /EdtFind/EdtReplaceDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/EdtReplaceDlg.pas -------------------------------------------------------------------------------- /EdtFind/Image/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/Image/Sample.png -------------------------------------------------------------------------------- /EdtFind/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat EdtFind %* 3 | -------------------------------------------------------------------------------- /EdtFind/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat EdtFind 3 | -------------------------------------------------------------------------------- /EdtFind/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/EdtFind/fpc.cfg -------------------------------------------------------------------------------- /FarAPI/FarColor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/FarColor.pas -------------------------------------------------------------------------------- /FarAPI/FarKeys.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/FarKeys.pas -------------------------------------------------------------------------------- /FarAPI/FarKeysW.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/FarKeysW.pas -------------------------------------------------------------------------------- /FarAPI/Far_API.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/Far_API.pas -------------------------------------------------------------------------------- /FarAPI/Plugin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/Plugin.pas -------------------------------------------------------------------------------- /FarAPI/Plugin3.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/Plugin3.pas -------------------------------------------------------------------------------- /FarAPI/PluginW.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarAPI/PluginW.pas -------------------------------------------------------------------------------- /FarDebug/Build.h: -------------------------------------------------------------------------------- 1 | #define BuildS "3" -------------------------------------------------------------------------------- /FarDebug/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/DCC32.CFG -------------------------------------------------------------------------------- /FarDebug/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/DCC64.CFG -------------------------------------------------------------------------------- /FarDebug/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/DefApp.inc -------------------------------------------------------------------------------- /FarDebug/Doc/Debug.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/Debug.fml -------------------------------------------------------------------------------- /FarDebug/Doc/FarDebug.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/FarDebug.hlf -------------------------------------------------------------------------------- /FarDebug/Doc/FarDebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/FarDebug.ini -------------------------------------------------------------------------------- /FarDebug/Doc/FarDebugEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/FarDebugEng.lng -------------------------------------------------------------------------------- /FarDebug/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/History.txt -------------------------------------------------------------------------------- /FarDebug/Doc/Presets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/Presets.ini -------------------------------------------------------------------------------- /FarDebug/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/Readme.txt -------------------------------------------------------------------------------- /FarDebug/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Doc/file_id.diz -------------------------------------------------------------------------------- /FarDebug/DocW/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/DocW/file_id.diz -------------------------------------------------------------------------------- /FarDebug/FarDebug.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebug.dpr -------------------------------------------------------------------------------- /FarDebug/FarDebugA.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugA.rc -------------------------------------------------------------------------------- /FarDebug/FarDebugAddrsList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugAddrsList.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugBreakpoints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugBreakpoints.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugCallstack.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugCallstack.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugConsole.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugConsole.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugCtrl.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugDisasm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugDisasm.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugDlgBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugDlgBase.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugEvaluate.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugEvaluate.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugFindAddr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugFindAddr.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugGDB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugGDB.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugHelp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugHelp.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugIO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugIO.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugListBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugListBase.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugMain.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugOpenDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugOpenDlg.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugPathDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugPathDlg.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugSourcesDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugSourcesDlg.pas -------------------------------------------------------------------------------- /FarDebug/FarDebugW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/FarDebugW.rc -------------------------------------------------------------------------------- /FarDebug/Image/Sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Image/Sample1.png -------------------------------------------------------------------------------- /FarDebug/Image/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Image/Sample2.png -------------------------------------------------------------------------------- /FarDebug/Image/Sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Image/Sample3.png -------------------------------------------------------------------------------- /FarDebug/Image/Sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Image/Sample4.png -------------------------------------------------------------------------------- /FarDebug/Image/Sample5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/Image/Sample5.png -------------------------------------------------------------------------------- /FarDebug/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarDebug/fpc.cfg -------------------------------------------------------------------------------- /FarFM/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Build.h -------------------------------------------------------------------------------- /FarFM/Dcc32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Dcc32.cfg -------------------------------------------------------------------------------- /FarFM/Dcc64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Dcc64.cfg -------------------------------------------------------------------------------- /FarFM/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/DefApp.inc -------------------------------------------------------------------------------- /FarFM/Doc/FarFMEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Doc/FarFMEng.lng -------------------------------------------------------------------------------- /FarFM/Doc/FarFMRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Doc/FarFMRus.lng -------------------------------------------------------------------------------- /FarFM/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Doc/Readme.txt -------------------------------------------------------------------------------- /FarFM/Doc3/Renewal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Doc3/Renewal.xml -------------------------------------------------------------------------------- /FarFM/FarFM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFM.dpr -------------------------------------------------------------------------------- /FarFM/FarFM.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFM.rc -------------------------------------------------------------------------------- /FarFM/FarFMCalls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMCalls.pas -------------------------------------------------------------------------------- /FarFM/FarFMCopyDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMCopyDlg.pas -------------------------------------------------------------------------------- /FarFM/FarFMCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMCtrl.pas -------------------------------------------------------------------------------- /FarFM/FarFMFindDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMFindDlg.pas -------------------------------------------------------------------------------- /FarFM/FarFMFindUrlDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMFindUrlDlg.pas -------------------------------------------------------------------------------- /FarFM/FarFMLoginDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMLoginDlg.pas -------------------------------------------------------------------------------- /FarFM/FarFMMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFMMain.pas -------------------------------------------------------------------------------- /FarFM/FarFmClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/FarFmClasses.pas -------------------------------------------------------------------------------- /FarFM/Image/Sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Image/Sample1.png -------------------------------------------------------------------------------- /FarFM/Image/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/Image/Sample2.png -------------------------------------------------------------------------------- /FarFM/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarFM/fpc.cfg -------------------------------------------------------------------------------- /FarHints/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/Build.h -------------------------------------------------------------------------------- /FarHints/FarHints.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints.groupproj -------------------------------------------------------------------------------- /FarHints/FarHints/Address Space.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Address Space.txt -------------------------------------------------------------------------------- /FarHints/FarHints/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Build.h -------------------------------------------------------------------------------- /FarHints/FarHints/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHints/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHints/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHints/Doc/FarHintsEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc/FarHintsEng.lng -------------------------------------------------------------------------------- /FarHints/FarHints/Doc/FarHintsRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc/FarHintsRus.lng -------------------------------------------------------------------------------- /FarHints/FarHints/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc/History.txt -------------------------------------------------------------------------------- /FarHints/FarHints/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc/Readme.txt -------------------------------------------------------------------------------- /FarHints/FarHints/Doc2/FarHints.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc2/FarHints.fml -------------------------------------------------------------------------------- /FarHints/FarHints/Doc2/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc2/Settings.reg -------------------------------------------------------------------------------- /FarHints/FarHints/Doc2/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc2/file_id.diz -------------------------------------------------------------------------------- /FarHints/FarHints/Doc3/FarHints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc3/FarHints.lua -------------------------------------------------------------------------------- /FarHints/FarHints/Doc3/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/Doc3/file_id.diz -------------------------------------------------------------------------------- /FarHints/FarHints/FarHints.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHints.dpr -------------------------------------------------------------------------------- /FarHints/FarHints/FarHints.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHints.dproj -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsClasses.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsConst.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsMain.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsPlugins.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsPlugins.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsReg.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsStdPlugin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsStdPlugin.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsUtils.pas -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsW.rc -------------------------------------------------------------------------------- /FarHints/FarHints/FarHintsWin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/FarHintsWin.pas -------------------------------------------------------------------------------- /FarHints/FarHints/MSForms.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/MSForms.pas -------------------------------------------------------------------------------- /FarHints/FarHints/_bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\..\_bld.bat FarHints %* 3 | -------------------------------------------------------------------------------- /FarHints/FarHints/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHints/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsAPI.pas -------------------------------------------------------------------------------- /FarHints/FarHintsAll.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsAll.bpg -------------------------------------------------------------------------------- /FarHints/FarHintsAll.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsAll.groupproj -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/Doc/FarHintsCursorsEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/Doc/FarHintsCursorsEng.lng -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/Doc/FarHintsCursorsRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/Doc/FarHintsCursorsRus.lng -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/Doc/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/Doc/Settings.reg -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/FarHintsCursors.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/FarHintsCursors.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/FarHintsCursors.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/FarHintsCursors.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/FarHintsCursors.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/FarHintsCursors.rc -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/FarHintsCursorsMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/FarHintsCursorsMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/_bld.bat -------------------------------------------------------------------------------- /FarHints/FarHintsCursors/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsCursors/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsDFM/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsDFM/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsDFM/FarHintsDFM.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsDFM/FarHintsDFM.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsDFM/FarHintsDFMMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsDFM/FarHintsDFMMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/Doc/FarHintsFoldersEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/Doc/FarHintsFoldersEng.lng -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/Doc/FarHintsFoldersRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/Doc/FarHintsFoldersRus.lng -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/FarHintsFolders.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/FarHintsFolders.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/FarHintsFolders.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/FarHintsFolders.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/FarHintsFolders.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/FarHintsFolders.rc -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/FarHintsFoldersMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/FarHintsFoldersMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/_bld.bat -------------------------------------------------------------------------------- /FarHints/FarHintsFolders/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsFolders/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/FarHintsIcons.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/FarHintsIcons.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/FarHintsIcons.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/FarHintsIcons.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/FarHintsIcons.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/FarHintsIcons.rc -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/FarHintsIconsMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/FarHintsIconsMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsIcons/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsIcons/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsImage/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsImage/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsImage/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsImage/Doc/FarHintsImageEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/Doc/FarHintsImageEng.lng -------------------------------------------------------------------------------- /FarHints/FarHintsImage/Doc/FarHintsImageRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/Doc/FarHintsImageRus.lng -------------------------------------------------------------------------------- /FarHints/FarHintsImage/Doc/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/Doc/Settings.reg -------------------------------------------------------------------------------- /FarHints/FarHintsImage/FarHintsImage.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/FarHintsImage.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsImage/FarHintsImage.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/FarHintsImage.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsImage/FarHintsImage.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/FarHintsImage.rc -------------------------------------------------------------------------------- /FarHints/FarHintsImage/FarHintsImageMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/FarHintsImageMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsImage/FarHintsImageUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/FarHintsImageUtil.pas -------------------------------------------------------------------------------- /FarHints/FarHintsImage/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/_bld.bat -------------------------------------------------------------------------------- /FarHints/FarHintsImage/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsImage/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/Doc/FarHintsMP3Eng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/Doc/FarHintsMP3Eng.lng -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/Doc/FarHintsMP3Rus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/Doc/FarHintsMP3Rus.lng -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/FarHintsMP3.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/FarHintsMP3.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/FarHintsMP3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/FarHintsMP3.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/FarHintsMP3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/FarHintsMP3.rc -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/FarHintsMP3Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/FarHintsMP3Main.pas -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/FarHintsTags.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/FarHintsTags.pas -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/_bld.bat -------------------------------------------------------------------------------- /FarHints/FarHintsMP3/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsMP3/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/Doc/FarHintsProcessEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/Doc/FarHintsProcessEng.lng -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/Doc/FarHintsProcessRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/Doc/FarHintsProcessRus.lng -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/FarHintsProcess.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/FarHintsProcess.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/FarHintsProcess.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/FarHintsProcess.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/FarHintsProcess.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/FarHintsProcess.rc -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/FarHintsProcessMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/FarHintsProcessMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/_bld.bat -------------------------------------------------------------------------------- /FarHints/FarHintsProcess/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsProcess/fpc.cfg -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/DCC32.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/DCC64.CFG -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/DefApp.inc -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/Doc/FarHintsVerInfoEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/Doc/FarHintsVerInfoEng.lng -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/Doc/FarHintsVerInfoRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/Doc/FarHintsVerInfoRus.lng -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/FarHintsVerInfo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/FarHintsVerInfo.dpr -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/FarHintsVerInfo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/FarHintsVerInfo.dproj -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/FarHintsVerInfo.drc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/FarHintsVerInfo.drc -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/FarHintsVerInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/FarHintsVerInfo.rc -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/FarHintsVerInfoMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/FarHintsVerInfoMain.pas -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/_bld.bat -------------------------------------------------------------------------------- /FarHints/FarHintsVerInfo/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/FarHintsVerInfo/fpc.cfg -------------------------------------------------------------------------------- /FarHints/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/bld.bat -------------------------------------------------------------------------------- /FarHints/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat FarHints 3 | -------------------------------------------------------------------------------- /FarHints/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarHints/fpc.cfg -------------------------------------------------------------------------------- /FarLib/FarColorDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarColorDlg.pas -------------------------------------------------------------------------------- /FarLib/FarConMan.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarConMan.pas -------------------------------------------------------------------------------- /FarLib/FarConfig.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarConfig.pas -------------------------------------------------------------------------------- /FarLib/FarCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarCtrl.pas -------------------------------------------------------------------------------- /FarLib/FarDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarDlg.pas -------------------------------------------------------------------------------- /FarLib/FarDraw.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarDraw.pas -------------------------------------------------------------------------------- /FarLib/FarEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarEdit.pas -------------------------------------------------------------------------------- /FarLib/FarGrid.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarGrid.pas -------------------------------------------------------------------------------- /FarLib/FarListDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarListDlg.pas -------------------------------------------------------------------------------- /FarLib/FarMatch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarMatch.pas -------------------------------------------------------------------------------- /FarLib/FarMenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarMenu.pas -------------------------------------------------------------------------------- /FarLib/FarPlug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarLib/FarPlug.pas -------------------------------------------------------------------------------- /FarTabs/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Build.h -------------------------------------------------------------------------------- /FarTabs/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/DCC32.CFG -------------------------------------------------------------------------------- /FarTabs/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/DCC64.CFG -------------------------------------------------------------------------------- /FarTabs/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/DefApp.inc -------------------------------------------------------------------------------- /FarTabs/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc/History.txt -------------------------------------------------------------------------------- /FarTabs/Doc/PanelTabs.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc/PanelTabs.hlf -------------------------------------------------------------------------------- /FarTabs/Doc/PanelTabsEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc/PanelTabsEng.lng -------------------------------------------------------------------------------- /FarTabs/Doc/PanelTabsRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc/PanelTabsRus.lng -------------------------------------------------------------------------------- /FarTabs/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc/file_id.diz -------------------------------------------------------------------------------- /FarTabs/Doc2/PanelTabs.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc2/PanelTabs.fml -------------------------------------------------------------------------------- /FarTabs/Doc2/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc2/Settings.reg -------------------------------------------------------------------------------- /FarTabs/Doc3/PanelTabs.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Doc3/PanelTabs.fmlua -------------------------------------------------------------------------------- /FarTabs/EditActionDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/EditActionDlg.pas -------------------------------------------------------------------------------- /FarTabs/EditTabDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/EditTabDlg.pas -------------------------------------------------------------------------------- /FarTabs/Image/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/Image/Sample.png -------------------------------------------------------------------------------- /FarTabs/PanelTabs.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabs.dpr -------------------------------------------------------------------------------- /FarTabs/PanelTabs.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabs.dproj -------------------------------------------------------------------------------- /FarTabs/PanelTabsA.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabsA.rc -------------------------------------------------------------------------------- /FarTabs/PanelTabsClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabsClasses.pas -------------------------------------------------------------------------------- /FarTabs/PanelTabsCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabsCtrl.pas -------------------------------------------------------------------------------- /FarTabs/PanelTabsMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabsMain.pas -------------------------------------------------------------------------------- /FarTabs/PanelTabsOptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabsOptions.pas -------------------------------------------------------------------------------- /FarTabs/PanelTabsW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/PanelTabsW.rc -------------------------------------------------------------------------------- /FarTabs/TabActionsList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/TabActionsList.pas -------------------------------------------------------------------------------- /FarTabs/TabListDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/TabListDlg.pas -------------------------------------------------------------------------------- /FarTabs/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat PanelTabs %* 3 | -------------------------------------------------------------------------------- /FarTabs/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat PanelTabs 3 | -------------------------------------------------------------------------------- /FarTabs/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FarTabs/fpc.cfg -------------------------------------------------------------------------------- /FastWheel/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Build.h -------------------------------------------------------------------------------- /FastWheel/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/DCC32.CFG -------------------------------------------------------------------------------- /FastWheel/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/DCC64.CFG -------------------------------------------------------------------------------- /FastWheel/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/DefApp.inc -------------------------------------------------------------------------------- /FastWheel/Doc/FastWheel.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Doc/FastWheel.lng -------------------------------------------------------------------------------- /FastWheel/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Doc/file_id.diz -------------------------------------------------------------------------------- /FastWheel/Doc2/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Doc2/Settings.reg -------------------------------------------------------------------------------- /FastWheel/Doc2/Setup.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Doc2/Setup.reg -------------------------------------------------------------------------------- /FastWheel/Doc2/SetupShell.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Doc2/SetupShell.reg -------------------------------------------------------------------------------- /FastWheel/Doc3/FastScroll.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/Doc3/FastScroll.lua -------------------------------------------------------------------------------- /FastWheel/FastWheel.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/FastWheel.dpr -------------------------------------------------------------------------------- /FastWheel/FastWheel.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/FastWheel.dproj -------------------------------------------------------------------------------- /FastWheel/FastWheel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/FastWheel.rc -------------------------------------------------------------------------------- /FastWheel/FastWheelMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/FastWheelMain.pas -------------------------------------------------------------------------------- /FastWheel/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat FastWheel %* 3 | -------------------------------------------------------------------------------- /FastWheel/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat FastWheel 3 | -------------------------------------------------------------------------------- /FastWheel/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FastWheel/fpc.cfg -------------------------------------------------------------------------------- /FontMan/Build.h: -------------------------------------------------------------------------------- 1 | #define BuildS "0" -------------------------------------------------------------------------------- /FontMan/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/DCC32.CFG -------------------------------------------------------------------------------- /FontMan/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/DCC64.CFG -------------------------------------------------------------------------------- /FontMan/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/DefApp.inc -------------------------------------------------------------------------------- /FontMan/Doc/FontMan.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/Doc/FontMan.hlf -------------------------------------------------------------------------------- /FontMan/Doc/FontManEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/Doc/FontManEng.lng -------------------------------------------------------------------------------- /FontMan/Doc/FontManRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/Doc/FontManRus.lng -------------------------------------------------------------------------------- /FontMan/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/Doc/Readme.txt -------------------------------------------------------------------------------- /FontMan/Doc/Samples.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/Doc/Samples.ini -------------------------------------------------------------------------------- /FontMan/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/Doc/file_id.diz -------------------------------------------------------------------------------- /FontMan/DocW/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/DocW/file_id.diz -------------------------------------------------------------------------------- /FontMan/FontMan.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontMan.dpr -------------------------------------------------------------------------------- /FontMan/FontManA.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontManA.rc -------------------------------------------------------------------------------- /FontMan/FontManW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontManW.rc -------------------------------------------------------------------------------- /FontMan/FontsClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsClasses.pas -------------------------------------------------------------------------------- /FontMan/FontsConfig.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsConfig.pas -------------------------------------------------------------------------------- /FontMan/FontsCopyDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsCopyDlg.pas -------------------------------------------------------------------------------- /FontMan/FontsCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsCtrl.pas -------------------------------------------------------------------------------- /FontMan/FontsHints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsHints.pas -------------------------------------------------------------------------------- /FontMan/FontsMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsMain.pas -------------------------------------------------------------------------------- /FontMan/FontsTTF.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/FontsTTF.pas -------------------------------------------------------------------------------- /FontMan/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/FontMan/fpc.cfg -------------------------------------------------------------------------------- /GitShell/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Build.h -------------------------------------------------------------------------------- /GitShell/Dcc32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Dcc32.cfg -------------------------------------------------------------------------------- /GitShell/Dcc64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Dcc64.cfg -------------------------------------------------------------------------------- /GitShell/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/DefApp.inc -------------------------------------------------------------------------------- /GitShell/Doc/GitShell.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Doc/GitShell.hlf -------------------------------------------------------------------------------- /GitShell/Doc/GitShell_en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Doc/GitShell_en.lng -------------------------------------------------------------------------------- /GitShell/Doc/GitShell_ru.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Doc/GitShell_ru.lng -------------------------------------------------------------------------------- /GitShell/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Doc/Readme.txt -------------------------------------------------------------------------------- /GitShell/GitLibAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitLibAPI.pas -------------------------------------------------------------------------------- /GitShell/GitShell.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShell.dpr -------------------------------------------------------------------------------- /GitShell/GitShell.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShell.dproj -------------------------------------------------------------------------------- /GitShell/GitShell.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShell.rc -------------------------------------------------------------------------------- /GitShell/GitShellBranches.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellBranches.pas -------------------------------------------------------------------------------- /GitShell/GitShellClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellClasses.pas -------------------------------------------------------------------------------- /GitShell/GitShellCommit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellCommit.pas -------------------------------------------------------------------------------- /GitShell/GitShellCommitDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellCommitDlg.pas -------------------------------------------------------------------------------- /GitShell/GitShellCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellCtrl.pas -------------------------------------------------------------------------------- /GitShell/GitShellHistory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellHistory.pas -------------------------------------------------------------------------------- /GitShell/GitShellInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellInfo.pas -------------------------------------------------------------------------------- /GitShell/GitShellMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/GitShellMain.pas -------------------------------------------------------------------------------- /GitShell/Lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Lang.inc -------------------------------------------------------------------------------- /GitShell/Lang.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/Lang.templ -------------------------------------------------------------------------------- /GitShell/LngMake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/LngMake.bat -------------------------------------------------------------------------------- /GitShell/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/GitShell/bld.bat -------------------------------------------------------------------------------- /GitShell/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat GitShell 3 | -------------------------------------------------------------------------------- /LngMake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/LngMake.bat -------------------------------------------------------------------------------- /MacroLib/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Build.h -------------------------------------------------------------------------------- /MacroLib/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/DCC32.CFG -------------------------------------------------------------------------------- /MacroLib/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/DCC64.CFG -------------------------------------------------------------------------------- /MacroLib/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/DefApp.inc -------------------------------------------------------------------------------- /MacroLib/Doc/Colorer/MacroLib.hrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/Colorer/MacroLib.hrc -------------------------------------------------------------------------------- /MacroLib/Doc/Colorer/MacroLibLua.hrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/Colorer/MacroLibLua.hrc -------------------------------------------------------------------------------- /MacroLib/Doc/Colorer/Schemes.hrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/Colorer/Schemes.hrc -------------------------------------------------------------------------------- /MacroLib/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/History.txt -------------------------------------------------------------------------------- /MacroLib/Doc/MacroLib.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/MacroLib.hlf -------------------------------------------------------------------------------- /MacroLib/Doc/MacroLibEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/MacroLibEng.lng -------------------------------------------------------------------------------- /MacroLib/Doc/MacroLibRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/MacroLibRus.lng -------------------------------------------------------------------------------- /MacroLib/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/Readme.txt -------------------------------------------------------------------------------- /MacroLib/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc/file_id.diz -------------------------------------------------------------------------------- /MacroLib/Doc3/MacroLib.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc3/MacroLib.fmlua -------------------------------------------------------------------------------- /MacroLib/Doc3/MacroLib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Doc3/MacroLib.lua -------------------------------------------------------------------------------- /MacroLib/Image/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Image/Sample.png -------------------------------------------------------------------------------- /MacroLib/Image/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/Image/Sample2.png -------------------------------------------------------------------------------- /MacroLib/MacroLib.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLib.dpr -------------------------------------------------------------------------------- /MacroLib/MacroLib.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLib.dproj -------------------------------------------------------------------------------- /MacroLib/MacroLib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLib.rc -------------------------------------------------------------------------------- /MacroLib/MacroLibClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLibClasses.pas -------------------------------------------------------------------------------- /MacroLib/MacroLibConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLibConst.pas -------------------------------------------------------------------------------- /MacroLib/MacroLibHints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLibHints.pas -------------------------------------------------------------------------------- /MacroLib/MacroLibMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroLibMain.pas -------------------------------------------------------------------------------- /MacroLib/MacroListDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroListDlg.pas -------------------------------------------------------------------------------- /MacroLib/MacroParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/MacroParser.pas -------------------------------------------------------------------------------- /MacroLib/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat MacroLib %* 3 | -------------------------------------------------------------------------------- /MacroLib/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat MacroLib 3 | -------------------------------------------------------------------------------- /MacroLib/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MacroLib/fpc.cfg -------------------------------------------------------------------------------- /MixLib/BD5/MixErrors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/BD5/MixErrors.inc -------------------------------------------------------------------------------- /MixLib/BDXE/MixErrors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/BDXE/MixErrors.inc -------------------------------------------------------------------------------- /MixLib/Defines.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Defines.inc -------------------------------------------------------------------------------- /MixLib/FPC/MixErrors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/FPC/MixErrors.inc -------------------------------------------------------------------------------- /MixLib/MSWinAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MSWinAPI.pas -------------------------------------------------------------------------------- /MixLib/MixCheck.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixCheck.pas -------------------------------------------------------------------------------- /MixLib/MixClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixClasses.pas -------------------------------------------------------------------------------- /MixLib/MixConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixConsts.pas -------------------------------------------------------------------------------- /MixLib/MixCrc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixCrc.pas -------------------------------------------------------------------------------- /MixLib/MixDebug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixDebug.pas -------------------------------------------------------------------------------- /MixLib/MixErrors.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixErrors.pas -------------------------------------------------------------------------------- /MixLib/MixFormat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixFormat.pas -------------------------------------------------------------------------------- /MixLib/MixMemCheck.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixMemCheck.pas -------------------------------------------------------------------------------- /MixLib/MixMemWin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixMemWin.pas -------------------------------------------------------------------------------- /MixLib/MixStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixStream.pas -------------------------------------------------------------------------------- /MixLib/MixStrings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixStrings.pas -------------------------------------------------------------------------------- /MixLib/MixTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixTypes.pas -------------------------------------------------------------------------------- /MixLib/MixUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixUtils.pas -------------------------------------------------------------------------------- /MixLib/MixWin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixWin.pas -------------------------------------------------------------------------------- /MixLib/MixWinUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/MixWinUtils.pas -------------------------------------------------------------------------------- /MixLib/Win/ActiveX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/ActiveX.pas -------------------------------------------------------------------------------- /MixLib/Win/CommCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/CommCtrl.pas -------------------------------------------------------------------------------- /MixLib/Win/CommDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/CommDlg.pas -------------------------------------------------------------------------------- /MixLib/Win/DXTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/DXTypes.pas -------------------------------------------------------------------------------- /MixLib/Win/Direct3D9.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/Direct3D9.pas -------------------------------------------------------------------------------- /MixLib/Win/DirectDraw.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/DirectDraw.pas -------------------------------------------------------------------------------- /MixLib/Win/DirectShow9.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/DirectShow9.pas -------------------------------------------------------------------------------- /MixLib/Win/DirectSound.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/DirectSound.pas -------------------------------------------------------------------------------- /MixLib/Win/Evr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/Evr.pas -------------------------------------------------------------------------------- /MixLib/Win/GDIPAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/GDIPAPI.pas -------------------------------------------------------------------------------- /MixLib/Win/GDIPOBJ.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/GDIPOBJ.pas -------------------------------------------------------------------------------- /MixLib/Win/MFIdl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/MFIdl.pas -------------------------------------------------------------------------------- /MixLib/Win/MFObjects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/MFObjects.pas -------------------------------------------------------------------------------- /MixLib/Win/MFTransform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/MFTransform.pas -------------------------------------------------------------------------------- /MixLib/Win/MMSystem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/MMSystem.pas -------------------------------------------------------------------------------- /MixLib/Win/MSXML.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/MSXML.pas -------------------------------------------------------------------------------- /MixLib/Win/Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/Messages.pas -------------------------------------------------------------------------------- /MixLib/Win/MultiMon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/MultiMon.pas -------------------------------------------------------------------------------- /MixLib/Win/ShDocVw.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/ShDocVw.pas -------------------------------------------------------------------------------- /MixLib/Win/ShellAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/ShellAPI.pas -------------------------------------------------------------------------------- /MixLib/Win/ShlObj.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/ShlObj.pas -------------------------------------------------------------------------------- /MixLib/Win/WinInet.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/WinInet.pas -------------------------------------------------------------------------------- /MixLib/Win/Wincodec.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/Wincodec.pas -------------------------------------------------------------------------------- /MixLib/Win/Windows.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/Win/Windows.pas -------------------------------------------------------------------------------- /MixLib/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MixLib/fpc.cfg -------------------------------------------------------------------------------- /MoreHistory/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Build.h -------------------------------------------------------------------------------- /MoreHistory/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/DCC32.CFG -------------------------------------------------------------------------------- /MoreHistory/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/DCC64.CFG -------------------------------------------------------------------------------- /MoreHistory/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/DefApp.inc -------------------------------------------------------------------------------- /MoreHistory/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc/History.txt -------------------------------------------------------------------------------- /MoreHistory/Doc/MoreHistory.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc/MoreHistory.hlf -------------------------------------------------------------------------------- /MoreHistory/Doc/MoreHistoryEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc/MoreHistoryEng.lng -------------------------------------------------------------------------------- /MoreHistory/Doc/MoreHistoryRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc/MoreHistoryRus.lng -------------------------------------------------------------------------------- /MoreHistory/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc/Readme.txt -------------------------------------------------------------------------------- /MoreHistory/Doc2/History.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc2/History.fml -------------------------------------------------------------------------------- /MoreHistory/Doc2/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc2/Settings.reg -------------------------------------------------------------------------------- /MoreHistory/Doc2/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc2/file_id.diz -------------------------------------------------------------------------------- /MoreHistory/Doc3/History.fml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc3/History.fml -------------------------------------------------------------------------------- /MoreHistory/Doc3/History.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc3/History.fmlua -------------------------------------------------------------------------------- /MoreHistory/Doc3/MoreHistory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc3/MoreHistory.lua -------------------------------------------------------------------------------- /MoreHistory/Doc3/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Doc3/file_id.diz -------------------------------------------------------------------------------- /MoreHistory/Image/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/Image/Sample.png -------------------------------------------------------------------------------- /MoreHistory/MoreHistory.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistory.dpr -------------------------------------------------------------------------------- /MoreHistory/MoreHistory.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistory.dproj -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryA.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryA.rc -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryClasses.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryCmdDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryCmdDlg.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryCtrl.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryDlg.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryEdtDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryEdtDlg.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryHints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryHints.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryListBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryListBase.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryMain.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryOptionsDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryOptionsDlg.pas -------------------------------------------------------------------------------- /MoreHistory/MoreHistoryW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/MoreHistoryW.rc -------------------------------------------------------------------------------- /MoreHistory/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat MoreHistory %* 3 | -------------------------------------------------------------------------------- /MoreHistory/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat MoreHistory 3 | -------------------------------------------------------------------------------- /MoreHistory/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/MoreHistory/fpc.cfg -------------------------------------------------------------------------------- /Noisy/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Build.h -------------------------------------------------------------------------------- /Noisy/GUI/Buttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/Buttons.bmp -------------------------------------------------------------------------------- /Noisy/GUI/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/DCC32.CFG -------------------------------------------------------------------------------- /Noisy/GUI/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/DCC64.CFG -------------------------------------------------------------------------------- /Noisy/GUI/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/DefApp.inc -------------------------------------------------------------------------------- /Noisy/GUI/Note1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/Note1.ico -------------------------------------------------------------------------------- /Noisy/GUI/WinNoisy.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/WinNoisy.dpr -------------------------------------------------------------------------------- /Noisy/GUI/WinNoisy.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/WinNoisy.dproj -------------------------------------------------------------------------------- /Noisy/GUI/WinNoisyCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/WinNoisyCtrl.pas -------------------------------------------------------------------------------- /Noisy/GUI/WinNoisyMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/WinNoisyMain.pas -------------------------------------------------------------------------------- /Noisy/GUI/WinNoisyPlaylist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/WinNoisyPlaylist.pas -------------------------------------------------------------------------------- /Noisy/GUI/WinNoisyW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/WinNoisyW.rc -------------------------------------------------------------------------------- /Noisy/GUI/XPTHEME.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/XPTHEME.BIN -------------------------------------------------------------------------------- /Noisy/GUI/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/_bld.bat -------------------------------------------------------------------------------- /Noisy/GUI/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/GUI/fpc.cfg -------------------------------------------------------------------------------- /Noisy/Lib/Bass.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Lib/Bass.pas -------------------------------------------------------------------------------- /Noisy/Lib/NoisyConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Lib/NoisyConsts.pas -------------------------------------------------------------------------------- /Noisy/Lib/NoisyCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Lib/NoisyCtrl.pas -------------------------------------------------------------------------------- /Noisy/Lib/NoisyUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Lib/NoisyUtil.pas -------------------------------------------------------------------------------- /Noisy/NoisyGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/NoisyGroup.groupproj -------------------------------------------------------------------------------- /Noisy/Player/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/DCC32.CFG -------------------------------------------------------------------------------- /Noisy/Player/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/DCC64.CFG -------------------------------------------------------------------------------- /Noisy/Player/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/DefApp.inc -------------------------------------------------------------------------------- /Noisy/Player/Noisy.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/Noisy.dpr -------------------------------------------------------------------------------- /Noisy/Player/Noisy.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/Noisy.dproj -------------------------------------------------------------------------------- /Noisy/Player/NoisyW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/NoisyW.rc -------------------------------------------------------------------------------- /Noisy/Player/Note.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/Note.ico -------------------------------------------------------------------------------- /Noisy/Player/Note1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/Note1.ico -------------------------------------------------------------------------------- /Noisy/Player/NotePause.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/NotePause.ico -------------------------------------------------------------------------------- /Noisy/Player/NotePlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/NotePlay.ico -------------------------------------------------------------------------------- /Noisy/Player/NoteStop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/NoteStop.ico -------------------------------------------------------------------------------- /Noisy/Player/PlayerHist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/PlayerHist.pas -------------------------------------------------------------------------------- /Noisy/Player/PlayerMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/PlayerMain.pas -------------------------------------------------------------------------------- /Noisy/Player/PlayerMidi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/PlayerMidi.pas -------------------------------------------------------------------------------- /Noisy/Player/PlayerReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/PlayerReg.pas -------------------------------------------------------------------------------- /Noisy/Player/PlayerTags.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/PlayerTags.pas -------------------------------------------------------------------------------- /Noisy/Player/PlayerWin.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/PlayerWin.pas -------------------------------------------------------------------------------- /Noisy/Player/XPTHEME.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/XPTHEME.BIN -------------------------------------------------------------------------------- /Noisy/Player/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/_bld.bat -------------------------------------------------------------------------------- /Noisy/Player/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Player/fpc.cfg -------------------------------------------------------------------------------- /Noisy/Plugin/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/DCC32.CFG -------------------------------------------------------------------------------- /Noisy/Plugin/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/DCC64.CFG -------------------------------------------------------------------------------- /Noisy/Plugin/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/DefApp.inc -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/History.txt -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/Hotkeys.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/Hotkeys.reg -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/Noisy.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/Noisy.fmlua -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/Noisy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/Noisy.lua -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/NoisyCmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/NoisyCmd.txt -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/NoisyEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/NoisyEng.lng -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/NoisyEng.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/NoisyEng.mnu -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/NoisyRus.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/NoisyRus.hlf -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/NoisyRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/NoisyRus.lng -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/NoisyRus.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/NoisyRus.mnu -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/Readme.txt -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/Settings.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/Settings.reg -------------------------------------------------------------------------------- /Noisy/Plugin/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/Doc/file_id.diz -------------------------------------------------------------------------------- /Noisy/Plugin/FarPlayCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/FarPlayCtrl.pas -------------------------------------------------------------------------------- /Noisy/Plugin/FarPlayInfoDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/FarPlayInfoDlg.pas -------------------------------------------------------------------------------- /Noisy/Plugin/FarPlayMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/FarPlayMain.pas -------------------------------------------------------------------------------- /Noisy/Plugin/FarPlayPlaylistDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/FarPlayPlaylistDlg.pas -------------------------------------------------------------------------------- /Noisy/Plugin/FarPlayReg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/FarPlayReg.pas -------------------------------------------------------------------------------- /Noisy/Plugin/NoisyFar.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/NoisyFar.dpr -------------------------------------------------------------------------------- /Noisy/Plugin/NoisyFar.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/NoisyFar.dproj -------------------------------------------------------------------------------- /Noisy/Plugin/NoisyFar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/NoisyFar.rc -------------------------------------------------------------------------------- /Noisy/Plugin/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/_bld.bat -------------------------------------------------------------------------------- /Noisy/Plugin/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/Plugin/fpc.cfg -------------------------------------------------------------------------------- /Noisy/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Noisy/bld.bat -------------------------------------------------------------------------------- /Noisy/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat Noisy 3 | -------------------------------------------------------------------------------- /PathSync/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/Build.h -------------------------------------------------------------------------------- /PathSync/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/DCC32.CFG -------------------------------------------------------------------------------- /PathSync/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/DCC64.CFG -------------------------------------------------------------------------------- /PathSync/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/DefApp.inc -------------------------------------------------------------------------------- /PathSync/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/Doc/Readme.txt -------------------------------------------------------------------------------- /PathSync/PathSync.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/PathSync.dpr -------------------------------------------------------------------------------- /PathSync/PathSync.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/PathSync.rc -------------------------------------------------------------------------------- /PathSync/PathSyncMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/PathSyncMain.pas -------------------------------------------------------------------------------- /PathSync/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PathSync/fpc.cfg -------------------------------------------------------------------------------- /PicViewGDI/Build.h: -------------------------------------------------------------------------------- 1 | #define BuildS "5" -------------------------------------------------------------------------------- /PicViewGDI/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/DCC32.CFG -------------------------------------------------------------------------------- /PicViewGDI/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/DCC64.CFG -------------------------------------------------------------------------------- /PicViewGDI/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/DefApp.inc -------------------------------------------------------------------------------- /PicViewGDI/GDIImageUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/GDIImageUtil.pas -------------------------------------------------------------------------------- /PicViewGDI/GDIPlus.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/GDIPlus.dpr -------------------------------------------------------------------------------- /PicViewGDI/GDIPlus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/GDIPlus.rc -------------------------------------------------------------------------------- /PicViewGDI/GDIPlus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/GDIPlus.txt -------------------------------------------------------------------------------- /PicViewGDI/GDIPlusMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/GDIPlusMain.pas -------------------------------------------------------------------------------- /PicViewGDI/PVApi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/PVApi.pas -------------------------------------------------------------------------------- /PicViewGDI/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PicViewGDI/fpc.cfg -------------------------------------------------------------------------------- /PlugMenu/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Build.h -------------------------------------------------------------------------------- /PlugMenu/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/DCC32.CFG -------------------------------------------------------------------------------- /PlugMenu/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/DCC64.CFG -------------------------------------------------------------------------------- /PlugMenu/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/DefApp.inc -------------------------------------------------------------------------------- /PlugMenu/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc/History.txt -------------------------------------------------------------------------------- /PlugMenu/Doc/PlugMenuEng.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc/PlugMenuEng.hlf -------------------------------------------------------------------------------- /PlugMenu/Doc/PlugMenuEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc/PlugMenuEng.lng -------------------------------------------------------------------------------- /PlugMenu/Doc/PlugMenuRus.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc/PlugMenuRus.hlf -------------------------------------------------------------------------------- /PlugMenu/Doc/PlugMenuRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc/PlugMenuRus.lng -------------------------------------------------------------------------------- /PlugMenu/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc/Readme.txt -------------------------------------------------------------------------------- /PlugMenu/Doc2/Setup.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc2/Setup.reg -------------------------------------------------------------------------------- /PlugMenu/Doc2/Uninstall.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc2/Uninstall.reg -------------------------------------------------------------------------------- /PlugMenu/Doc2/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc2/file_id.diz -------------------------------------------------------------------------------- /PlugMenu/Doc3/PlugMenu.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc3/PlugMenu.fmlua -------------------------------------------------------------------------------- /PlugMenu/Doc3/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/Doc3/file_id.diz -------------------------------------------------------------------------------- /PlugMenu/PlugEditDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugEditDlg.pas -------------------------------------------------------------------------------- /PlugMenu/PlugInfoDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugInfoDlg.pas -------------------------------------------------------------------------------- /PlugMenu/PlugListDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugListDlg.pas -------------------------------------------------------------------------------- /PlugMenu/PlugLoadDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugLoadDlg.pas -------------------------------------------------------------------------------- /PlugMenu/PlugMenu.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenu.dpr -------------------------------------------------------------------------------- /PlugMenu/PlugMenu.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenu.dproj -------------------------------------------------------------------------------- /PlugMenu/PlugMenuCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenuCtrl.pas -------------------------------------------------------------------------------- /PlugMenu/PlugMenuHints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenuHints.pas -------------------------------------------------------------------------------- /PlugMenu/PlugMenuMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenuMain.pas -------------------------------------------------------------------------------- /PlugMenu/PlugMenuPlugs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenuPlugs.pas -------------------------------------------------------------------------------- /PlugMenu/PlugMenuW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugMenuW.rc -------------------------------------------------------------------------------- /PlugMenu/PlugRing.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/PlugRing.pas -------------------------------------------------------------------------------- /PlugMenu/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat PlugMenu %* 3 | -------------------------------------------------------------------------------- /PlugMenu/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat PlugMenu 3 | -------------------------------------------------------------------------------- /PlugMenu/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/PlugMenu/fpc.cfg -------------------------------------------------------------------------------- /Review/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Build.h -------------------------------------------------------------------------------- /Review/Review/Buttons.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Buttons.bmp -------------------------------------------------------------------------------- /Review/Review/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/DCC32.CFG -------------------------------------------------------------------------------- /Review/Review/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/DCC64.CFG -------------------------------------------------------------------------------- /Review/Review/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/DefApp.inc -------------------------------------------------------------------------------- /Review/Review/Doc/Background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/Background.bmp -------------------------------------------------------------------------------- /Review/Review/Doc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/Readme.txt -------------------------------------------------------------------------------- /Review/Review/Doc/Review-Macros.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/Review-Macros.lua -------------------------------------------------------------------------------- /Review/Review/Doc/Review.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/Review.hlf -------------------------------------------------------------------------------- /Review/Review/Doc/Review.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/Review.lua -------------------------------------------------------------------------------- /Review/Review/Doc/ReviewEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/ReviewEng.lng -------------------------------------------------------------------------------- /Review/Review/Doc/ReviewRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/ReviewRus.lng -------------------------------------------------------------------------------- /Review/Review/Doc/Review_NextDir.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Doc/Review_NextDir.lua -------------------------------------------------------------------------------- /Review/Review/GDIImageUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/GDIImageUtil.pas -------------------------------------------------------------------------------- /Review/Review/Image/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Image/Sample.png -------------------------------------------------------------------------------- /Review/Review/Image/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Image/Sample2.png -------------------------------------------------------------------------------- /Review/Review/Image/Sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Image/Sample3.png -------------------------------------------------------------------------------- /Review/Review/Lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Lang.inc -------------------------------------------------------------------------------- /Review/Review/Lang.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Lang.templ -------------------------------------------------------------------------------- /Review/Review/LngMake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/LngMake.bat -------------------------------------------------------------------------------- /Review/Review/PVApi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/PVApi.pas -------------------------------------------------------------------------------- /Review/Review/Review.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Review.dpr -------------------------------------------------------------------------------- /Review/Review/Review.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/Review.dproj -------------------------------------------------------------------------------- /Review/Review/ReviewClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewClasses.pas -------------------------------------------------------------------------------- /Review/Review/ReviewConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewConst.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDecoders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDecoders.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDlgDecoder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDlgDecoder.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDlgDecoders.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDlgDecoders.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDlgGeneral.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDlgGeneral.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDlgSaveAs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDlgSaveAs.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDlgSlideShow.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDlgSlideShow.pas -------------------------------------------------------------------------------- /Review/Review/ReviewDlgThumb.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewDlgThumb.pas -------------------------------------------------------------------------------- /Review/Review/ReviewGDI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewGDI.pas -------------------------------------------------------------------------------- /Review/Review/ReviewGDIPlus.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewGDIPlus.pas -------------------------------------------------------------------------------- /Review/Review/ReviewJPEG.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewJPEG.pas -------------------------------------------------------------------------------- /Review/Review/ReviewMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewMain.pas -------------------------------------------------------------------------------- /Review/Review/ReviewTags.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewTags.pas -------------------------------------------------------------------------------- /Review/Review/ReviewThumbs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewThumbs.pas -------------------------------------------------------------------------------- /Review/Review/ReviewVideo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewVideo.pas -------------------------------------------------------------------------------- /Review/Review/ReviewW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/ReviewW.rc -------------------------------------------------------------------------------- /Review/Review/_bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\..\_bld.bat Review %* -------------------------------------------------------------------------------- /Review/Review/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/fpc.cfg -------------------------------------------------------------------------------- /Review/Review/libJPEG.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/Review/libJPEG.pas -------------------------------------------------------------------------------- /Review/ReviewGFL/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/DCC32.CFG -------------------------------------------------------------------------------- /Review/ReviewGFL/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/DCC64.CFG -------------------------------------------------------------------------------- /Review/ReviewGFL/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/DefApp.inc -------------------------------------------------------------------------------- /Review/ReviewGFL/GFL.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/GFL.dpr -------------------------------------------------------------------------------- /Review/ReviewGFL/GFL.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/GFL.dproj -------------------------------------------------------------------------------- /Review/ReviewGFL/GFL.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/GFL.rc -------------------------------------------------------------------------------- /Review/ReviewGFL/GFLMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/GFLMain.pas -------------------------------------------------------------------------------- /Review/ReviewGFL/LibGFL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/LibGFL.pas -------------------------------------------------------------------------------- /Review/ReviewGFL/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/_bld.bat -------------------------------------------------------------------------------- /Review/ReviewGFL/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGFL/fpc.cfg -------------------------------------------------------------------------------- /Review/ReviewGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewGroup.groupproj -------------------------------------------------------------------------------- /Review/ReviewMF/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/DCC32.CFG -------------------------------------------------------------------------------- /Review/ReviewMF/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/DCC64.CFG -------------------------------------------------------------------------------- /Review/ReviewMF/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/DefApp.inc -------------------------------------------------------------------------------- /Review/ReviewMF/MFVideo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/MFVideo.dpr -------------------------------------------------------------------------------- /Review/ReviewMF/MFVideo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/MFVideo.dproj -------------------------------------------------------------------------------- /Review/ReviewMF/MFVideoMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/MFVideoMain.pas -------------------------------------------------------------------------------- /Review/ReviewMF/MFVideoW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/MFVideoW.rc -------------------------------------------------------------------------------- /Review/ReviewMF/MFVideo_Ses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/MFVideo_Ses.pas -------------------------------------------------------------------------------- /Review/ReviewMF/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/_bld.bat -------------------------------------------------------------------------------- /Review/ReviewMF/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewMF/fpc.cfg -------------------------------------------------------------------------------- /Review/ReviewSVG/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/DCC32.CFG -------------------------------------------------------------------------------- /Review/ReviewSVG/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/DCC64.CFG -------------------------------------------------------------------------------- /Review/ReviewSVG/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/DefApp.inc -------------------------------------------------------------------------------- /Review/ReviewSVG/SVG.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/SVG.dpr -------------------------------------------------------------------------------- /Review/ReviewSVG/SVG.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/SVG.dproj -------------------------------------------------------------------------------- /Review/ReviewSVG/SVG.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/SVG.rc -------------------------------------------------------------------------------- /Review/ReviewSVG/SVGMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/SVGMain.pas -------------------------------------------------------------------------------- /Review/ReviewSVG/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewSVG/_bld.bat -------------------------------------------------------------------------------- /Review/ReviewVideo/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DCC32.CFG -------------------------------------------------------------------------------- /Review/ReviewVideo/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DCC64.CFG -------------------------------------------------------------------------------- /Review/ReviewVideo/DXVideo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DXVideo.dpr -------------------------------------------------------------------------------- /Review/ReviewVideo/DXVideo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DXVideo.dproj -------------------------------------------------------------------------------- /Review/ReviewVideo/DXVideoMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DXVideoMain.pas -------------------------------------------------------------------------------- /Review/ReviewVideo/DXVideoW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DXVideoW.rc -------------------------------------------------------------------------------- /Review/ReviewVideo/DXVideo_Api.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DXVideo_Api.pas -------------------------------------------------------------------------------- /Review/ReviewVideo/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/DefApp.inc -------------------------------------------------------------------------------- /Review/ReviewVideo/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/_bld.bat -------------------------------------------------------------------------------- /Review/ReviewVideo/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewVideo/fpc.cfg -------------------------------------------------------------------------------- /Review/ReviewWIC/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/DCC32.CFG -------------------------------------------------------------------------------- /Review/ReviewWIC/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/DCC64.CFG -------------------------------------------------------------------------------- /Review/ReviewWIC/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/DefApp.inc -------------------------------------------------------------------------------- /Review/ReviewWIC/WIC.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/WIC.dpr -------------------------------------------------------------------------------- /Review/ReviewWIC/WIC.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/WIC.dproj -------------------------------------------------------------------------------- /Review/ReviewWIC/WIC.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/WIC.rc -------------------------------------------------------------------------------- /Review/ReviewWIC/WICMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/WICMain.pas -------------------------------------------------------------------------------- /Review/ReviewWIC/_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/_bld.bat -------------------------------------------------------------------------------- /Review/ReviewWIC/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/ReviewWIC/fpc.cfg -------------------------------------------------------------------------------- /Review/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/Review/bld.bat -------------------------------------------------------------------------------- /Review/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat Review 3 | -------------------------------------------------------------------------------- /SameFolder/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Build.h -------------------------------------------------------------------------------- /SameFolder/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/DCC32.CFG -------------------------------------------------------------------------------- /SameFolder/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/DCC64.CFG -------------------------------------------------------------------------------- /SameFolder/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/DefApp.inc -------------------------------------------------------------------------------- /SameFolder/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Doc/History.txt -------------------------------------------------------------------------------- /SameFolder/Doc/SameFolderEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Doc/SameFolderEng.lng -------------------------------------------------------------------------------- /SameFolder/Doc/SameFolderRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Doc/SameFolderRus.lng -------------------------------------------------------------------------------- /SameFolder/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Doc/file_id.diz -------------------------------------------------------------------------------- /SameFolder/Doc2/Setup.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Doc2/Setup.reg -------------------------------------------------------------------------------- /SameFolder/Doc3/SameFolder.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/Doc3/SameFolder.fmlua -------------------------------------------------------------------------------- /SameFolder/SameFolder.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/SameFolder.dpr -------------------------------------------------------------------------------- /SameFolder/SameFolder.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/SameFolder.rc -------------------------------------------------------------------------------- /SameFolder/SameFolderMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/SameFolderMain.pas -------------------------------------------------------------------------------- /SameFolder/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat SameFolder %* 3 | -------------------------------------------------------------------------------- /SameFolder/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat SameFolder 3 | -------------------------------------------------------------------------------- /SameFolder/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/SameFolder/fpc.cfg -------------------------------------------------------------------------------- /TestPlugin1/Dcc32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/Dcc32.cfg -------------------------------------------------------------------------------- /TestPlugin1/Dcc64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/Dcc64.cfg -------------------------------------------------------------------------------- /TestPlugin1/DefApp.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestPlugin1/Doc/HelloWorld_en.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/Doc/HelloWorld_en.hlf -------------------------------------------------------------------------------- /TestPlugin1/Doc/HelloWorld_en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/Doc/HelloWorld_en.lng -------------------------------------------------------------------------------- /TestPlugin1/Doc/HelloWorld_ru.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/Doc/HelloWorld_ru.hlf -------------------------------------------------------------------------------- /TestPlugin1/Doc/HelloWorld_ru.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/Doc/HelloWorld_ru.lng -------------------------------------------------------------------------------- /TestPlugin1/FPC.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/FPC.cfg -------------------------------------------------------------------------------- /TestPlugin1/HelloWorld.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/HelloWorld.dpr -------------------------------------------------------------------------------- /TestPlugin1/HelloWorld.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin1/HelloWorld.dproj -------------------------------------------------------------------------------- /TestPlugin1/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat HelloWorld %* 3 | -------------------------------------------------------------------------------- /TestPlugin1/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat PlugMenu 3 | -------------------------------------------------------------------------------- /TestPlugin2/ApiDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/ApiDemo.dpr -------------------------------------------------------------------------------- /TestPlugin2/ApiDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/ApiDemo.dproj -------------------------------------------------------------------------------- /TestPlugin2/ApiDemoMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/ApiDemoMain.pas -------------------------------------------------------------------------------- /TestPlugin2/Dcc32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/Dcc32.cfg -------------------------------------------------------------------------------- /TestPlugin2/Dcc64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/Dcc64.cfg -------------------------------------------------------------------------------- /TestPlugin2/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/DefApp.inc -------------------------------------------------------------------------------- /TestPlugin2/Doc/ApiDemo_en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/Doc/ApiDemo_en.lng -------------------------------------------------------------------------------- /TestPlugin2/Doc/ApiDemo_ru.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TestPlugin2/Doc/ApiDemo_ru.lng -------------------------------------------------------------------------------- /TestPlugin2/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat ApiDemo %* 3 | -------------------------------------------------------------------------------- /TestPlugin2/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat ApiDemo 3 | -------------------------------------------------------------------------------- /TraceLib/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/DCC32.CFG -------------------------------------------------------------------------------- /TraceLib/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/DefApp.inc -------------------------------------------------------------------------------- /TraceLib/MSTrace.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/MSTrace.pas -------------------------------------------------------------------------------- /TraceLib/MSTraceLib.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/MSTraceLib.dpr -------------------------------------------------------------------------------- /TraceLib/MSTraceLibMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/MSTraceLibMain.pas -------------------------------------------------------------------------------- /TraceLib/_fpc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/_fpc.bat -------------------------------------------------------------------------------- /TraceLib/_fpc64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/_fpc64.bat -------------------------------------------------------------------------------- /TraceLib/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/TraceLib/fpc.cfg -------------------------------------------------------------------------------- /UCharMap/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Build.h -------------------------------------------------------------------------------- /UCharMap/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/DCC32.CFG -------------------------------------------------------------------------------- /UCharMap/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/DCC64.CFG -------------------------------------------------------------------------------- /UCharMap/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/DefApp.inc -------------------------------------------------------------------------------- /UCharMap/Doc/GroupsList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Doc/GroupsList.txt -------------------------------------------------------------------------------- /UCharMap/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Doc/History.txt -------------------------------------------------------------------------------- /UCharMap/Doc/UCharMap.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Doc/UCharMap.hlf -------------------------------------------------------------------------------- /UCharMap/Doc/UCharMapEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Doc/UCharMapEng.lng -------------------------------------------------------------------------------- /UCharMap/Doc/UCharMapRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Doc/UCharMapRus.lng -------------------------------------------------------------------------------- /UCharMap/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Doc/file_id.diz -------------------------------------------------------------------------------- /UCharMap/Image/Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/Image/Sample.png -------------------------------------------------------------------------------- /UCharMap/UCharListBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharListBase.pas -------------------------------------------------------------------------------- /UCharMap/UCharMap.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMap.dpr -------------------------------------------------------------------------------- /UCharMap/UCharMap.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMap.dproj -------------------------------------------------------------------------------- /UCharMap/UCharMapCharsDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapCharsDlg.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapCtrl.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapDlg.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapFontsDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapFontsDlg.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapGroupsDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapGroupsDlg.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapHints.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapHints.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapMain.pas -------------------------------------------------------------------------------- /UCharMap/UCharMapW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/UCharMapW.rc -------------------------------------------------------------------------------- /UCharMap/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat UCharMap %* 3 | -------------------------------------------------------------------------------- /UCharMap/bldver.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bldver.bat UCharMap 3 | -------------------------------------------------------------------------------- /UCharMap/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/UCharMap/fpc.cfg -------------------------------------------------------------------------------- /VisualCompare/Build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Build.h -------------------------------------------------------------------------------- /VisualCompare/DCC32.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/DCC32.CFG -------------------------------------------------------------------------------- /VisualCompare/DCC64.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/DCC64.CFG -------------------------------------------------------------------------------- /VisualCompare/DefApp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/DefApp.inc -------------------------------------------------------------------------------- /VisualCompare/Doc/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc/History.txt -------------------------------------------------------------------------------- /VisualCompare/Doc/VisComp.hlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc/VisComp.hlf -------------------------------------------------------------------------------- /VisualCompare/Doc/VisCompEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc/VisCompEng.lng -------------------------------------------------------------------------------- /VisualCompare/Doc/VisCompRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc/VisCompRus.lng -------------------------------------------------------------------------------- /VisualCompare/Doc/file_id.diz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc/file_id.diz -------------------------------------------------------------------------------- /VisualCompare/Doc3/Compare.fmlua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc3/Compare.fmlua -------------------------------------------------------------------------------- /VisualCompare/Doc3/Compare.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Doc3/Compare.lua -------------------------------------------------------------------------------- /VisualCompare/Image/Sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Image/Sample1.png -------------------------------------------------------------------------------- /VisualCompare/Image/Sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Image/Sample2.png -------------------------------------------------------------------------------- /VisualCompare/Lang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Lang.inc -------------------------------------------------------------------------------- /VisualCompare/Lang.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/Lang.templ -------------------------------------------------------------------------------- /VisualCompare/LngMake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/LngMake.bat -------------------------------------------------------------------------------- /VisualCompare/VisComp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisComp.dpr -------------------------------------------------------------------------------- /VisualCompare/VisComp.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisComp.dproj -------------------------------------------------------------------------------- /VisualCompare/VisCompA.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompA.rc -------------------------------------------------------------------------------- /VisualCompare/VisCompAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompAPI.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompCtrl.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompCtrl.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompFiles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompFiles.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompFilesDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompFilesDlg.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompIntegration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompIntegration.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompMain.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompOpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompOpers.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompOptionsDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompOptionsDlg.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompPromptDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompPromptDlg.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompTexts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompTexts.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompTextsDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompTextsDlg.pas -------------------------------------------------------------------------------- /VisualCompare/VisCompW.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/VisCompW.rc -------------------------------------------------------------------------------- /VisualCompare/bld.bat: -------------------------------------------------------------------------------- 1 | @Echo off 2 | call ..\_bld.bat VisComp %* 3 | -------------------------------------------------------------------------------- /VisualCompare/bldver.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/bldver.bat -------------------------------------------------------------------------------- /VisualCompare/fpc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/VisualCompare/fpc.cfg -------------------------------------------------------------------------------- /_bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/_bld.bat -------------------------------------------------------------------------------- /_bldver.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxRusov/far-plugins/HEAD/_bldver.bat -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | 123 --------------------------------------------------------------------------------