~aleteoryx/muditaos

ref: 6981f836a0911e42e15a47571820451ccd9d72d3 muditaos/pure_changelog.md -rw-r--r-- 9.5 KiB
6981f836 — Maciej-Mudita 3 years ago
[MOS-717] Add pop-up about SIM removed/inserted in all apps

Previously, this information only appears on the desktop,
settings application and onboarding.
abdf9b7c — rrandomsky 3 years ago
[MOS-737] Revert "Fix for adding a country code prefix to existing ..."

This reverts commit 14d6d53ac84de3648c07e57fd9bf834f6461bcdd,
because it can cause critical error for SMS application.
64675423 — Maciej-Mudita 3 years ago
[MOS-831] Fix screen lock during onboarding

When the user locked the screen during onboarding,
the lock screen appeared but without the current time and date.
14d6d53a — rrandomsky 3 years ago
[MOS-737] Fix for adding a country code prefix to existing contact

Adding or removing code country from contact's number creates a
new number record. Old number, which was connected witch contact
previously, is removed from the numbers table to avoid miss match
numbers. Changing country code only creates new number records,
without removing old ones. Old ones are temporary number from now.
357ae2d5 — Marcin Zieliński 3 years ago
[MOS-825] VoLTE steering according to IMSI

Steering the GUI and the modem according to
whether VoLTE is permitted for the active
SIM card's operator. This is done based on
the SIM card's IMSI string.

Additionally, made logging more consistent.
40fa31a9 — Maciej-Mudita 3 years ago
[MOS-827] Fix looping on the SIM card selection screen

It was not possible to finish onboarding properly
when we selected a SIM card without an active PIN
bc6eda40 — Maciej-Mudita 3 years ago
[MOS-800] Add a popup for changing the SIM card

Sometimes the process of changing the SIM card
takes a few seconds and the user needs to be informed
that something is going on in the background.
9c716846 — Maciej-Mudita 3 years ago
[MOS-660] Fix disappearing button in PIN entering screen

When we returned from the SOS screen to the PIN entry screen,
the "confirm" button disappeared.
4b34f821 — Marcin Zieliński 3 years ago
[MOS-823] Update 'misc' submodule reference

Added a possibility to use a custom GDB for crash analysis.
b069b7bc — Marcin Zieliński 3 years ago
[MOS-793] Connect GUI and modem VoLTE steering

Additionally, fixed many covert bugs that emerged due to
modem restarting.
d528cac7 — Maciej-Mudita 3 years ago
[MOS-641] Fix SIM cards window

Creating menus and actions depending on the SIM card
lock status.
d6fbf631 — Kuba Kleczkowski 3 years ago
[MOS-792] Added VoLTE setting in db

VoLTE enabled/disabled state is now stored in settings
database. VoLTE is enabled or disabled to mach setting
during modem initialisation.
a3c0791b — Kuba Kleczkowski 3 years ago
[MOS-797] Revert "[MOS-792] Added VoLTE setting in db"

This reverts commit 0eb652a5152de6bdf77c897a787d037d6e6b43d4
0eb652a5 — Kuba Kleczkowski 3 years ago
[MOS-792] Added VoLTE setting in db

VoLTE enabled/disabled state is now stored in settings
database. VoLTE is enabled or disabled to mach setting
during modem initialisation.
7fff20a0 — Maciej-Mudita 3 years ago
[MOS-788] Fix incorrect total CPU usage in logs

After a long time, a counter overflow appeared
b281a39f — Lefucjusz 3 years ago
[MOS-744] Fix MTP integration

Fixed issues with integration
of MTP with filesystem:
- fixed memory corruption in
get_disk_properties();
- removed spare space hack
causing MTP to return invalid
free space and capacity of
the storage;
- added mtime and ctime
handling;
- minor code cleanup.
f4aaf4e3 — Maciej-Mudita 3 years ago
[MOS-775] Create run-time statistics for tasks

Every hour, statistics of tasks that put a heavy load
on the CPU will be logged
9b7d5be0 — Lefucjusz 3 years ago
[MOS-779] Fix music files extensions case sensitivity

Fix of the issue that only files with
extension in lowercase were detected
and listed in the music player's
library.
Additionally code cleanup.
1f9c6b4a — Maciej-Mudita 3 years ago
[MOS-26] Add tethering info on status bar

When tethering is on, info appears in the status bar
and network coverage indicates "no connection"
49bbaf51 — Adam Wulkiewicz 3 years ago
[MOS-550] Improve refresh of the display

1. Implement partial refresh.
2. Implement refresh canceling mechanism.
3. Refactor some parts of the gui and display code.

ad 1.
- Detect parts of the screen changed since last update and merge them
  into bigger regions. These regions defines parts of the context sent
  to the display.
- Refresh the region covering all of the parts since this is the most
  time consuming part and the size of the refreshed region doesn't
  change the time much.
- Refresh the whole screen if deep refresh is requested and previously
  fast refresh was used. This is needed to prevent unwanted artifacts
  in some cases.

ad 2.
- Separate display update and refresh logic.
- Divide image display message handling into two handlers, one updating
  and other one refreshing the screen.
- Add cancel refresh message and use it to cancel refresh during update.
- Store sum of refresh regions gathered during updates to refresh them
  all at once at the end.
Next