Mads Marquart
e1e988272b
Version up, thanks to @kapi2289
...
- Removed / privatized a lot of undocumented functionality, which might break some users application if they were relying on those (hence the minor version bump). See #432 for further reasoning
- Add `Client.forwardAttachment` and `Message.forwarded` attribute, see #420
- Fix parsing subattachments with no target, see #412
- Lots of other refactoring, aka. work on the transition towards v2
2019-06-23 18:02:05 +02:00
Mads Marquart
d91a7ea9e3
Remove internal stuff from _graphql in __init__.py
2019-06-23 17:44:03 +02:00
Mads Marquart
53c19f473b
Remove utils.py
...
The file, and contained functions, were explicitly documented as something you couldn't rely on for backwards compatibility
2019-06-23 17:38:27 +02:00
Mads Marquart
61502ed32a
Merge pull request #406 from carpedm20/refactor-model-parsing
...
Refactor model parsing
2019-04-25 21:06:26 +02:00
Mads Marquart
a71835a5b8
Version up, thanks to @kapi2289 and @LukasOndrejka
2019-04-17 22:58:37 +02:00
Mads Marquart
18ec1f5680
Merge branch 'master' into refactor-model-parsing
2019-04-17 22:06:07 +02:00
Mads Marquart
6636d49cc0
Remove graphql.py
2019-03-10 20:30:22 +01:00
Mads Marquart
94c30a2440
Merge pull request #405 from carpedm20/private-api
...
Privatize `client`, `utils` and `graphql` submodules
2019-03-10 16:42:48 +01:00
Mads Marquart
1460b2f421
Version up, thanks to @oneblue and @darylkell
2019-03-10 16:33:44 +01:00
Mads Marquart
0561718917
Import utils.py and graphql.py directly into the global module
2019-02-24 23:08:23 +01:00
Mads Marquart
98056e91c5
Split models.py into several files ( #398 )
...
* Move exception models into separate file
* Move thread model into separate file
* Move user model into separate file
* Move group and room models into separate file
* Move page model into separate file
* Move message model into separate file
* Move basic attachment models into separate file
* Move sticker model into separate file
* Move location models into separate file
* Move file attachment models into separate file
* Move mention model to reside with message model
* Move quick reply models into separate file
* Move poll models into separate file
* Move plan model into separate file
* Move active status model to reside with user model
* Move core enum model into separate file
* Move thread-related enums to reside with thread model
* Move typingstatus model to reside with user model
* Move emojisize and reaction enums to reside wtih message model
2019-02-24 20:06:59 +01:00
Mads Marquart
8d25540445
Version up, thanks to @kapi2289
2019-02-03 22:07:44 +01:00
Mads Marquart
82d071d52c
Version up
2019-01-31 21:27:04 +01:00
Mads Marquart
e0710a2ec1
Format strings using black
2019-01-31 20:55:22 +01:00
Mads Marquart
d20fc3b9ce
Format using black
(without string normalization)
2019-01-31 20:54:32 +01:00
Mads Marquart
f25faec108
Version up
2019-01-31 20:26:17 +01:00
Mads Marquart
e6bc5bbab3
Version up, thanks to @kapi2289 and @2FWAH
2019-01-31 20:20:17 +01:00
Mads Marquart
8ed3c1b159
Use flit
instead of setuptools
...
Mostly just a simple move from `setup.cfg` -> `pyproject.toml`. Had to reformat the description in `__init__` a little though.
2019-01-25 16:36:09 +01:00
Mads Marquart
4f947cdbb5
Version up, thanks to @kapi2289 and @kaushalvivek
2019-01-25 16:01:47 +01:00
Mads Marquart
f8d3b571ba
Version up, thanks to @ekohilas and @kapi2289
2018-12-09 21:21:00 +01:00
Mads Marquart
b4b8914448
Version up, thanks to @kapi2289
2018-09-27 21:53:12 +02:00
Mads Marquart
f0e849e9c0
Version up, thanks to @kapi2289, @gave92, @ThatAlexanderA and @1ttric
2018-08-30 00:08:27 +02:00
Mads Marquart
c352a0d698
Modified license, so it's correctly recognised by licensee
...
It _should_ be okay, since the modified version is less permissive
The only real addition is `Neither the name of the copyright holder nor`
2018-06-21 15:36:54 +02:00
Mads Marquart
c8f8b818e0
Version up, thanks to @orenyomtov and @ ThatAlexanderA
...
* Added `removeFriend` method, #298
* Removed `lxml` from dependencies, #301
* Moved configuration to setup.cfg instead of setup.py
2018-06-20 15:53:57 +02:00
Mads Marquart
44ebf38e47
Updated setup.py
and requirements, now we use setup.cfg
2018-06-20 13:35:56 +02:00
Mads Marquart
7bf6a9fadc
Version up, thanks to @2FWAH
...
* Fixed `onTyping`
* Fixed `changeThreadColor` with `MESSENGER_BLUE `
2018-06-05 13:17:46 +02:00
Mads Marquart
38f66147cb
Version up, thanks to @orenyomtov and @Abhinav2812
...
Also fixed `Client.isLoggedIn`
2018-05-18 17:35:03 +02:00
Mads Marquart
884af48270
Version up, thanks to @gave92
...
Properly fixed `markAsRead`, @gave92 reminded me that I forgot to change the `True` to `'true'` when removing `encode_params`
2018-03-21 10:05:07 +01:00
Mads Marquart
b44758a195
Version up, thanks to @gave92
...
Fix `markAsRead` and `fetchUnread`; fixes #261
Added the `ssl_verify` instance variable, which allows disabling SSL varification for proxies
2018-03-19 21:28:48 +01:00
Mads Marquart
fb1ad5800c
Minor fix for searchFor
. See comments on #266
2018-03-05 22:07:16 +01:00
Taehoon Kim
4dd15b05ef
version up thanks to @2FWAH's PR #266 #267
2018-03-03 22:49:25 +09:00
Mads Marquart
900a9cdf72
Version up, thanks to @gave92
...
`fetchThreadList` is updated with a GraphQL implementation. See #241
2018-02-18 22:40:13 +01:00
Mads Marquart
3142524809
Version up, thanks to @DeltaF1
...
`onFriendRequest` functionality is restored
2018-02-07 11:30:19 +01:00
Mads Marquart
0b0d6179a2
Version up, thanks to @sdnian
...
`fetchThreadMessages` and `listen` can now parse AudioAttachments
2018-01-30 17:20:47 +01:00
Mads Marquart
2c0d098852
Fixes #240 , small backwards-compatablitity issue when sending images
2018-01-08 21:55:11 +01:00
Mads Marquart
e4290cd465
Version up, thanks to @lobstr
2018-01-02 13:40:50 +01:00
Mads Marquart
4f1f9bf1ce
Fixed errors on unknown genders
2017-12-15 23:46:47 +01:00
Mads Marquart
32c72c2f35
Version up, thanks to @Dante383
2017-12-10 20:08:13 +01:00
Mads Marquart
478eaebdec
Removed copyright icon from README.rst, fixing #219
2017-10-21 18:47:12 +02:00
Mads Marquart
7ecf229db5
See commit description
...
- Deprecated `sendMessage` and `sendEmoji` in favor of `send`
- (Almost) Fully integrated attachment support
- Updated tests
- General cleanup
2017-10-21 17:59:44 +02:00
Mads Marquart
023fd58f05
Version up, thanks to @ekohilas
2017-10-03 22:46:04 +02:00
Mads Marquart
57954816b2
Version up, thanks to @WeiTang114
2017-10-03 08:29:34 +02:00
Mads Marquart
9d5f06b810
Fixed pip setup
2017-09-30 19:17:40 +02:00
Mads Marquart
b8fdcda2fb
Properly uploading requirements (pip requires changed version number)
2017-09-30 01:15:41 +02:00
Mads Marquart
0dac7b7b81
Version up, thanks to @ekohilas
2017-09-27 21:20:20 +02:00
Mads Marquart
cd4a18cb5a
Version up
2017-09-25 20:02:35 +02:00
Mads Marquart
c51a332560
Version up, thanks to @PythonNut
2017-08-27 23:03:50 +02:00
Mads Marquart
fea4ad9e89
Version up, Thanks to ritu99
2017-08-10 15:25:38 +02:00
Mads Marquart
0661367ebb
Properly fixed #182
2017-08-02 23:08:34 +02:00
Mads Marquart
3c07e42ba2
Version up, fixed #182
2017-07-26 23:13:19 +02:00