sticker-convert 2.13.3.0__py3-none-any.whl → 2.17.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. sticker_convert/__main__.py +24 -27
  2. sticker_convert/auth/__init__.py +0 -0
  3. sticker_convert/auth/auth_base.py +19 -0
  4. sticker_convert/{utils/auth/get_discord_auth.py → auth/auth_discord.py} +149 -118
  5. sticker_convert/{utils/auth/get_kakao_auth.py → auth/auth_kakao_android_login.py} +331 -330
  6. sticker_convert/auth/auth_kakao_desktop_login.py +327 -0
  7. sticker_convert/{utils/auth/get_kakao_desktop_auth.py → auth/auth_kakao_desktop_memdump.py} +281 -263
  8. sticker_convert/{utils/auth/get_line_auth.py → auth/auth_line.py} +98 -80
  9. sticker_convert/{utils/auth/get_signal_auth.py → auth/auth_signal.py} +139 -135
  10. sticker_convert/auth/auth_telethon.py +161 -0
  11. sticker_convert/{utils/auth/get_viber_auth.py → auth/auth_viber.py} +250 -235
  12. sticker_convert/{utils/auth → auth}/telegram_api.py +736 -675
  13. sticker_convert/cli.py +623 -608
  14. sticker_convert/converter.py +1093 -1084
  15. sticker_convert/definitions.py +4 -0
  16. sticker_convert/downloaders/download_band.py +111 -110
  17. sticker_convert/downloaders/download_base.py +171 -166
  18. sticker_convert/downloaders/download_discord.py +92 -91
  19. sticker_convert/downloaders/download_kakao.py +417 -404
  20. sticker_convert/downloaders/download_line.py +484 -475
  21. sticker_convert/downloaders/download_ogq.py +80 -79
  22. sticker_convert/downloaders/download_signal.py +108 -105
  23. sticker_convert/downloaders/download_telegram.py +56 -55
  24. sticker_convert/downloaders/download_viber.py +121 -120
  25. sticker_convert/gui.py +788 -873
  26. sticker_convert/gui_components/frames/comp_frame.py +180 -166
  27. sticker_convert/gui_components/frames/config_frame.py +156 -113
  28. sticker_convert/gui_components/frames/control_frame.py +32 -30
  29. sticker_convert/gui_components/frames/cred_frame.py +232 -233
  30. sticker_convert/gui_components/frames/input_frame.py +139 -137
  31. sticker_convert/gui_components/frames/output_frame.py +112 -110
  32. sticker_convert/gui_components/frames/right_clicker.py +25 -23
  33. sticker_convert/gui_components/windows/advanced_compression_window.py +757 -757
  34. sticker_convert/gui_components/windows/base_window.py +7 -2
  35. sticker_convert/gui_components/windows/discord_get_auth_window.py +79 -82
  36. sticker_convert/gui_components/windows/kakao_get_auth_window.py +511 -321
  37. sticker_convert/gui_components/windows/line_get_auth_window.py +94 -102
  38. sticker_convert/gui_components/windows/signal_get_auth_window.py +84 -89
  39. sticker_convert/gui_components/windows/viber_get_auth_window.py +168 -168
  40. sticker_convert/ios-message-stickers-template/.github/FUNDING.yml +3 -3
  41. sticker_convert/ios-message-stickers-template/README.md +10 -10
  42. sticker_convert/ios-message-stickers-template/stickers/Info.plist +43 -43
  43. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Info.plist +31 -31
  44. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Contents.json +6 -6
  45. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Contents.json +20 -20
  46. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 1.sticker/Contents.json +9 -9
  47. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 2.sticker/Contents.json +9 -9
  48. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/Sticker Pack.stickerpack/Sticker 3.sticker/Contents.json +9 -9
  49. sticker_convert/ios-message-stickers-template/stickers StickerPackExtension/Stickers.xcstickers/iMessage App Icon.stickersiconset/Contents.json +91 -91
  50. sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.pbxproj +364 -364
  51. sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -7
  52. sticker_convert/ios-message-stickers-template/stickers.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  53. sticker_convert/ios-message-stickers-template/stickers.xcodeproj/xcuserdata/niklaspeterson.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  54. sticker_convert/job.py +166 -130
  55. sticker_convert/job_option.py +1 -0
  56. sticker_convert/locales/en_US/LC_MESSAGES/base.mo +0 -0
  57. sticker_convert/locales/ja_JP/LC_MESSAGES/base.mo +0 -0
  58. sticker_convert/locales/zh_CN/LC_MESSAGES/base.mo +0 -0
  59. sticker_convert/locales/zh_TW/LC_MESSAGES/base.mo +0 -0
  60. sticker_convert/py.typed +0 -0
  61. sticker_convert/resources/NotoColorEmoji.ttf +0 -0
  62. sticker_convert/resources/help.ja_JP.json +88 -0
  63. sticker_convert/resources/help.json +10 -7
  64. sticker_convert/resources/help.zh_CN.json +88 -0
  65. sticker_convert/resources/help.zh_TW.json +88 -0
  66. sticker_convert/resources/input.ja_JP.json +74 -0
  67. sticker_convert/resources/input.json +121 -121
  68. sticker_convert/resources/input.zh_CN.json +74 -0
  69. sticker_convert/resources/input.zh_TW.json +74 -0
  70. sticker_convert/resources/output.ja_JP.json +38 -0
  71. sticker_convert/resources/output.zh_CN.json +38 -0
  72. sticker_convert/resources/output.zh_TW.json +38 -0
  73. sticker_convert/uploaders/compress_wastickers.py +186 -177
  74. sticker_convert/uploaders/upload_base.py +44 -35
  75. sticker_convert/uploaders/upload_signal.py +218 -203
  76. sticker_convert/uploaders/upload_telegram.py +353 -338
  77. sticker_convert/uploaders/upload_viber.py +178 -169
  78. sticker_convert/uploaders/xcode_imessage.py +295 -286
  79. sticker_convert/utils/callback.py +238 -6
  80. sticker_convert/utils/emoji.py +16 -4
  81. sticker_convert/utils/files/json_resources_loader.py +24 -19
  82. sticker_convert/utils/files/metadata_handler.py +3 -3
  83. sticker_convert/utils/translate.py +108 -0
  84. sticker_convert/utils/url_detect.py +40 -37
  85. sticker_convert/version.py +1 -1
  86. {sticker_convert-2.13.3.0.dist-info → sticker_convert-2.17.0.0.dist-info}/METADATA +89 -74
  87. {sticker_convert-2.13.3.0.dist-info → sticker_convert-2.17.0.0.dist-info}/RECORD +91 -74
  88. sticker_convert/utils/auth/telethon_setup.py +0 -97
  89. sticker_convert/utils/singletons.py +0 -18
  90. {sticker_convert-2.13.3.0.dist-info → sticker_convert-2.17.0.0.dist-info}/WHEEL +0 -0
  91. {sticker_convert-2.13.3.0.dist-info → sticker_convert-2.17.0.0.dist-info}/entry_points.txt +0 -0
  92. {sticker_convert-2.13.3.0.dist-info → sticker_convert-2.17.0.0.dist-info}/licenses/LICENSE +0 -0
  93. {sticker_convert-2.13.3.0.dist-info → sticker_convert-2.17.0.0.dist-info}/top_level.txt +0 -0
@@ -1,91 +1,91 @@
1
- {
2
- "images" : [
3
- {
4
- "filename" : "iPhone-settings-29pt@2x.png",
5
- "idiom" : "iphone",
6
- "scale" : "2x",
7
- "size" : "29x29"
8
- },
9
- {
10
- "filename" : "iPhone-Settings-29pt@3x.png",
11
- "idiom" : "iphone",
12
- "scale" : "3x",
13
- "size" : "29x29"
14
- },
15
- {
16
- "filename" : "Messages-iPhone-60x45pt@2x.png",
17
- "idiom" : "iphone",
18
- "scale" : "2x",
19
- "size" : "60x45"
20
- },
21
- {
22
- "filename" : "Messages-iPhone-60x45pt@3x.png",
23
- "idiom" : "iphone",
24
- "scale" : "3x",
25
- "size" : "60x45"
26
- },
27
- {
28
- "filename" : "iPad-Settings-29pt@2x.png",
29
- "idiom" : "ipad",
30
- "scale" : "2x",
31
- "size" : "29x29"
32
- },
33
- {
34
- "filename" : "Messages-iPad-67x50pt@2x.png",
35
- "idiom" : "ipad",
36
- "scale" : "2x",
37
- "size" : "67x50"
38
- },
39
- {
40
- "filename" : "Messages-iPad-Pro-74x55pt@2x.png",
41
- "idiom" : "ipad",
42
- "scale" : "2x",
43
- "size" : "74x55"
44
- },
45
- {
46
- "filename" : "App-Store-1024x1024pt.png",
47
- "idiom" : "ios-marketing",
48
- "scale" : "1x",
49
- "size" : "1024x1024"
50
- },
51
- {
52
- "filename" : "Messages27x20pt@2x.png",
53
- "idiom" : "universal",
54
- "platform" : "ios",
55
- "scale" : "2x",
56
- "size" : "27x20"
57
- },
58
- {
59
- "filename" : "Messages27x20pt@3x.png",
60
- "idiom" : "universal",
61
- "platform" : "ios",
62
- "scale" : "3x",
63
- "size" : "27x20"
64
- },
65
- {
66
- "filename" : "Messages32x24pt@2x.png",
67
- "idiom" : "universal",
68
- "platform" : "ios",
69
- "scale" : "2x",
70
- "size" : "32x24"
71
- },
72
- {
73
- "filename" : "Messages32x24pt@3x.png",
74
- "idiom" : "universal",
75
- "platform" : "ios",
76
- "scale" : "3x",
77
- "size" : "32x24"
78
- },
79
- {
80
- "filename" : "Messages-App-Store-1024x768pt.png",
81
- "idiom" : "ios-marketing",
82
- "platform" : "ios",
83
- "scale" : "1x",
84
- "size" : "1024x768"
85
- }
86
- ],
87
- "info" : {
88
- "author" : "xcode",
89
- "version" : 1
90
- }
91
- }
1
+ {
2
+ "images" : [
3
+ {
4
+ "filename" : "iPhone-settings-29pt@2x.png",
5
+ "idiom" : "iphone",
6
+ "scale" : "2x",
7
+ "size" : "29x29"
8
+ },
9
+ {
10
+ "filename" : "iPhone-Settings-29pt@3x.png",
11
+ "idiom" : "iphone",
12
+ "scale" : "3x",
13
+ "size" : "29x29"
14
+ },
15
+ {
16
+ "filename" : "Messages-iPhone-60x45pt@2x.png",
17
+ "idiom" : "iphone",
18
+ "scale" : "2x",
19
+ "size" : "60x45"
20
+ },
21
+ {
22
+ "filename" : "Messages-iPhone-60x45pt@3x.png",
23
+ "idiom" : "iphone",
24
+ "scale" : "3x",
25
+ "size" : "60x45"
26
+ },
27
+ {
28
+ "filename" : "iPad-Settings-29pt@2x.png",
29
+ "idiom" : "ipad",
30
+ "scale" : "2x",
31
+ "size" : "29x29"
32
+ },
33
+ {
34
+ "filename" : "Messages-iPad-67x50pt@2x.png",
35
+ "idiom" : "ipad",
36
+ "scale" : "2x",
37
+ "size" : "67x50"
38
+ },
39
+ {
40
+ "filename" : "Messages-iPad-Pro-74x55pt@2x.png",
41
+ "idiom" : "ipad",
42
+ "scale" : "2x",
43
+ "size" : "74x55"
44
+ },
45
+ {
46
+ "filename" : "App-Store-1024x1024pt.png",
47
+ "idiom" : "ios-marketing",
48
+ "scale" : "1x",
49
+ "size" : "1024x1024"
50
+ },
51
+ {
52
+ "filename" : "Messages27x20pt@2x.png",
53
+ "idiom" : "universal",
54
+ "platform" : "ios",
55
+ "scale" : "2x",
56
+ "size" : "27x20"
57
+ },
58
+ {
59
+ "filename" : "Messages27x20pt@3x.png",
60
+ "idiom" : "universal",
61
+ "platform" : "ios",
62
+ "scale" : "3x",
63
+ "size" : "27x20"
64
+ },
65
+ {
66
+ "filename" : "Messages32x24pt@2x.png",
67
+ "idiom" : "universal",
68
+ "platform" : "ios",
69
+ "scale" : "2x",
70
+ "size" : "32x24"
71
+ },
72
+ {
73
+ "filename" : "Messages32x24pt@3x.png",
74
+ "idiom" : "universal",
75
+ "platform" : "ios",
76
+ "scale" : "3x",
77
+ "size" : "32x24"
78
+ },
79
+ {
80
+ "filename" : "Messages-App-Store-1024x768pt.png",
81
+ "idiom" : "ios-marketing",
82
+ "platform" : "ios",
83
+ "scale" : "1x",
84
+ "size" : "1024x768"
85
+ }
86
+ ],
87
+ "info" : {
88
+ "author" : "xcode",
89
+ "version" : 1
90
+ }
91
+ }