From cb4a46e7fbe62d788e66ed6121c717a2d22a4d7c Mon Sep 17 00:00:00 2001 From: watcherhd Date: Thu, 21 Apr 2011 14:14:52 +0000 Subject: svn.miranda.im is moving to a new home! git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@7 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb --- isee_tweaker/docs/InstallScript.xml | 32 +++++++++ isee_tweaker/docs/isee_advanced.txt | 110 +++++++++++++++++++++++++++++++ isee_tweaker/docs/isee_tweaker.png | Bin 0 -> 22602 bytes isee_tweaker/docs/readme_iseetweaker.txt | 40 +++++++++++ isee_tweaker/docs/rebase_iseetweaker.txt | 4 ++ isee_tweaker/docs/todo_iseetweaker.txt | 9 +++ 6 files changed, 195 insertions(+) create mode 100644 isee_tweaker/docs/InstallScript.xml create mode 100644 isee_tweaker/docs/isee_advanced.txt create mode 100644 isee_tweaker/docs/isee_tweaker.png create mode 100644 isee_tweaker/docs/readme_iseetweaker.txt create mode 100644 isee_tweaker/docs/rebase_iseetweaker.txt create mode 100644 isee_tweaker/docs/todo_iseetweaker.txt (limited to 'isee_tweaker/docs') diff --git a/isee_tweaker/docs/InstallScript.xml b/isee_tweaker/docs/InstallScript.xml new file mode 100644 index 0000000..03627b5 --- /dev/null +++ b/isee_tweaker/docs/InstallScript.xml @@ -0,0 +1,32 @@ + + + + ISee Tweaker + Sergey V. Gershovich + 0.0.0.1 + Plugin + + + + Main Files + isee_tweaker.dll + + + + Documentation and Translation + readme_iseetweaker.txt + todo_iseetweaker.txt + + + + + Developers Info + rebase_iseetweaker.txt + + + + + readme_iseetweaker.txt + + + diff --git a/isee_tweaker/docs/isee_advanced.txt b/isee_tweaker/docs/isee_advanced.txt new file mode 100644 index 0000000..676c7fd --- /dev/null +++ b/isee_tweaker/docs/isee_advanced.txt @@ -0,0 +1,110 @@ +Add with Database Editor to CurrentUser\ICQ (or ICQ2 & etc) : + +(*) - relogin needed for applying + +(BYTE) PrivacyMenu = 0 - to Disable privacy menu (restart needed) + +(BYTE) Chan2Enabled = 0 - to Disable Channel 2 Msgs (to cheat antispam bot) + (can be set per user also) + +(BYTE) MtnEnabled = 0 - to Disable MTN (*) + 1 - to Enable MTN (*) + 2 - to Enable MTN receiving only (*) + (default is 1) + +(BYTE) PopUpsMode = sum of these values: + + +2 - to DISABLE PopUps + + (default is 0) + +(BYTE) ShowIdle = 0 - to Disable idle time sending (*) + +(BYTE) ExtendedSearch = 0 - to Disable extended search (*) + +(BYTE) UnicodeDecodeMode = sum of these values: + + +0x01 - to ENABLE autodecoding for type 1 msgs (utf-8) + +0x02 - ... for type 2 & 4 msgs (utf-8) + +0x04 - ... for auth. req. msgs (utf-8) + +0x08 - ... for recived sms (utf-8) + +0x10 (+16) - ... for offline msgs (ucs-2) + +0x20 (+32) - ... for auth replies + + (default is 0x37 = 1+2+4+0x10+0x20) + + +(BYTE) UnicodeRcv = 0 - off (*) (can be set per user also) + 1 - On demand + 2 - always + 3 - convert ANSI to UCS-2 + (default is 1) + + +(BYTE) UnicodeSend = sum of these values: (*) (can be set per user also) + +0x01 - just on (any next value assumes this too) + +0x02 - convert ANSI to unicode + +0x04 - ignore contact's unicode capability (for testing!) + +0x08 - do not convert to unicode long msgs + +0x10 (+16) - send unicode to offline in plain utf-8 (capability is ignored) + +0x20 (+32) - send unicode in plain utf-8 in other cases (capability is ignored) + +0x40 (+64) - convert to custom codepage if can not be send in unicode + (default is 0x0A = 2 + 8) + + +(WORD) CodePage - code page for plain text encoding/decoding to/from unicode (can be set per user also) + +(BYTE) InfoUpdate = Threshold in DAYS for updating user info (restart is needed) + + (default is 14 days) + +(BYTE) InfoAutoUpdate = 0 - to Disable user info rescan (using threshold) on login (restart is needed) + +(BYTE) ExtendedStatus = 1 - to Disable extended status support + +(BYTE) VisibleMode - default is 4 + 1 - Allow all users to see you + 2 - Block all users from seeing you + 3 - Allow only users in the permit list to see you + 4 - Block only users in the invisible list from seeing you + 5 - Allow only users in the buddy list to see you + + +(DWORD) Offset - allow offline msgs to be behind last event by this offset in seconds + (default is 0) + + +Proto params: + +(WORD) Version - protocol version (default is 8) +(DWORD) FP1 - proto specific value (default is 0xffffffff for Miranda) +(DWORD) FP2 - proto specific value (default is 0x00040000 for 0.4.0.0) +(DWORD) FP3 - proto specific value (default is 0) + + +Icons: + +(STRING) IconsPack - icons pack path+name for other OS + (default - .\icons\_IseeIcons.dll , then .\icons\isee_icons.dll ) + +Icons IDs: + +#define IDI_ICQ 1 +#define IDI_AUTH 2 +#define IDI_CHECK 3 +#define IDI_DOT 4 +#define IDI_PRIVACY 5 +#define IDI_REMOVE 6 +#define IDI_GRANT 7 +#define IDI_START 8 +#define IDI_STOP 9 +#define IDI_PAUSE 10 +#define IDI_HIDDEN 11 +#define IDI_SCAN 12 +#define IDI_LIST 13 + + +// custom login errors (m_protosvc.h) +#define LOGINERR_TOOQUICKLY 1000 +#define LOGINERR_TOOMANYCONNECTIONS 1001 +#define LOGINERR_UNKNOWN 1002 diff --git a/isee_tweaker/docs/isee_tweaker.png b/isee_tweaker/docs/isee_tweaker.png new file mode 100644 index 0000000..cf6cccd Binary files /dev/null and b/isee_tweaker/docs/isee_tweaker.png differ diff --git a/isee_tweaker/docs/readme_iseetweaker.txt b/isee_tweaker/docs/readme_iseetweaker.txt new file mode 100644 index 0000000..41f7d90 --- /dev/null +++ b/isee_tweaker/docs/readme_iseetweaker.txt @@ -0,0 +1,40 @@ +ISee Tweaker Plugin +Version 0.1.0.0 +License: Open Source +Written by and copyright (c) Sergey V. Gershovich a.k.a. Jazzy$, 2005 + e-mail: sir-jazzy@yandex.ru + +This plugin can tweak some hidden ISee settings... + + +***** DISCLAIMER OF WARRANTY ***** + +This software and the accompanying files are presented "AS IS" and without +warranties whether expressed or implied. Use it at your own risk. + +!!! Backup you database first !!! + +********************************** + + +Installation +------------- +1. Close Miranda IM. +2. Find Miranda IM main directory (search for miranda32.exe). +3. Put isee_tweaker.dll into plugins directory. +4. Start Miranda IM. +5. Go to Options/Plugins/ISee Tweaker to configure some stuff. + + +Uninstall +----------- +1. Close Miranda IM. +2. Find Miranda IM main directory (search for miranda32.exe). +3. Delete isee_tweaker.dll from Plugins directory. + + +Version history +------------------ +0.1.0.0: - Redisign options dialog + - Added more clients +0.0.0.1: - Initial release \ No newline at end of file diff --git a/isee_tweaker/docs/rebase_iseetweaker.txt b/isee_tweaker/docs/rebase_iseetweaker.txt new file mode 100644 index 0000000..95b8625 --- /dev/null +++ b/isee_tweaker/docs/rebase_iseetweaker.txt @@ -0,0 +1,4 @@ +== TO PLUGIN DEVELOPERS == + +This plugin has its Base Address set to: +0x30130000 \ No newline at end of file diff --git a/isee_tweaker/docs/todo_iseetweaker.txt b/isee_tweaker/docs/todo_iseetweaker.txt new file mode 100644 index 0000000..513c9bf --- /dev/null +++ b/isee_tweaker/docs/todo_iseetweaker.txt @@ -0,0 +1,9 @@ +ISee Tweaker Roadmap: + +[ ] Updater support +[ ] Add Unicode Tweaks +[ ] Maybe something else. + +=========================== +[ ] - not implemented yet +[+] - implemented and working \ No newline at end of file -- cgit v1.2.3