Skip to content

Commit

Permalink
[TF] Readme + Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
thermatk committed Sep 15, 2019
1 parent 95af9ca commit 9fde5db
Show file tree
Hide file tree
Showing 151 changed files with 957 additions and 22 deletions.
399 changes: 399 additions & 0 deletions Changelog.md

Large diffs are not rendered by default.

Binary file added DigitalResistance.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
129 changes: 107 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,122 @@
## Telegram messenger for Android
[![Releases](https://img.shields.io/github/release/Telegram-FOSS-Team/Telegram-FOSS.svg)](https://github.com/Telegram-FOSS-Team/Telegram-FOSS/releases/latest)
[![Discussions](https://img.shields.io/badge/Offtopics-Telegram-blue.svg)](https://t.me/tfossofftop)

[![Donate](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/Telegram-FOSS/) or <img src="https://en.bitcoin.it/w/images/en/c/cb/BC_Logotype.png" alt="Bitcoin" height="25px" /> `1McafEgMvqAVujNLtcJumZHxp2UfaNByqs`

# Telegram-FOSS

[Telegram](https://telegram.org) is a messaging app with a focus on speed and security. It’s superfast, simple and free.
This repo contains the official source code for [Telegram App for Android](https://play.google.com/store/apps/details?id=org.telegram.messenger).

## Creating your Telegram Application
This is an unofficial, FOSS-friendly fork of the original [Telegram App for Android](https://github.com/DrKLO/Telegram).

This version of Telegram is available on FDroid:

[<img src="https://f-droid.org/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/app/org.telegram.messenger)

## Current Maintainers

- [thermatk](https://github.com/thermatk)
- [Bubu](https://github.com/Bubu)
- you? :)

## Contributors

- [slp](https://github.com/slp)
- [Sudokamikaze](https://github.com/Sudokamikaze)
- [l2dy](https://github.com/l2dy)
- [maximgrafin](https://github.com/maximgrafin)
- [vn971](https://github.com/vn971)
- [theel0ja](https://github.com/theel0ja)
- [AnXh3L0](https://github.com/AnXh3L0)
- [noplanman](https://github.com/noplanman)
- [vk496](https://github.com/vk496)

## Discussion

Join the [Telegram-FOSS Offtopics group](https://t.me/tfossofftop)

You can also join `#telegram-foss:matrix.org` via [matrix](https://matrix.to/#/#telegram-foss:matrix.org) or `#telegram-foss` on freenode.

## Changes:

*Replacement of non-FOSS, untrustworthy or suspicious binaries or source code:*
- Do location sharing with OpenStreetMap(osmdroid) instead of Google Maps
- Use Twemoji emoji set instead of Apple's emoji
- Google Play Services GCM replaced with Telegram's push service
- Has to show a notification on Oreo+, ask Google
- **SECURITY:** Old BoringSSL prebuilts are replaced with the newest upstream source code built at compile time
- **SECURITY:** Old FFmpeg prebuilts are replaced with the newest upstream source code built at compile time
- **SECURITY:** Bundled libWebP is updated

We welcome all developers to use our API and source code to create applications on our platform.
There are several things we require from **all developers** for the moment.
*Removal of non-FOSS, untrustworthy or suspicious binaries or source code and their functionality:*
- Google Vision face detection and barcode scanning (Passport)
- Google Wallet and Android Pay integration
- HockeyApp crash reporting and self-updates
- Google SMS retrieval. You have to type the code manually

1. [**Obtain your own api_id**](https://core.telegram.org/api/obtaining_api_id) for your application.
2. Please **do not** use the name Telegram for your app — or make sure your users understand that it is unofficial.
3. Kindly **do not** use our standard logo (white paper plane in a blue circle) as your app's logo.
3. Please study our [**security guidelines**](https://core.telegram.org/mtproto/security_guidelines) and take good care of your users' data and privacy.
4. Please remember to publish **your** code too in order to comply with the licences.
*Other:*
- Allow to set a proxy before login
- Added the ability to parse locations from intents containing a `geo:<lat>,<lon>,<zoom>` string
- Force static map previews from Telegram

### API, Protocol documentation
## Versioning

This repository contains tags to make tracking versions easier.

Versions are in form "v$UPSTREAM$RELEASE" where:

* $UPSTREAM is the public, visible version of upstream.
* $RELEASE is a letter ([a-z]) indicating minor releases between official versions (sometimes, upstream is updated without relating the changes to an specific version).

## API, Protocol documentation

Telegram API manuals: https://core.telegram.org/api

MTproto protocol manuals: https://core.telegram.org/mtproto

### Compilation Guide
## Building

**NOTE: Building on Windows is, unfortunately, not supported.
Consider using a Linux VM or dual booting.**
![WindowsSupport](/tgfoss-build-under-win.gif?raw=true)

**Important:**

1. You need the Android NDK, Go(Golang) and [Ninja](https://ninja-build.org/) to build the apk.

2. Don't forget to include the submodules when you clone:
- `git clone --recursive https://github.com/Telegram-FOSS-Team/Telegram-FOSS.git`

3. Build native FFmpeg and BoringSSL dependencies:
- Go to the `TMessagesProj/jni` folder and execute the following (define the paths to your NDK and Ninja):

```
export NDK=[PATH_TO_NDK]
export NINJA_PATH=[PATH_TO_NINJA]
./build_ffmpeg_clang.sh
./patch_ffmpeg.sh
./patch_boringssl.sh
./build_boringssl.sh
```
4. If you want to publish a modified version of Telegram:
- You should get **your own API key** here: https://core.telegram.org/api/obtaining_api_id and create a file called `API_KEYS` in the source root directory.
The contents should look like this:
```
APP_ID = 12345
APP_HASH = aaaaaaaabbbbbbccccccfffffff001122
```
- Do not use the name Telegram and the standard logo (white paper plane in a blue circle) for your app — or make sure your users understand that it is unofficial
- Take good care of your users' data and privacy
- **Please remember to publish your code too in order to comply with the licenses**
The project can be built with Android Studio or from the command line with gradle:
You will require Android Studio 3.4, Android NDK rev. 20 and Android SDK 8.1
`./gradlew assembleAfatRelease`
1. Download the Telegram source code from https://github.com/DrKLO/Telegram ( git clone https://github.com/DrKLO/Telegram.git )
2. Copy your release.keystore into TMessagesProj/config
3. Fill out RELEASE_KEY_PASSWORD, RELEASE_KEY_ALIAS, RELEASE_STORE_PASSWORD in gradle.properties to access your release.keystore
4. Go to https://console.firebase.google.com/, create two android apps with application IDs org.telegram.messenger and org.telegram.messenger.beta, turn on firebase messaging and download google-services.json, which should be copied to the same folder as TMessagesProj.
5. Open the project in the Studio (note that it should be opened, NOT imported).
6. Fill out values in TMessagesProj/src/main/java/org/telegram/messenger/BuildVars.java – there’s a link for each of the variables showing where and which data to obtain.
7. You are ready to compile Telegram.
# DIGITAL RESISTANCE
### Localization
![DIGITALRESISTANCE](/DigitalResistance.jpg?raw=true "DIGITALRESISTANCE")
We moved all translations to https://translations.telegram.org/en/android/. Please use it.
11 changes: 11 additions & 0 deletions metadata/af/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'''Waarskuwing:''' terwyl hierdie bou gebaseer is op 'n suiwer-floss vurk, is die oorspronklike stroom-op is nie altyd vinnig met die publisering van die bronkode vir onlangse weergawes.

Kliënt vir die telegram Boodskapdiens platform. Gesels met vriende, begin groep geselsies en deel alle vorme van inhoud. Al jou boodskappe en gesprekke in telegram se wolk gestoor is.

Die Boodskapdiens platform is gemik op mobiele toestelle, maar werkskerm en web kliënte bestaan ook.

Verskeie eiendomsregtelike dele van die oorspronklike telegram kliënt is verwyder, insluitend Google Play Services vir die geogafiese posisie dienste, HockeySDK vir self dateering en om kennisgewings deur Google Cloud Messaging te versprei. geogafiese posisie deel funksionaliteit word nou gedoen met behulp van OpenStreetMap.

Anti-kenmerk: Nie - vrye netwerk, aangesien die bedieners eiendomsregtelike sagteware uitvoer.

Die amptelike bronkode van die program bevat Binêre datablokke, dit hou trend van 'n vurk wat bou diegene uit bronkode. Weergawes se beskikbaarheid het dus gewoonlik 'n sekere agterstand.
1 change: 1 addition & 0 deletions metadata/af/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/af/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram is 'n boodskap app met 'n fokus op spoed en sekuriteit.
1 change: 1 addition & 0 deletions metadata/am/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ቴሌግራም ፍጥነት እና ደህንነት ላይ ትኩረት ጋር መላላኪያ መተግበሪያ ነው.
11 changes: 11 additions & 0 deletions metadata/ar/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'' 'تحذير: ''' بينما يستند هذا البناء على fork حر بالكامل ، المصدر الأصلي ليس سريعا لنشر الكود البرمجي للإصدارات المطروحة مؤخرا.

عميل لمنصة تيليجرام. دردش مع الأصدقاء، و أبدء محادثات جماعية وشارك كل أنواع المحتوى. يتم تخزين جميع رسائل البريد والمحادثات في سحابة تيليجرام.

هدف البرنامج المراسلة في الأجهزة المحمولة ، ولكنه كذالك يمتلك عميلا لسطح المكتب والويب .

تم إزالة العديد من الأجزاء الإحتكارية من السورس الأصلي لتيلجرام ، بما في ذلك خدمات جوجل و خدمات المواقع، HockeySDK لتحديث ذاتي ودفع الإخطارات عن طريق "سحابة جوجل ". تم استعادة ميزة الموقع باستخدام خريطة OSM مفتوحة المصدر .

ميزة مضادة : الشبكة ليست حرة، لأنها تعمل خوادم تُشغّل برمجيات غير حرة.

شفرة المصدر الرسمي للتطبيق تحتوي على باينري ، لذلك هذه المسارات مأخوذة من الFork الذي يقوم ببنائها من المصدر.ومن ثم يتم توفير النسخ ولاكن مع تأخر لفترة زمنية معينة.
1 change: 1 addition & 0 deletions metadata/ar/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
تيليجرام
1 change: 1 addition & 0 deletions metadata/ar/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
تيليجرام هو برنامج مراسلة يُركز على السرعة والأمان.
1 change: 1 addition & 0 deletions metadata/ast/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/ast/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram ye una app de mensaxería centrada na velocidá y la seguridá.
1 change: 1 addition & 0 deletions metadata/be/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/be/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram — дадатак абмену паведамленнямі з акцэнтам на хуткасць і бяспечнасць.
1 change: 1 addition & 0 deletions metadata/bg/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Телеграма е съобщения ап с акцент върху скоростта и сигурността.
11 changes: 11 additions & 0 deletions metadata/bo/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'''ཉེན་བརྡ། :''' བཟོ་བཀོད་འདི་pure-floss fork གཞིར་བཞག་ནས་བཟོས་ཡོད་སྟབས། ཉེ་བའི་ཆར་གྱི་ཐོན་རིམ་ཁག་གི་འབྱུང་ཁུངས་ཨང་རྟགས་པར་སྐྲུན་དང་མཉམ་དུ་ནང་བཅུག་ང་ོམ་བྱེད་སྐབས་མགྱོགས་པོ་བྱེད་ཐུབ་ཀྱི་མེད།

ཏར་འཕྲིན་འཕྲིན་ཐུང་བབས་སྟེགས་ཀྱི་མཉེན་ཆས། གྲོགས་པོ་ཚོ་མཉམ་དུ་སྐད་ཆ་ཤོད། སྐད་འཕྲིན་ཚོགས་པ་འགོ་བཙུགས་ནས་ནང་དོན་ཚང་ཕན་ཚུན་མཉམ་སྤྱོད་བྱེད། ཁྱེད་རང་གི་འཕྲིན་ཡིག་དང་སྐད་འཕྲིན་ཡོངས་རྫོགས་ཏར་འཕྲིན་གྱི་སྤྲིན་ཕུང་སྒང་ལ་ཉར་ཚགས་བྱས་ཡོད།

འཕྲིན་ཐུང་བབས་སྟེགས་འདི་ལག་ཐོགས་ཁ་པར་རིགས་ལ་གཙོ་བོར་དམིགས་པ་རེད། འོན་ཀྱང་གློག་ཀླད་དང་དྲྭ་རྒྱ་མཉེན་ཆས་སྒང་ལའང་ཡོད།

སྒེར་ལ་དབང་བའི་ཡན་ལག་ཁ་ཤས་ཤིག་ཏར་འཕྲིན་གྱི་མཉེན་ཆས་ངོ་མ་ནས་ཕྱིར་སྟོན་ཟིན་པ་རེད། འདིའི་ནང་ས་གནས་ཞུབས་ཞུའི་ཆེད་དུ་གུ་གལ་མཉེན་ཆས་ཞབས་ཞུ་དང་། རང་འགུར་གྱི་གསར་བསྒྱུར་དང་གུ་གལ་སྤྲིན་ཕུང་འཕྲིན་ཐུང་རྒྱུད་དེ་བརྡ་ལན་གཏོང་བའི་ཆེད་དུ་ཧོཀ་ཀི་SDK སོགས་དང་པོ་ནས་ཕྱིར་སྟོན་པའི་གྲས་ཆགས་ཡོད། ས་གནས་མཉམ་སྤྱོད་བྱེད་ལས་འདི་བཞིན་OpenStreetMap བེད་སྤྱོད་བྱས་ཏེ་སྐྱར་བཅུག་ཐུབ།

ཁྱད་ཆོས་འགལ་ཟླ་: ཞབས་ཞུ་འཕྲུལ་ཆས་དེ་སྒེར་ལ་དབང་བའི་མཉེན་ཆས་ཡིན་པ་སོང་ཙང་། རིན་མེད་མ་ཡིན་པའི་དྲྭ་རྒྱ་དགོས།

The official source code of the app contains binary blobs, so this tracks a fork which builds those from source. Hence, versions might become available with a certain lag.
1 change: 1 addition & 0 deletions metadata/bo/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ཏར།
1 change: 1 addition & 0 deletions metadata/bo/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ཏར་ནི་མྱུར་ཚད་དང་བདེ་འཇགས་ལ་དམིགས་ཏེ་བཟོས་པའི་འཕྲིན་ཐུང་མཉེན་ཆས་ཤིག་རེད།
1 change: 1 addition & 0 deletions metadata/ca/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/ca/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram és una aplicació de missatgeria ràpida i segura.
3 changes: 3 additions & 0 deletions metadata/cs/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Platforma pro textovou komunikaci cílená na mobilní zařízení – ale klienti pro osobní počítače a weboví klienti také.

Anti vlastnosti: Nesvobodná síť, protože servery provozují proprietární software.
1 change: 1 addition & 0 deletions metadata/cs/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/cs/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram je messaging aplikace se zaměřením na rychlost a bezpečnost.
1 change: 1 addition & 0 deletions metadata/da/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/da/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram er en messaging app med fokus på hastighed og sikkerhed.
11 changes: 11 additions & 0 deletions metadata/de/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'''Achtung:''' Während dieser Build auf einem reinen FLOSS-Fork beruht, ist das zugrundeliegende Repo bei der Veröffentlichung des Quellcodes für neuere Versionen nicht immer schnell.

Client für das Messaging mit Telegram. Mit Feunden chatten, Gruppen-Chats beginnen und alle möglichen Inhalte teilen. Alle Nachrichten und Unterhaltungen werden in der Cloud von Telegram gespeichert.

Die Messaging-Plattform ist auf Mobilgeräte ausgerichtet, es bestehen aber auch Desktop- und Web-Lösungen.

Einige proprietäre Teile wurden aus dem Original-Client von Telegram entfernt, darunter die Google Play Services zur Standortbestimmung und das HockeySDK für selbsttätige Aktualisierungen und Push-Benachrichtigungen über Google Cloud Messaging. Die Funktion zur Standortübermittlung wird über OpenStreetMap wiederhergestellt.

Unerwünschtes Merkmal: Nicht freies Netzwerk, da auf den Servern proprietäre Software läuft.

Der offizielle Quellcode der App enthält Binär-Blobs, also verfolgt diese App einen Fork, der diese aus der Quelle herstellt. Somit kann es bis zum Erscheinen neuer Versionen zu gewissen Verzögerungen kommen.
1 change: 1 addition & 0 deletions metadata/de/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
1 change: 1 addition & 0 deletions metadata/de/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram ist eine auf Geschwindigkeit und Sicherheit fokussierte Messaging-App.
1 change: 1 addition & 0 deletions metadata/el/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Τηλεγράφημα
1 change: 1 addition & 0 deletions metadata/el/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Τηλεγράφημα είναι ένα messaging app με μια έμφαση στην ταχύτητα και ασφάλεια.
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/13400.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* Telegram Passport
* Telegram FOSS:
* suggested locations and search are back
* location sharing fixes and https for map tiles
* everything from Telegram 4.7 and 4.8
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/13580.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* New “Exceptions” section in Notification settings
* Improved password hashing algorithm to better protect Telegram Passport data
* Export your chats on Telegram Desktop
* Telegram-FOSS:
* sync boringSSL
2 changes: 2 additions & 0 deletions metadata/en-US/changelogs/13590.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Security update for bundled SQLite
* new Emoji 11!
6 changes: 6 additions & 0 deletions metadata/en-US/changelogs/14780.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* new upstream release:
* Global permissions for groups
* Unified group settings
* Undo deleting chats and clearing chat history within 5 seconds
* New sorting options in Contacts
* New animations when uploading and downloading media
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/14970.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* new upstream release:
* Apply blur and motion effects to chat backgrounds
* and other changes around backgrounds
* TFOSS:
* allow installing APKs
8 changes: 8 additions & 0 deletions metadata/en-US/changelogs/15170.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
* new upstream release:
* Autoplaying videos
* New settings for automatic media download
* Logout alternatives
* TFOSS:
* Fixed OpenStreetMaps
* Added other tile servers
* Other great fixes
7 changes: 7 additions & 0 deletions metadata/en-US/changelogs/15910.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* new upstream release:
* delete anytime
* new icons and menus
* swipe to archive
* see who's online
* TalkBack support
* ...
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/16080.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* Choose who can see your phone number.
* Add groups to "Always/Never Share" exceptions.
* Enjoy improved design.
* Connect a discussion group to your channel.
* Seamlessly integrate bots with web services.
4 changes: 4 additions & 0 deletions metadata/en-US/changelogs/16480.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Location-based group chats
* Animated stickers
* Transfer ownership of groups and channels
* A lot more!
8 changes: 8 additions & 0 deletions metadata/en-US/changelogs/16840.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
* Hold the Send button to send silent messages.
* Enable Slow Mode in Group Permissions.
* Set custom titles for admins.
* Redesigned attachment menu.
* Toggle looped playback for animated stickers.
* See video preview thumbnails when scrubbing.
* Send animated emoji.
* A lot more!
5 changes: 5 additions & 0 deletions metadata/en-US/changelogs/17100.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* Choose who can find you on Telegram by your phone number
* Hold the 'Send' button to schedule messages
* Create new themes based on your color choices
* Share your themes via links and update them for all users
* And more!
20 changes: 20 additions & 0 deletions metadata/en-US/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Warning: While this build is based on a pure-floss fork, original upstream
is not always fast with publishing the source code for recent versions.

Client for the Telegram messaging platform. Chat with friends, start group chats
and share all kinds of content. All of your messages and conversations are
stored in Telegram's cloud.

The messaging platform is aimed at mobile devices, but desktop and web clients
exist as well.

Several proprietary parts were removed from the original Telegram client,
including Google Play Services for the location services, HockeySDK for
self-updates and push notifications through Google Cloud Messaging. Location
sharing functionality is restored using OpenStreetMap.

Anti-Feature: Non-Free Network, since the servers run proprietary software.

The official source code of the app contains binary blobs, so this tracks a fork
which builds those from source. Hence, versions might become available with a
certain lag.
Binary file added metadata/en-US/featureGraphic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions metadata/en-US/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram
Binary file added metadata/en-US/phoneScreenshots/00.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/06.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/07.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/08.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/09.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/phoneScreenshots/13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metadata/en-US/sevenInchScreenshots/03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions metadata/en-US/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegram is a messaging app with a focus on speed and security.
11 changes: 11 additions & 0 deletions metadata/eo/description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'''Averto:''' tiu ĉi kompilaĵo estas plene libera ido, la originaj programistoj ofte malfrue publikigas la fontkodon de plej novaj versioj.

Kliento por la mesaĝ-sistemo Telegramo. Babili kun amikoj, ekigi grupajn babilejojn kaj kunhavigi ian ajn specon de enhavo. Ĉiuj viaj mesaĝoj kaj interparoladoj estas konservataj en la Telegraman nubon.

La mesaĝ-sistemo estas projektita por poŝtelefonoj, tamen komputilaj kaj enretaj klientoj ankaŭ disponeblas.

Kelkaj fermkodaj partoj estis forigitaj el la originala kliento Telegramo, inkluzive Google Play Services (por trovi pozicion), HockeySDK (por mem-ĝisdatigoj) kaj puŝatentigoj per Google Cloud Messaging. Eblo por kunhavigi pozicion funkcias per OpenStreetMap.

Fieblo: nelibera reto, ĉar serviloj funkcias per fermkoda programaro.

La oficiala fontkodo enhavas binaraĵojn, do en tiu ĉi ido oni kompilis ilin el fontkodoj. Do tial novaj versioj estas eldonataj kun kelka prokrasto.
1 change: 1 addition & 0 deletions metadata/eo/name.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegramo
1 change: 1 addition & 0 deletions metadata/eo/summary.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Telegramo estas komunikilo kun fokuso sur rapido kaj sekureco.
Loading

0 comments on commit 9fde5db

Please sign in to comment.