Unofficial Telegram Desktop messaging app
Go to file
leha-bot 6717ea2cd5 API scheme updated to layer 72.
Shortlog:
1. InputMediaUploadedDocument now has the new flag nosound_video;
2. InputMediaVenue now has the new string venue_type (it seems to be
   related to FourSquare Venue Types like "food/icecream" or another.
   See core.telegram.org/bot/api#Venue for details);
3. Add live locations (InputMediaGeoLive);
4. channelFull object now has a flag hidden_prehistory (see issue #113
   for details);
5. messageMediaVenue now has the same string venue_type;
6. messageMediaGeoLive now has the same fields as InputMediaGeoLive;
7. Add mysterious messageActionCustomAction;
8. Add messages.messagesNotModified (seems it's related to seamless
   message counter decrement as in Telegram for Android since v 4.8);
9. Remove inputMessagesFilterPhotoVideoDocuments;
10. Add filters inputMessagesFilterGeo and inputMessagesFilterContact;
11. Add updateChannelAvailableMessages (seems it's a new kind of Update
    related to listening of channel only updates);
12. Add channels.channelParticipantsNotModified;
13. inputBotInlineMessageMediaGeo now has the period field (like new
    live locations);
14. botInlineMessageMediaGeo now has the same period field;
15. BotResults now has a users vector field;
16. messages.botCallbackAnswer now has a new native_ui flag (seems it's
    related to some new kind of notification. Right now bots could send you
    either the message box or the modeless notification which is appeared
    from top of chat viewport);
17. Add inputPaymentCredentials[Android|Apple]Pay for (possible) Android
    Pay / Apple Pay support;
18. Add channelAdminLogEventActionTogglePreHistoryHidden for toggling
    history for chat newcomers (see issue #113);
19. Add strange recentMeUrl[Unknown|User|Chat|ChatInvite|StickerSet].
    Seems it's related to "Saved Messages" functionality.
20. Add help.recentMeUrl method;
21. messages.getHistory now has an argument hash;
22. messages.editMessage now has the new flag stop_geo_live related to
    Live Locations;
23. messages.editInlineBotMesages now has the same new flag;
24. Add new method messages.readMentions(peer:InputPeer);
25. Add new method help.getRecentMeUrls(referer:string);
26. channels.getParticipants now has a new parameter hash;
27. Add new method chanels.deleteHistory (seems it's related to issue
    #112);
28. Add new method channels.togglePreHistoryHidden (see #113).

This commit is based on upstream commit bccd801874 and related to #114.
2018-09-22 01:03:29 +03:00
.appveyor Run ctest on appveyor (#57) 2018-03-11 15:31:18 +03:00
.github Branding changes, minor readme fix 2018-06-04 19:56:10 +03:00
.travis Add clang-format target to CMake and Travis 2018-06-06 11:25:23 +03:00
Telegram API scheme updated to layer 72. 2018-09-22 01:03:29 +03:00
doc Add cmake files 2017-12-20 14:38:02 +02:00
docs Remove obsolete files 2017-12-20 14:38:02 +02:00
lib/xdg Replaced old name from shortcuts and metadata package. 2018-01-17 21:20:46 +03:00
modules Add clang-format target to CMake and Travis 2018-06-06 11:25:23 +03:00
.clang-format clang-format: Explicitly set SortIncludes to false 2018-09-15 02:01:29 +03:00
.gitattributes Implement AppVeyor (#3025) 2017-02-18 20:23:50 +01:00
.gitignore Branding changes, minor readme fix 2018-06-04 19:56:10 +03:00
.travis.yml Enable only PR builds on Travis 2018-01-13 03:39:01 +02:00
CMakeLists.txt Fix almost all warnings (#157) 2018-06-12 01:59:24 +03:00
LICENSE Branding changes, minor readme fix 2018-06-04 19:56:10 +03:00
README.md Branding changes, minor readme fix 2018-06-04 19:56:10 +03:00
appveyor.yml Enable release publishing (#57) 2018-03-11 03:53:52 +03:00
conanfile.txt Disable unused conan repos 2018-01-12 23:23:38 +02:00
kepka.spec Prepare SPEC to 2.0.0 final release. 2018-07-27 19:25:52 +00:00

README.md

Version Build Status Build status

Kepka - Unofficial Telegram Desktop fork from pro.cxx community

This is the complete source code and the build instructions for the Kepka's alpha version based on the Telegram API and the MTProto secure protocol.

Build instructions

Linux, macOS

What you need to have installed:

  • Qt 5.9+ (with private modules, like qtbase5-private-dev)
  • OpenSSL (conan installs this if you use conan)
  • OpenAL-soft
  • FFmpeg with swscale and swresample libs
  • zlib
  • opus (libopus-dev)

Debian/Ubuntu:

# apt-get install libssl-dev libavformat-dev libavdevice-dev libswscale-dev libavutil-dev libpulse-dev libasound2-dev libswresample-dev libavresample-dev libopus-dev qtbase5-private-dev zlib1g-dev libopenal-dev libavcodec-dev libopenal-data libopenal1

You most likely have to rebuild ffmpeg with --enable-swresample --enable-swscale

After that, go to the next section.

Fedora:

# dnf install rpm-build rpmdevtools mock mock-rpmfusion-free

Add yourself to mock group (you must run this only for the first time after installing mock):

sudo usermod -a -G mock $(whoami)

You need to relogin to your system or run:

newgrp mock

Create RPM build base directories:

rpmdev-setuptree

Download sources:

spectool -g -R kepka.spec

Generate SRPM:

rpmbuild -bs kepka.spec

Start mock build sequence:

mock -r fedora-$(rpm -E %fedora)-$(uname -m)-rpmfusion_free --rebuild ~/rpmbuild/SRPMS/kepka*.src.rpm

Configuring and building

Provide paths to OpenAL-soft and Qt5 in CMAKE_PREFIX_PATH variable when configuring.

ccache -o sloppiness=pch_defines,time_macros
mkdir _conan_build_
cd _conan_build_
conan install .. --build missing
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_PREFIX_PATH="/usr/local/opt/qt5/;/usr/local/opt/openal-soft" ..
ninja

Windows

Install vcpkg (no need to integrate, just install), python 3.5, cmake, Qt 5.9 or later and Visual Studio 2017 or later, and set the following environment variables:

  • QTDIR: directory where Qt binary distribution is installed, e.g. C:\Qt\5.9.1\msvc2017_64
  • VCPKG: directory where VCPKG is installed, e.g. C:\vcpkg

After that, execute the following cmd commands from Visual Studio developer command prompt:

$ set PATH=c:\Python35;%PATH%
$ "%VCPKG%\vcpkg" install --triplet x64-windows openal-soft openssl opus zlib ffmpeg
$ mkdir build
$ cd build
$ set PATH=%QTDIR%\bin;%PATH%
$ cmake -G"Visual Studio 15 2017 Win64" -DCMAKE_TOOLCHAIN_FILE="%VCPKG%\scripts\buildsystems\vcpkg.cmake" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
$ cmake --build . --config RelWithDebInfo

Preview of Telegram Desktop

The source code is published under GPLv3 with OpenSSL exception, the license is available here.

Supported systems

  • Windows 7 - Windows 10 (not RT)
  • Mac OS X 10.8 - Mac OS X 10.11
  • Mac OS X 10.6 - Mac OS X 10.7 (separate build)
  • Ubuntu 12.04 - Ubuntu 16.04
  • Fedora 22 - Fedora 24

Third-party