The Telegram client for the Windows 10 platform, built by the community for the community.
Download
·
Insiders Group
- First, check that you have the necessary tools installed.
- Go to https://my.telegram.org/apps and register a new app.
- Clone the repository recursively
git clone --recursive https://github.com/UnigramDev/Unigram.git
. - Create a new file inside
Unigram/Unigram/Unigram
and name itConstants.Secret.cs
:
namespace Unigram
{
public static partial class Constants
{
static Constants()
{
ApiId = your_api_id;
ApiHash = "your_api_hash";
}
}
}
- Replace
your_api_id
andyour_api_hash
with the data obtained from step 2.
The following tools and SDKs are mandatory for the project development:
- Visual Studio 2017, with
- .NET Native
- .NET Framework 4.7 SDK
- NuGet package manager
- Universal Windows Platform tools
- Windows 10 SDK 17134
- TDLib for Universal Windows Platform
The app uses the following NuGet packages to work:
- Autofac
- HockeySDK.UWP
- Microsoft.NETCore.UniversalWindowsPlatform
- Microsoft.Xaml.Behaviors.Uwp.Managed
- Newtonsoft.Json
- System.Reactive
- Win2D.uwp
The project also relies on libogg
, libopus
, libopusfile
, libwebp
and libtgvoip
that are included in the repository.
Have a bug or a feature request?
- Please first read the issue guidelines, missing features and search for existing and closed issues.
- If your problem or idea is not addressed yet, please open a new issue.
Please read through our contributing guidelines. Included are directions for opening issues, bug and feature requests, and notes on pull requests.
See the Releases section of our GitHub project for changelogs for each release version of Unigram. Release announcement posts on the official Unigram News channel contain summaries of the most noteworthy changes made in each release.
Get updates on Unigram's development and chat with the project maintainers and community members.
- Follow @UnigramApp on Twitter.
- Like and follow Unigram on Facebook.
- Join the official group Unigram Insiders.
- Join the official channel Unigram News.
Copyright © 2016-2018 Unigram Authors.
Unigram is free software: you can redistribute it and / or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Unigram is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Unigram. If not, see http://www.gnu.org/licenses/.