diff --git a/CHANGELOG.md b/CHANGELOG.md
index 01344c17f..3fab0a2b3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,21 +1,17 @@
### New changes
-* PR: Added 868.95 MHz into subghz user config (PR 71 by TasyDevilsky)
-* Lower framerate in custom anim to save a bit of battery charge
-* Removed unused icon from OFW PR 1533, fixed unirf icon name, updated api symbols (version is 3.0)
-* OFW: NFC user dict list, delete, and de-duplication. (OFW PR 1533)
-* OFW: Add new russian transport card parsers (OFW PR 1503)
-* OFW: SubGhz: Oregon v2.1 decoder (OFR PR 1678)
-* OFW: Show error popup when NFC chip is not init/disconnected (OFW PR 1722)
+* PR: Allow running apps from Archive app (also allows adding them to Favourites) (PR 72 by RogueMaster) (new icon by @Svaarich)
-#### **DFU files no longer included in releases to avoid issues with wrong manual installation of assets - use web updater or microSD update package**
+#### **DFU files no longer included in releases to avoid issues with wrong manual installation of assets - use .tgz file with qFlipper, or install automatically via web updater or use microSD update package**
[- How to install](https://github.com/Eng1n33r/flipperzero-firmware/blob/dev/documentation/HowToInstall.md)
-**Note: To avoid issues prefer installing using web updater or by self update package, all needed assets will be installed**
+[- Download qFlipper 1.2.0-rc1 (allows .tgz installation) (official link)](https://update.flipperzero.one/builds/qFlipper/1.2.0-rc1/)
-Self-update package (update from microSD) - `flipper-z-f7-update-(version).zip` or `.tgz` for iOS mobile app
+**Note: To avoid issues with .dfu, prefer installing using .tgz with qFlipper, web updater or by self update package, all needed assets will be installed**
-DFU for update using qFlipper is no longer included in releases to avoid issues with assets - Use Web Updater or self-update package!
+Self-update package (update from microSD) - `flipper-z-f7-update-(version).zip` or download `.tgz` for iOS mobile app / qFlipper
+
+Update using qFlipper (1.2.0-rc1) is now possible with `.tgz` update package! Also you can use Web Updater or self-update package.
## Support unleashed (Not RM) so unleashed team can develop new features
diff --git a/applications/main/archive/scenes/archive_scene_info.c b/applications/main/archive/scenes/archive_scene_info.c
index b6fae4bca..08c403b4b 100644
--- a/applications/main/archive/scenes/archive_scene_info.c
+++ b/applications/main/archive/scenes/archive_scene_info.c
@@ -37,7 +37,11 @@ void archive_scene_info_on_enter(void* context) {
// Directory path
path_extract_dirname(string_get_cstr(current->path), dirname);
- string_replace_str(dirname, STORAGE_ANY_PATH_PREFIX, "");
+ if(strcmp(string_get_cstr(dirname), "/any") == 0) {
+ string_replace_str(dirname, STORAGE_ANY_PATH_PREFIX, "/");
+ } else {
+ string_replace_str(dirname, STORAGE_ANY_PATH_PREFIX, "");
+ }
// File size
FileInfo fileinfo;
@@ -60,7 +64,7 @@ void archive_scene_info_on_enter(void* context) {
string_get_cstr(dirname));
}
widget_add_text_box_element(
- instance->widget, 0, 25, 128, 25, AlignLeft, AlignCenter, file_info_message, false);
+ instance->widget, 0, 25, 128, 25, AlignLeft, AlignCenter, file_info_message, true);
// This one to return and cursor select this file
path_extract_filename_no_ext(string_get_cstr(current->path), filename);
diff --git a/documentation/HowToInstall.md b/documentation/HowToInstall.md
index 43cf55282..b51e74b44 100644
--- a/documentation/HowToInstall.md
+++ b/documentation/HowToInstall.md
@@ -23,6 +23,23 @@
- And if all flashed successfully - you will have all needed assets pre installed
- Done
+
+
+
+## With qFlipper (1.2.0-rc1)
+
+- Download qFlipper that allows `.tgz` installation [Download qFlipper 1.2.0-rc1 (official link)](https://update.flipperzero.one/builds/qFlipper/1.2.0-rc1/)
+- Be sure you updated to latest official release before(only if installing for the first time), and verify that microSD card is installed
+- Open latest release page - [Releases](https://github.com/Eng1n33r/flipperzero-firmware/releases/latest)
+- Download `flipper-z-f7-update-(version).tgz`
+- Launch qFlipper
+- Connect your device and select `Install from file`
+- Select `flipper-z-f7-update-(version).tgz` that you downloaded
+- Update will start
+- And wait, if all flashed successfully - you will have all needed assets pre installed
+- Done
+
+