Skip to content

Commit

Permalink
Externalize Remote (#2370)
Browse files Browse the repository at this point in the history
* externalize Remote app, disabling fileman integration (need workaround)

* regenerate bitmap.hpp

* added external HOME apps to HOME
  • Loading branch information
gullradriel authored Nov 19, 2024
1 parent 4a83118 commit 24d15c1
Show file tree
Hide file tree
Showing 9 changed files with 884 additions and 643 deletions.
1 change: 0 additions & 1 deletion firmware/application/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,6 @@ set(CPPSRC
apps/ui_rds.cpp
apps/ui_recon_settings.cpp
apps/ui_recon.cpp
apps/ui_remote.cpp
apps/ui_scanner.cpp
apps/ui_sd_over_usb.cpp
apps/ui_sd_wipe.cpp
Expand Down
6 changes: 3 additions & 3 deletions firmware/application/apps/ui_fileman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#include <algorithm>
#include "ui_fileman.hpp"
#include "ui_playlist.hpp"
#include "ui_remote.hpp"
#include "ui_ss_viewer.hpp"
#include "ui_bmp_file_viewer.hpp"
#include "ui_text_editor.hpp"
Expand Down Expand Up @@ -704,10 +703,11 @@ bool FileManagerView::handle_file_open() {

reload_current(false);
return true;
} else if (path_iequal(rem_ext, ext)) {
}
/*else if (path_iequal(rem_ext, ext)) {
nav_.push<RemoteView>(path);
return true;
}
}*/

return false;
}
Expand Down
Loading

0 comments on commit 24d15c1

Please sign in to comment.