-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store library files directly in Resources ordner so that Windows can …
…find them
- Loading branch information
Tebbe Ubben
committed
Jul 8, 2024
1 parent
8f6310f
commit 102984a
Showing
57 changed files
with
203 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/doesLibraryExist.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
doesLibraryExist | ||
|
||
^ self libraryFile exists |
4 changes: 4 additions & 0 deletions
4
...ges/TelegramClient-Core.package/TCCExternalLibrary.class/class/downloadAllDependencies.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
downloadAllDependencies | ||
|
||
self libs do: [ :lib | lib downloadArchiveIfNotExists ] |
10 changes: 5 additions & 5 deletions
10
...dowsClient.class/class/downloadArchive.st → ...nalLibrary.class/class/downloadArchive.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
helper | ||
as yet unclassified | ||
downloadArchive | ||
|
||
| intermediatePath archive response | | ||
intermediatePath := FileDirectory default / 'archive.zip'. | ||
intermediatePath := FileDirectory default / (self fileName, '.zip'). | ||
intermediatePath exists ifTrue: [intermediatePath delete]. | ||
FileStream fileNamed: intermediatePath fullName do: [:stream | | ||
response := WebClient httpGet: self downloadUrl. | ||
stream | ||
binary; | ||
nextPutAll: response content. | ||
intermediatePath := FileDirectory default / 'archive.zip'.]. | ||
nextPutAll: response content.]. | ||
intermediatePath := FileDirectory default / (self fileName, '.zip'). | ||
archive := ZipArchive new readFrom: intermediatePath fullName. | ||
archive extractAllTo: FileDirectory default. | ||
archive extractAllTo: FileDirectory default informing: nil overwrite: true. | ||
archive close. | ||
intermediatePath delete. |
4 changes: 4 additions & 0 deletions
4
.../TelegramClient-Core.package/TCCExternalLibrary.class/class/downloadArchiveIfNotExists.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
downloadArchiveIfNotExists | ||
|
||
self doesLibraryExist ifFalse: [self downloadArchive] |
8 changes: 8 additions & 0 deletions
8
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/downloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
as yet unclassified | ||
downloadUrl | ||
"URL of the ZIP archive that contains the shared library and its dependencies. All files should be placed at the root of the archive. The main library should have the name that is returned by sending the message 'fileName' + the platform specific file extension. Any other dependencies should be named in a way that the linker can find them." | ||
|
||
^ Smalltalk platformName caseOf: { | ||
['Win32'] -> [self windowsDownloadUrl]. | ||
['Mac OS'] -> [self macDownloadUrl]. | ||
['unix'] -> [self linuxDownloadUrl]} |
7 changes: 7 additions & 0 deletions
7
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/fileEnding.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
as yet unclassified | ||
fileEnding | ||
|
||
^ Smalltalk platformName caseOf: { | ||
['Win32'] -> ['dll']. | ||
['Mac OS'] -> ['dylib']. | ||
['unix'] -> ['so']} |
5 changes: 5 additions & 0 deletions
5
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/fileName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
as yet unclassified | ||
fileName | ||
"File name of the main library (without version and file extension)." | ||
|
||
^ self subclassResponsibility |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/libraryFile.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
libraryFile | ||
|
||
^ (FileDirectory default / (self fileName, '-', self versionName , '.', self fileEnding)) |
8 changes: 8 additions & 0 deletions
8
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/libs.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
as yet unclassified | ||
libs | ||
|
||
| list | | ||
list := OrderedCollection new. | ||
list add: TCCLibWebP. | ||
list add: TCCFFIClient. | ||
^ list |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/linuxDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
linuxDownloadUrl | ||
|
||
^ self subclassResponsibility |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/macDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
macDownloadUrl | ||
|
||
^ self subclassResponsibility |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/moduleName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
moduleName | ||
|
||
^ (FileDirectory default / (self fileName, '-', self versionName , '.', self fileEnding)) fullName |
5 changes: 5 additions & 0 deletions
5
...es/TelegramClient-Core.package/TCCExternalLibrary.class/class/mustDownloadDependencies.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
as yet unclassified | ||
mustDownloadDependencies | ||
|
||
self libs do: [ :lib | lib doesLibraryExist ifFalse: [ ^true ] ]. | ||
^ false |
5 changes: 5 additions & 0 deletions
5
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/versionName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
as yet unclassified | ||
versionName | ||
"Version of the library. Can be an arbitrary string but must not be an illegal file name since it is used to determine where to store the library files. Change this when updating the dependency, so that the new archive is downladed." | ||
|
||
^ self subclassResponsibility |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCExternalLibrary.class/class/windowsDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
windowsDownloadUrl | ||
|
||
^ self subclassResponsibility |
19 changes: 19 additions & 0 deletions
19
packages/TelegramClient-Core.package/TCCExternalLibrary.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"class" : { | ||
"doesLibraryExist" : "TU 7/8/2024 16:30", | ||
"downloadAllDependencies" : "TU 7/3/2024 15:29", | ||
"downloadArchive" : "TU 7/8/2024 16:39", | ||
"downloadArchiveIfNotExists" : "TU 7/3/2024 15:29", | ||
"downloadUrl" : "TU 7/8/2024 16:34", | ||
"fileEnding" : "TU 6/28/2024 02:45", | ||
"fileName" : "TU 7/8/2024 16:30", | ||
"libraryFile" : "TU 7/8/2024 16:30", | ||
"libs" : "TU 7/3/2024 15:27", | ||
"linuxDownloadUrl" : "TU 7/8/2024 16:33", | ||
"macDownloadUrl" : "TU 7/8/2024 16:33", | ||
"moduleName" : "TU 7/8/2024 16:29", | ||
"mustDownloadDependencies" : "TU 7/3/2024 15:19", | ||
"versionName" : "TU 6/28/2024 03:28", | ||
"windowsDownloadUrl" : "TU 7/8/2024 16:33" }, | ||
"instance" : { | ||
} } |
14 changes: 14 additions & 0 deletions
14
packages/TelegramClient-Core.package/TCCExternalLibrary.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category" : "TelegramClient-Core", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
], | ||
"name" : "TCCExternalLibrary", | ||
"pools" : [ | ||
], | ||
"super" : "ExternalLibrary", | ||
"type" : "normal" } |
4 changes: 0 additions & 4 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/downloadUrl.st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/fileName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
fileName | ||
|
||
^ 'libtdjson' |
4 changes: 0 additions & 4 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/libraryFilePath.st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/linuxDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
linuxDownloadUrl | ||
|
||
^ 'https://github.com/TebbeUbben/tdlib/releases/download/1.8.0/tdlib-1.8.0-linux.zip' |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/macDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
macDownloadUrl | ||
|
||
^ 'https://github.com/TebbeUbben/tdlib/releases/download/1.8.0/tdlib-1.8.0-mac.zip' |
15 changes: 0 additions & 15 deletions
15
packages/TelegramClient-Core.package/TCCFFIClient.class/class/moduleName.st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/versionName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
versionName | ||
|
||
^ '1.8.0' |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCFFIClient.class/class/windowsDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
windowsDownloadUrl | ||
|
||
^ 'https://github.com/TebbeUbben/tdlib/releases/download/1.8.0/tdlib-1.8.0-windows.zip' |
10 changes: 6 additions & 4 deletions
10
packages/TelegramClient-Core.package/TCCFFIClient.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCLibWebP.class/class/fileName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
fileName | ||
|
||
^ 'libwebp' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
packages/TelegramClient-Core.package/TCCLibWebP.class/class/instance.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
as yet unclassified | ||
instance | ||
|
||
instance ifNil: [ instance := super basicNew initialize ]. | ||
^ instance |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCLibWebP.class/class/linuxDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
linuxDownloadUrl | ||
|
||
^ 'https://github.com/TebbeUbben/libwebp/releases/download/1.4.0/libwebp-1.4.0-linux.zip' |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCLibWebP.class/class/macDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
macDownloadUrl | ||
|
||
^ 'https://github.com/TebbeUbben/libwebp/releases/download/1.4.0/libwebp-1.4.0-mac.zip' |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCLibWebP.class/class/resetInstance.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
resetInstance | ||
|
||
instance := nil. |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCLibWebP.class/class/versionName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
versionName | ||
|
||
^ '1.4.0' |
4 changes: 4 additions & 0 deletions
4
packages/TelegramClient-Core.package/TCCLibWebP.class/class/windowsDownloadUrl.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
as yet unclassified | ||
windowsDownloadUrl | ||
|
||
^ 'https://github.com/TebbeUbben/libwebp/releases/download/1.4.0/libwebp-1.4.0-windows.zip' |
2 changes: 1 addition & 1 deletion
2
...tBuffer.outputBufferSize.outputStride..st → ...tBuffer.outputBufferSize.outputStride..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
WebPDecodeBGRAInto: aPointer1 dataSize: aNumber1 outputBuffer: aPointer2 outputBufferSize: aNumber2 outputStride: aNumber3 | ||
<cdecl: uint8_t* 'WebPDecodeBGRAInto'(uint8_t*, size_t, uint8_t*, size_t, long) module: 'libwebp'> | ||
<cdecl: uint8_t* 'WebPDecodeBGRAInto'(uint8_t*, size_t, uint8_t*, size_t, long)> | ||
^self externalCallFailed |
2 changes: 1 addition & 1 deletion
2
...ass/WebPGetInfo.dataSize.width.height..st → ...nce/WebPGetInfo.dataSize.width.height..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
WebPGetInfo: aPointer1 dataSize: aNumber width: aPointer2 height: aPointer3 | ||
<cdecl: long 'WebPGetInfo'(uint8_t*, size_t, long*, long*) module: 'libwebp'> | ||
<cdecl: long 'WebPGetInfo'(uint8_t*, size_t, long*, long*)> | ||
^self externalCallFailed |
16 changes: 11 additions & 5 deletions
16
packages/TelegramClient-Core.package/TCCLibWebP.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
{ | ||
"class" : { | ||
"WebPDecodeBGRAInto:dataSize:outputBuffer:outputBufferSize:outputStride:" : "TU 5/18/2024 15:20", | ||
"WebPGetInfo:dataSize:width:height:" : "TU 5/18/2024 01:44", | ||
"decode:" : "TU 5/22/2024 19:22", | ||
"decode:" : "TU 7/3/2024 16:05", | ||
"fileName" : "TU 6/28/2024 02:40", | ||
"formFrom:dimensions:" : "TU 5/22/2024 19:21", | ||
"getFileInfo:" : "TU 5/29/2024 15:05" }, | ||
"getFileInfo:" : "TU 7/3/2024 16:05", | ||
"instance" : "TU 7/3/2024 16:03", | ||
"linuxDownloadUrl" : "TU 7/8/2024 16:35", | ||
"macDownloadUrl" : "TU 7/8/2024 16:35", | ||
"resetInstance" : "TU 7/3/2024 16:04", | ||
"versionName" : "TU 6/28/2024 02:40", | ||
"windowsDownloadUrl" : "TU 7/8/2024 16:35" }, | ||
"instance" : { | ||
} } | ||
"WebPDecodeBGRAInto:dataSize:outputBuffer:outputBufferSize:outputStride:" : "TU 7/3/2024 15:46", | ||
"WebPGetInfo:dataSize:width:height:" : "TU 7/3/2024 15:46" } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
packages/TelegramClient-Core.package/TCCLinuxClient.class/class/downloadUrl.st
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
packages/TelegramClient-Core.package/TCCLinuxClient.class/class/libraryFilePath.st
This file was deleted.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
packages/TelegramClient-Core.package/TCCLinuxClient.class/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"class" : { | ||
"downloadUrl" : "rgw 7/16/2022 17:40", | ||
"libraryFilePath" : "rgw 7/16/2022 17:57" }, | ||
}, | ||
"instance" : { | ||
"type" : "r.s 7/13/2020 17:31" } } |
4 changes: 0 additions & 4 deletions
4
packages/TelegramClient-Core.package/TCCMacClient.class/class/downloadUrl.st
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
packages/TelegramClient-Core.package/TCCMacClient.class/class/libraryFilePath.st
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.