ما الجديد
ستار دي في بي | StarDVB

أهلاً وسهلاً بك من جديد في ستار دي في بي StarDVB. تم في الاونة الاخيرة تطوير وتخصيص الموقع ليشمل IPTV و SMART TV بشكل أوسع من السابق. إذا كنت مسجل سابقا يمكنك الدخول باسم المستخدم السابق نفسه، وإن كنت غير مسجل مسبقاً، يمكنك التسجيل الان. نرحب بمشاركاتك واقتراحاتك في أي وقت، نتمنى لك وقتاً ممتعاً معنا.

WinLIRC 0.8.7

eminem

ستار جديد
WinLIRC 0.8.7

•Changed the default for the server to only allow localhost connections.

•Updates to IRRecord

•Bundled all the updated plugins. Ie the Serial plugin in the previous version had a critical bug in it where the transmitter was left on. Updated plugins are always available in the files section. Always check to make sure you have the latest version.

•Bundled some of the other tools with WinLIRC such as IRGraph.
*Skystar2 remote control owners; Read readme.txt in skystar2 folder and just move winlirc.ini from this folder to plugins folder !

WinLIRC 0.8.6b


•Much better error handling with regards to config files. Previously there were no warnings if the config file path was invalid, or there was a problem with the config file.

•Made improvements to how repeats are handled. You can now skip the first few repeats if your remote sends too many. For me this enables menu navigation, whilst still being able to get repeats if I hold down the remote longer. Technically you can put many remotes in a single config file, so these settings are global. But I think most people will only use 1 remote at a time.

•Bundled the updated Iguana plugin. Now with sending support. Check the files section on sourceforge for updates for your receiver plugin.

•I've changed the hardware export API slightly to add an extra function for other receivers. This change has affected all plugins. But it's only a minor change.

•Updated IRRecord accordingly.

•*Please submit bug reports to the sourceforge webpage, if you have problems. I can't help when you just leave
negative feedback when things don't work.
WinLIRC 0.8.6a


•Fixed a file handle leak

•Changed the program so it doesn't need a config file. Potentially some receiver types might not need them, as they might only support 1 remote anyway. Ie receiver/remote info built into plugin dll.

•Changed the CurrentDirectory to the plugins folder. This change effected all the plugins. So don't use older
plugins with this build as they will look for the ini file in the wrong folder. Otherwise the API is the same.

•Added support for a USB receiver.

WinLIRC 0.8.6 (based on LIRC 0.8.6) - by Ian Curtis


I've made some quite large changes to WinLIRC. The original program was hard coded to basically use serial recievers. While this was fine for many years, a lot of newer pcs don't have serial ports ! And that presents a big problem. I wanted to build my own simple reciever and support it in the original version of WinLIRC. The audio input reciever would essentially share the same code base as the serial version, as it works with raw timing information. But I came to the conclusion that it would just be too messy to try and
add support for a second reciever, so I redesigned the whole program.

WinLIRC now only acts a server/GUI, and loads config files. All the decoding is now from from within a DLL file. I created a simple C API for this.


#define SI_API __declspec(dllexport)

#ifdef __cplusplus
extern "C" {
#endif

SI_API int init (HANDLE exitEvent);
SI_API void deinit ();
SI_API int hasGui ();
SI_API void loadSetupGui();
SI_API int sendIR (struct ir_remote *remotes, struct ir_ncode *code, int repeats);
SI_API int decodeIR (struct ir_remote *remotes, char *out);

#ifdef __cplusplus
}
#endif

#endif

If you want to add support for a new reciever, just export those functions from a DLL. sendIR and loadSetupGui can be stubbed if needed. Most of the decode code can be taken from the LIRC project. Copy and paste directly.

The init function should create/destroy a thead if needed. In my audio example it doesn't need this, as the Windows API automatically creates a thread for capturing audio, and destroys it again when I stop. The decodeIR function runs in a seperate thread. It runs in the daemon thread from WinLIRC itself, and should be
exited when exitEvent is triggered.

I decided to write all the settings to the INI file, as the program has no uninstaller. Just makes things simpler. The registery is no longer used. If you write a plugin, feel free to put the settings in the same file.

Although not required, the DLLs also export a hardware struct. This struct will contain information that the IRRecord program, when it's done will eventually use. This is slightly different to the standard LIRC one, but near enough. The idea is, the IRRecord program will just be able to load whichever dll you have for your
reciever and you will be able to record input with it.

If you have any problems with this, feel free to email me, or leave a bug report on sourceforge. If you have problems with the serial version, just roll back to the older version which is 0.6.5, since that was the last stable build with the old architecture.


http://www.dvbsupport.net/download/index.php?act=download&id=245
 

kokoooo

ستار جديد
ممكن أحد يشرح لنا كيف الاستفاده منه
عندي الريموت ما قدرت أعرفه على البروج هل هذا يفيدنا في تشغيل ريموت سكاي ستار 2 usb على البروج
 
أعلى