Well I could provide links, but I dont know how to get a browser to let them be handled by tcpfile. But a facility for exporting a list of files to a file and importing that file to download all that files would be easy to do.
And about mainchat: tcpfile is just meant to share files with your friends, not with the rest of the internet. You can configure it to behave like a normal p2p program, but it is not great at it. I dont think mainchat would fit this philosophy (there is IRC for that), but conferences (where you invite and talk to only a bunch of your friends) were planned.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You Made a great Program, Thanks
but i mis a MainChat for all User and were it possible to make Links like DC++ ?
sorry for my english. :)
Jethro
Thanks for the kind words :)
Well I could provide links, but I dont know how to get a browser to let them be handled by tcpfile. But a facility for exporting a list of files to a file and importing that file to download all that files would be easy to do.
And about mainchat: tcpfile is just meant to share files with your friends, not with the rest of the internet. You can configure it to behave like a normal p2p program, but it is not great at it. I dont think mainchat would fit this philosophy (there is IRC for that), but conferences (where you invite and talk to only a bunch of your friends) were planned.
When implement for Windows installer script like example nsi
when protocol is
tcpfile://
then can do this in a installer script for nsi:
Section $(sec_link) sec_link
SectionIn 1 2
DeleteRegKey HKCR "tcpfile"
WriteRegStr HKEY_CLASSES_ROOT tcpfile "" "URL: tcpfile Protocol"
WriteRegStr HKEY_CLASSES_ROOT tcpfile "URL Protocol" ""
WriteRegStr HKEY_CLASSES_ROOT tcpfile\shell "" open
WriteRegStr HKEY_CLASSES_ROOT tcpfile\DefaultIcon "" $INSTDIR\tcpfile.exe,1
WriteRegStr HKEY_CLASSES_ROOT tcpfile\shell\open\command "" '"$INSTDIR\tcpfile.exe" "%1"'
DeleteRegKey HKLM "SOFTWARE\Classes\tcpfile"
WriteRegStr HKEY_LOCAL_MACHINE SOFTWARE\Classes\tcpfile "" "URL: tcpfile Protocol"
WriteRegStr HKEY_LOCAL_MACHINE SOFTWARE\Classes\tcpfile "URL Protocol" ""
WriteRegStr HKEY_LOCAL_MACHINE SOFTWARE\Classes\tcpfile\shell "" open
WriteRegStr HKEY_LOCAL_MACHINE SOFTWARE\Classes\tcpfile\DefaultIcon "" $INSTDIR\tcpfile.exe
WriteRegStr HKEY_LOCAL_MACHINE SOFTWARE\Classes\tcpfile\shell\open\command "" '"$INSTDIR\tcpfile.exe" "%1"'
SectionEnd