Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-07Merge pull request #683 from bodqhrohro/sa_safety_check1HEADmasterEion Robb
sa->pc safety check in request/timeout callbacks
2021-08-07sa->pc safety check in request/timeout callbacksBohdan Horbeshko
It mitigates a common cause of segmentation faults due to a freed SkypeAccount structure which may contain corrupted data already, still the sa->pc may be NULL as it is freed right before the whole structure. It does not guarantee the crash prevention though, and does not solve the root problem, as these callbacks should be removed and not invoked if an account is disconnected. The crash backtraces are collected in #650, most of them happened in `skypeweb_post_or_get`.
2021-08-05Merge pull request #682 from bodqhrohro/ppft_connection_errorEion Robb
Fix account disabling on a connection failure on PPFT stage
2021-08-05Fix account disabling on a connection failure on PPFT stageBohdan Horbeshko
Inspired by https://github.com/EionRobb/purple-googlechat/commit/a68a48600baceb55ad608d9603e85d43d0edf566
2021-02-15Merge pull request #676 from jpalus/masterEion Robb
Fix direction of uri messages
2021-02-15Fix direction of uri messagesJan Palus
2021-02-02Merge pull request #674 from jpalus/masterEion Robb
Unify line endings to LF
2021-02-01Unify line endings to LFJan Palus
different files used different convention -- some used LF, some used CRLF and some used mix of LF and CRLF: $ git ls-files | ag -v '(png|dll)$' | xargs file -b | sort | uniq -c 4 ASCII text 3 ASCII text, with CRLF line terminators 1 ASCII text, with very long lines 15 C source, ASCII text 2 C source, ASCII text, with CRLF, LF line terminators 6 C source, ASCII text, with CRLF line terminators 1 C source, ASCII text, with very long lines, with CRLF, LF line terminators 1 C source, ASCII text, with very long lines, with CRLF line terminators 1 makefile script, ASCII text 1 makefile script, ASCII text, with very long lines 1 makefile script, ASCII text, with very long lines, with CRLF line terminators 1 UTF-8 Unicode text
2021-02-01Merge pull request #673 from jpalus/masterEion Robb
Preliminary video attachment support
2021-01-31Preliminary video attachment supportJan Palus
Message looks almost the same as image attachment hence logic is almost the same. For now Pidgin displays thumbnail + link to full video while Bitlbee shows link.
2021-01-25Merge pull request #672 from jpalus/masterEion Robb
Ensure sent message is in XHTML format
2021-01-25Ensure sent message is in XHTML formatJan Palus
It appears that Skype client is very sensitive to type of message that is being sent. Implicit linkifing through `purple_markup_linkify()` for some reason adds links with uppercase "<A HREF" which is ignored by skype client. While Pidgin itself seems to handle it correctly, it is not the case for all libpurple clients ie BitlBee. Follow other protocols (ie Jabber) and ensure message is XHTML before sending.
2021-01-24Merge pull request #671 from jpalus/masterEion Robb
Switch BitlBee image message from system to normal IM/Chat
2021-01-24Switch BitlBee image message from system to normal IM/ChatJan Palus
2020-12-28Merge pull request #665 from bodqhrohro/0920_fixEion Robb
Make the opid stage optional
2020-09-25Make the opid stage optionalbodqhrohro
2020-08-30Merge pull request #659 from gitvb/develEion Robb
Update purple-skypeweb.spec to v1.7
2020-08-30Update purple-skypeweb.spec to v1.7Valentine Barshak
2020-08-251.7 version bump1.7Eion Robb
2020-08-24Copyright year bumpEion Robb
(has it really been 6 years that I've been working on this plugin!!!!)
2020-08-24Fix some static analysis warningsEion Robb
2020-08-24Use the alt-login by default, as it's way less breakable than the web loginEion Robb
2020-08-24Handle extra step needed for (legacy) web-based loginEion Robb
Should help issue #656
2020-07-12Use the new interestedResources endpoint subscription to get all the ↵Eion Robb
presences of all users See issue #649
2020-07-12Manually request contact statuses as a one-off to help spur later status updatesEion Robb
See issue #649
2020-06-261.6 version bump1.6Eion Robb
2019-06-07Get rid of the 'verbose' debug flag requirement for alt-auth errorsEion Robb
2019-06-07Add verbose logging to alt-auth to help track down issuesEion Robb
2020-06-24Merge pull request #653 from PicoGeyer/fix_losing_admin_rightsEion Robb
Fix loss of admin rights when entering a group
2020-06-24Fix loss of admin rights when entering a groupPico Geyer
When entering a group chat, skypeweb would explicity specify the user role which could lead to a users role being downgraded from admin to user. Removes explicit specifying the role so that what ever role we are given is preserved.
2019-10-18Merge pull request #647 from denics/masterEion Robb
Don't git cmake build folder
2019-10-18Don't git cmake build folderDenix
2019-05-20Merge pull request #642 from 667bdrm/fix-variable-typoEion Robb
Fix build error (variable typo)
2019-05-20Fix build error (variable typo)667bdrm
2019-05-20Merge pull request #641 from timgws/masterEion Robb
Give a detailed login failure message
2019-05-20Give a detailed login failure messageTim Groeneveld
2019-05-19Merge pull request #640 from dequis/fix-alt-loginEion Robb
Fix "No handler found for resource" on alt login
2019-05-19Fix "No handler found for resource" on alt logindequis
That error is basically a 404 that you get when you set Accept to json in the api.skype.com server. The fix is to grab a new rps URL from skypeweb, it lives in the 'rps' server (edge.skype.com) and has a slightly different path. This also removes the 'skyper' md5-based login. It's still referenced in the javascript of skypeweb, but probably unused because the endpoint is the same we're hitting here and it's dead. SOAP login still works with no issues, for both skype usernames and microsoft accounts (it didn't work with skype usernames when i first wrote this, but i remember at some point later throwing skype usernames at the SOAP login and having it work)
2019-03-06Purple3 compatEion Robb
2019-03-06Merge pull request #626 from himselfv/nosystemEion Robb
Turning image messages into non-PURPLE_MESSAGE_SYSTEM
2019-01-04Some fixes and additions to the last commithimselfv
2019-01-04Turning image message into non-PURPLE_MESSAGE_SYSTEMhimselfv
2018-11-10Merge pull request #621 from basicmaster/fix_printf_warningsEion Robb
Fix printf warnings
2018-09-20Output a direct link to inline images for Bitlbee usersEion Robb
2018-09-09Add MinGW32 printf %zu workaroundStefan Pöschel
2018-09-08Fix printf warningsStefan Pöschel
2018-07-20Fix Windows compatibility with latest file transfer changesEion Robb
2018-07-08Merge pull request #617 from xomachine/masterEion Robb
Fix for a file transfer
2018-07-07Removed unnecesary refcounter incrementxomachine
2018-07-07Fixed progressbar when file transferxomachine