File tree Expand file tree Collapse file tree 6 files changed +21
-25
lines changed
documentation/reference/sigstickers Expand file tree Collapse file tree 6 files changed +21
-25
lines changed Original file line number Diff line number Diff line change 33All major and minor version changes will be documented in this file. Details of
44patch-level version changes can be found in [ commit messages] ( ../../commits/master ) .
55
6+ ## 2024 - 2024/01/07
7+
8+ - update dependencies
9+
610## 2023 - 2023/08/31
711
812- Update deps
Original file line number Diff line number Diff line change @@ -24,8 +24,7 @@ Write cache data to a file identified by packName
2424#### Signature
2525
2626``` python
27- def createConverted (packName : str , data : dict ):
28- ...
27+ def createConverted (packName : str , data : dict ): ...
2928```
3029
3130
@@ -48,6 +47,5 @@ to call the verify function for that version
4847#### Signature
4948
5049``` python
51- def verifyConverted (packName : str ) -> bool :
52- ...
50+ def verifyConverted (packName : str ) -> bool : ...
5351```
Original file line number Diff line number Diff line change @@ -31,8 +31,7 @@ Make the dir if not exists
3131#### Signature
3232
3333``` python
34- def assureDirExists (directory : str , root : str ) -> str :
35- ...
34+ def assureDirExists (directory : str , root : str ) -> str : ...
3635```
3736
3837
@@ -52,8 +51,7 @@ Convert the webp images into png and gif images
5251#### Signature
5352
5453``` python
55- async def convertPack (swd : str , packName : str , noCache = False ):
56- ...
54+ async def convertPack (swd : str , packName : str , noCache = False ): ...
5755```
5856
5957
@@ -75,8 +73,7 @@ Convert the webp file to png
7573#### Signature
7674
7775``` python
78- def convertWithPIL (inputFile : str ) -> str :
79- ...
76+ def convertWithPIL (inputFile : str ) -> str : ...
8077```
8178
8279
@@ -103,8 +100,7 @@ c957a57000626a2dc3cb69bf0e79c91c6b196b74d4d6ca1cbb830d3ad0ad4e36
103100``` python
104101async def downloadPack (
105102 packId : str , packKey : str , cwd : str = os.getcwd()
106- ) -> tuple[str , str ]:
107- ...
103+ ) -> tuple[str , str ]: ...
108104```
109105
110106
@@ -127,6 +123,5 @@ Save a sticker
127123#### Signature
128124
129125``` python
130- def saveSticker (sticker : Sticker, path : str ) -> str :
131- ...
126+ def saveSticker (sticker : Sticker, path : str ) -> str : ...
132127```
Original file line number Diff line number Diff line change @@ -18,8 +18,7 @@ cli entry point
1818#### Signature
1919
2020``` python
21- def cli ():
22- ...
21+ def cli (): ...
2322```
2423
2524
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " sigstickers"
3- version = " 2023 "
3+ version = " 2024 "
44license = " mit"
55description = " Download sticker packs from Signal"
66authors = [" FredHappyface" ]
@@ -22,18 +22,18 @@ readme = "README.md"
2222
2323[tool .poetry .dependencies ]
2424python = " ^3.8"
25- Pillow = " <11,>=10.0 .0"
25+ Pillow = " <11,>=10.2 .0"
2626signalstickers-client = " <4,>=3.3.0"
27- emoji = " <3,>=2.8 .0"
27+ emoji = " <3,>=2.9 .0"
2828
2929[tool .poetry .scripts ]
3030sigstickers = " sigstickers:cli"
3131
3232[tool .poetry .group .dev .dependencies ]
33- pytest = " ^7.4.0 "
34- pylint = " ^2.17.5 "
35- handsdown = " ^2.0.1 "
36- coverage = " ^7.3 .0"
33+ pytest = " ^7.4.4 "
34+ pylint = " ^3.0.3 "
35+ handsdown = " ^2.1.0 "
36+ coverage = " ^7.4 .0"
3737
3838[tool .black ]
3939line-length = 100
Original file line number Diff line number Diff line change 1- Pillow < 11 ,>= 10.0 .0
2- emoji < 3 ,>= 2.8 .0
1+ Pillow < 11 ,>= 10.2 .0
2+ emoji < 3 ,>= 2.9 .0
33signalstickers-client < 4 ,>= 3.3.0
You can’t perform that action at this time.
0 commit comments