Temporarily backport app updates from apps repo

This commit is contained in:
Willy-JL
2023-11-12 11:06:02 +00:00
parent 79e7f491fe
commit e309fa8a88
1498 changed files with 1325977 additions and 20227 deletions

View File

@@ -4,10 +4,12 @@ App(
apptype=FlipperAppType.EXTERNAL,
entry_point="wav_player_app",
stack_size=4 * 1024,
order=46,
resources="resources",
fap_icon="wav_10px.png",
fap_category="Media",
fap_icon_assets="images",
fap_author="@DrZlo13 & (ported, fixed by @xMasterX), (improved by @LTVA1)",
fap_version="1.0",
fap_version="1.1",
fap_description="Audio player for WAV files, recommended to convert files to unsigned 8-bit PCM stereo, but it may work with others too",
)

View File

@@ -12,12 +12,13 @@
#include "wav_player_view.h"
#include <math.h>
#include "wav_player_icons.h"
#include <wav_player_icons.h>
#include <assets_icons.h>
#define TAG "WavPlayer"
#define WAVPLAYER_FOLDER EXT_PATH("wav_player")
#define WAVPLAYER_FOLDER "/ext/wav_player"
static bool open_wav_stream(Stream* stream) {
DialogsApp* dialogs = furi_record_open(RECORD_DIALOGS);