Skip to content

Commit 116b3b9

Browse files
author
Elia Doumerc
committed
Merge develop into feature/sendPics
2 parents 58570e6 + 8a3cc0c commit 116b3b9

File tree

145 files changed

+869
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+869
-119
lines changed

.squot-materialize

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
],
66
#encoding : 'TXT'
77
},
8+
SquotImageMapper {
9+
#path : FSAbsolutePath [
10+
'file-icon.png'
11+
],
12+
#encoding : Class [ #PNGReadWriter ]
13+
},
814
SquotPlaintextMapper {
915
#path : FSAbsolutePath [
1016
'.github',
@@ -117,7 +123,7 @@
117123
'assets',
118124
'logo.png'
119125
],
120-
#encoding : Class [ #PNGReadWriter ]
126+
#encoding : @6
121127
},
122128
SquotCypressMapper {
123129
#package : MCPackage {
@@ -169,19 +175,19 @@
169175
],
170176
#encoding : Class [ #JPEGReadWriter2 ]
171177
},
178+
SquotImageMapper {
179+
#path : FSAbsolutePath [
180+
'assets',
181+
'play_circle_outline_icon.png'
182+
],
183+
#encoding : @6
184+
},
172185
SquotPlaintextMapper {
173186
#path : FSAbsolutePath [
174187
'.github',
175188
'workflows',
176189
'ci-linter.yml'
177190
],
178191
#encoding : 'TXT'
179-
},
180-
SquotImageMapper {
181-
#path : FSAbsolutePath [
182-
'assets',
183-
'play_circle_outline_icon.png'
184-
],
185-
#encoding : @40
186192
}
187193
]

assets/playbutton.jpg

2 Bytes
Loading

file-icon.png

6.71 KB
Loading

packages/TelegramClient-Core.package/TCCAnimatedStickerMessage.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"class" : {
3-
"newFrom:" : "JK 5/31/2024 11:40" },
3+
"newFrom:" : "JK 6/23/2024 11:47" },
44
"instance" : {
55
"asSnippet" : "RK 6/26/2021 11:37",
66
"asText" : "rgw 5/12/2022 14:28",

packages/TelegramClient-Core.package/TCCCore.class/instance/initialize.st

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ initialize
1010
imageStore: (TCCImageStore newWith: self);
1111
videoStore: (TCCVideoStore newWith: self);
1212
stickerStore: (TCCStickerStore newWith: self);
13-
callbackCounter: 0.
14-
13+
callbackCounter: 0.
1514

1615
"Mac users report serious slowdowns when receiveLoop is running at lower priority"
1716
"So we have to rely on just the delay"

packages/TelegramClient-Core.package/TCCCore.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"handlePendingEvent:" : "per 8/2/2021 15:05",
2323
"imageStore" : "pk 6/19/2021 17:15",
2424
"imageStore:" : "TR 6/22/2021 09:33",
25-
"initialize" : "TU 6/14/2024 09:38",
25+
"initialize" : "JK 6/20/2024 22:16",
2626
"initializeHandlers" : "RS 8/1/2021 12:53",
2727
"isClientAlive" : "js 5/28/2020 17:18",
2828
"loggedInUserId" : "pk 8/5/2021 17:04",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
data-represantation of a single text message in a chat
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
instance creation
2+
newFrom: aJsonObject
3+
4+
^ self new
5+
filename: ((aJsonObject at: 'document') at: 'file_name');
6+
yourself
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
accessing
2+
asSnippet
3+
4+
^ self filename
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
accessing
2+
asText
3+
4+
^ self filename

0 commit comments

Comments
 (0)