diff --git a/ReadMe.md b/ReadMe.md index 1f29878ba..222572381 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -65,7 +65,6 @@ See changelog in releases for latest updates! - GPIO: Sentry Safe plugin [(by H4ckd4ddy)](https://github.com/H4ckd4ddy/flipperzero-sentry-safe-plugin) - ESP32: WiFi Marauder companion plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion) - NRF24: Sniffer & MouseJacker (with changes) [(by mothball187)](https://github.com/mothball187/flipperzero-nrf24/tree/main/mousejacker) -- HID Analyzer [(by Ownasaurus)](https://github.com/Ownasaurus/flipperzero-firmware/tree/hid-analyzer/applications/hid_analyzer) - Simple Clock (fixed) !! New version WIP, wait for updates !! [(Original by CompaqDisc)](https://gist.github.com/CompaqDisc/4e329c501bd03c1e801849b81f48ea61) - UniversalRF Remix (with changes)(only RAW subghz files) [(by ESurge)(Original UniversalRF by jimilinuxguy)](https://github.com/ESurge/flipperzero-firmware-unirfremix) - Tetris (with fixes) [(by jeffplang)](https://github.com/jeffplang/flipperzero-firmware/tree/tetris_game/applications/tetris_game) diff --git a/applications/unirfremix/application.fam b/applications/unirfremix/application.fam index d8eaaab89..dd3a85fe2 100644 --- a/applications/unirfremix/application.fam +++ b/applications/unirfremix/application.fam @@ -1,6 +1,6 @@ App( appid="unirfremix", - name="UniRF Remix", + name="Sub-GHz Remote", apptype=FlipperAppType.APP, entry_point="unirfremix_app", cdefines=["APP_UNIRFREMIX"], diff --git a/documentation/HowToBuild.md b/documentation/HowToBuild.md index 4a23e97cd..be3d87763 100644 --- a/documentation/HowToBuild.md +++ b/documentation/HowToBuild.md @@ -58,31 +58,6 @@ Check `dist/` for build outputs. Use **`flipper-z-{target}-full-{suffix}.dfu`** to flash your device. -## Build with Docker -### Prerequisites - -1. Install [Docker Engine and Docker Compose](https://www.docker.com/get-started) -2. Prepare the container: - - ```sh - docker-compose up -d - ``` - -### Compile everything for development - -```sh -docker-compose exec dev ./fbt -``` - -### Compile everything for release + get updater package to update from microSD card - -```sh -docker-compose exec dev ./fbt COMPACT=1 DEBUG=0 updater_package -``` - -Check `dist/` for build outputs. - -Use **`flipper-z-{target}-full-{suffix}.dfu`** to flash your device. If compilation fails, make sure all submodules are all initialized. Either clone with `--recursive` or use `git submodule update --init --recursive`.