Skip to content

Commit

Permalink
Version 0.1.6
Browse files Browse the repository at this point in the history
- Migrated from TdLib JSON to TdLib C++ interface for better performance.
- Added QR code authentication and improved error handling.
- Redesigned authentication UI for better user flow and feedback.
- Updated ChatsPage layout with a Ripple component for flexibility.
- Fixed UI alignment issues (#4).
- Added language code mapping and integrated language pack loading.
- Fixed locale management (#8).
  • Loading branch information
qtinsider committed Jan 1, 2025
1 parent ca32e6a commit 5ef90ec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.20)
project(MeeGram VERSION 0.1.5 LANGUAGES CXX)
project(MeeGram VERSION 0.1.6 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down Expand Up @@ -137,7 +137,7 @@ if (BUILD_HARMATTAN)

target_link_options(meegram PRIVATE -Wl,-rpath,/opt/meegram/lib -Wl,--dynamic-linker=/lib/ld-linux.so.3 -pie -rdynamic)

target_link_libraries(meegram PRIVATE ${boostable_LIBRARIES})
target_link_libraries(meegram PRIVATE ${boostable_LIBRARIES} -static-libstdc++)

if(NOT EXISTS "${CMAKE_BINARY_DIR}/debian")
file(COPY ${CMAKE_SOURCE_DIR}/debian DESTINATION ${CMAKE_BINARY_DIR})
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
meegram (0.1.6) unstable; urgency=medium

* Migrated from TdLib JSON to TdLib C++ interface for better performance.
* Added QR code authentication and improved error handling.
* Redesigned authentication UI for better user flow and feedback.
* Updated ChatsPage layout with a Ripple component for flexibility.
* Fixed UI alignment issues (#4).
* Added language code mapping and integrated language pack loading.
* Fixed locale management to use mapping for improved performance (#8).

-- Chukwudi Nwutobo <[email protected]> Tue, 01 Jan 2025 09:05:35 +0100

meegram (0.1.5) unstable; urgency=low

* Updated Device with GCC 14.2, OpenSSL 1.1.1w, TDLib 1.8.35, zlib 1.3.1, the latest nlohmann JSON library, and enhanced rlottie support.
Expand Down
2 changes: 1 addition & 1 deletion src/Common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <vector>

constexpr auto AppName = "MeeGram";
constexpr auto AppVersion = "0.1.5";
constexpr auto AppVersion = "0.1.6";

constexpr auto ApiId = 142713;
constexpr auto ApiHash = "9e9e687a70150c6436afe3a2b6bfd7d7";
Expand Down

0 comments on commit 5ef90ec

Please sign in to comment.