Skip to content

Tags: joydit/tdesktop

Tags

v1.0.25

Toggle v1.0.25's commit message
Alpha 1.0.25: Edit phone number in Settings.

Also fix build for GCC.
Also add scripts for GitHub releases management.

v1.0.24

Toggle v1.0.24's commit message
Alpha 1.0.24: Fix build in Xcode.

v1.0.23

Toggle v1.0.23's commit message
Alpha 1.0.23: Fix changelog message.

v1.0.22

Toggle v1.0.22's commit message
Alpha 1.0.22: fix couple of crashes.

v1.0.21

Toggle v1.0.21's commit message
Alpha 1.0.21: Use custom refcount for MTP types.

It seems that heavy using std::shared_ptr and std::make_shared
like it was before completely kills the compilation time.

Also HistoryItem::_create now uses perfect forwarding.

v1.0.20

Toggle v1.0.20's commit message
Alpha 1.0.20: fix crash in old Windows versions.

A shell32 method SHCreateItemFromParsingName was used without
checking if it was successfully loaded from shell32.dll (Vista+).

v1.0.19

Toggle v1.0.19's commit message
Alpha 1.0.19: Add MSVC++ bug workaround.

v1.0.18

Toggle v1.0.18's commit message
Alpha 1.0.18: destroying auth keys on sign up.

Also some debugging tools for mtproto endpoints added.

v1.0.17

Toggle v1.0.17's commit message
Alpha 1.0.17: crash fix in file open.

ShellExecute() call reenters Qt event loop, so each time we
schedule a delayed action (like destroying FileLoader) and after
that we call ShellExecute (in psOpenFile) we destroy it inside
this call and can't use it after.

So now we perform ShellExecute calls only delayed (using task queue).

v1.0.16

Toggle v1.0.16's commit message
Alpha 1.0.16: fighting crashes.

An attempt to fix a crash in MTP::Instance destructor + additional
logging there to find out how this crash happens.