├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Readme.txt ├── VisRen.png ├── WhatsNew_Rus.txt ├── cmake └── utils.cmake ├── farsdk ├── unicode │ ├── farcolor.hpp │ └── plugin.hpp ├── vc_crt_fix.asm └── vc_crt_fix_impl.cpp ├── src ├── CMakeLists.txt ├── DList.cpp ├── DList.hpp ├── VisRen.cpp ├── VisRen.def ├── VisRen.hpp ├── VisRen.rc ├── VisRenDlg.cpp ├── VisRenDlg.hpp ├── VisRenEng.hlf.in ├── VisRenEng.lng ├── VisRenFile.cpp ├── VisRenFile.hpp ├── VisRenFile_JPG.cpp ├── VisRenFile_MP3.cpp ├── VisRenLng.hpp ├── VisRenRus.hlf.in ├── VisRenRus.lng ├── string.cpp ├── string.hpp └── version.hpp └── vc.build.release.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/Readme.txt -------------------------------------------------------------------------------- /VisRen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/VisRen.png -------------------------------------------------------------------------------- /WhatsNew_Rus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/WhatsNew_Rus.txt -------------------------------------------------------------------------------- /cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/cmake/utils.cmake -------------------------------------------------------------------------------- /farsdk/unicode/farcolor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/farsdk/unicode/farcolor.hpp -------------------------------------------------------------------------------- /farsdk/unicode/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/farsdk/unicode/plugin.hpp -------------------------------------------------------------------------------- /farsdk/vc_crt_fix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/farsdk/vc_crt_fix.asm -------------------------------------------------------------------------------- /farsdk/vc_crt_fix_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/farsdk/vc_crt_fix_impl.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/DList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/DList.cpp -------------------------------------------------------------------------------- /src/DList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/DList.hpp -------------------------------------------------------------------------------- /src/VisRen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRen.cpp -------------------------------------------------------------------------------- /src/VisRen.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRen.def -------------------------------------------------------------------------------- /src/VisRen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRen.hpp -------------------------------------------------------------------------------- /src/VisRen.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRen.rc -------------------------------------------------------------------------------- /src/VisRenDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenDlg.cpp -------------------------------------------------------------------------------- /src/VisRenDlg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenDlg.hpp -------------------------------------------------------------------------------- /src/VisRenEng.hlf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenEng.hlf.in -------------------------------------------------------------------------------- /src/VisRenEng.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenEng.lng -------------------------------------------------------------------------------- /src/VisRenFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenFile.cpp -------------------------------------------------------------------------------- /src/VisRenFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenFile.hpp -------------------------------------------------------------------------------- /src/VisRenFile_JPG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenFile_JPG.cpp -------------------------------------------------------------------------------- /src/VisRenFile_MP3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenFile_MP3.cpp -------------------------------------------------------------------------------- /src/VisRenLng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenLng.hpp -------------------------------------------------------------------------------- /src/VisRenRus.hlf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenRus.hlf.in -------------------------------------------------------------------------------- /src/VisRenRus.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/VisRenRus.lng -------------------------------------------------------------------------------- /src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/string.cpp -------------------------------------------------------------------------------- /src/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/string.hpp -------------------------------------------------------------------------------- /src/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/src/version.hpp -------------------------------------------------------------------------------- /vc.build.release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarPlugins/VisRen/HEAD/vc.build.release.cmd --------------------------------------------------------------------------------