Skip to content

Commit e62f52d

Browse files
authored
Merge pull request #18 from leedave/feature/0.85.2
Feature/0.85.2
2 parents 8ccc670 + 87e66a0 commit e62f52d

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

Games/color_guess/views/color_guess_color_set.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void color_guess_color_set_exit(void* context) {
148148

149149
void color_guess_color_set_enter(void* context) {
150150
furi_assert(context);
151-
DOLPHIN_DEED(DolphinDeedPluginStart);
151+
dolphin_deed(DolphinDeedPluginStart);
152152
// ColorGuessColorSet* instance = context;
153153
}
154154

Games/color_guess/views/color_guess_play.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void color_guess_play_calculate_closeness(void* context, ColorGuessPlayModel* mo
9393
float percentageBlue = 100 - ((distanceBlue / 255.0) * 100);
9494
if (percentageRed == 100 && percentageGreen == 100 && percentageBlue == 100) {
9595
model->success = 1;
96-
DOLPHIN_DEED(DolphinDeedPluginGameWin);
96+
dolphin_deed(DolphinDeedPluginGameWin);
9797
}
9898
float fullPercentage = (percentageRed + percentageGreen + percentageBlue) / 3;
9999
model->prev_closeness = model->closeness;
@@ -295,7 +295,7 @@ void color_guess_play_exit(void* context) {
295295
void color_guess_play_enter(void* context) {
296296
furi_assert(context);
297297
ColorGuessPlay* instance = (ColorGuessPlay*)context;
298-
DOLPHIN_DEED(DolphinDeedPluginGameStart);
298+
dolphin_deed(DolphinDeedPluginGameStart);
299299
with_view_model(
300300
instance->view,
301301
ColorGuessPlayModel * model,

Misc/ledpulser/application.fam

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
App(
2-
appid="ledpulser",
2+
appid="led_pulsator",
33
name="LED Pulsator",
44
apptype=FlipperAppType.EXTERNAL,
55
entry_point="ledpulser_app",
@@ -9,9 +9,10 @@ App(
99
],
1010
stack_size=2 * 1024,
1111
order=30,
12+
fap_icon_assets="icons",
1213
fap_icon="ledpulser_10px.png",
13-
fap_icon_assets="icons",
1414
fap_category="Misc",
15+
fap_icon_assets_symbol="ledpulser",
1516
fap_author="Leed",
1617
fap_weburl="https://github.com/leedave/Leeds-Flipper-Zero-Applications",
1718
)

Misc/ledpulser/ledpulser.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ int32_t ledpulser_app(void* p) {
108108
}
109109
plugin_state->direction = 0;
110110
plugin_state->intensity = 0;
111-
DOLPHIN_DEED(DolphinDeedPluginStart);
111+
dolphin_deed(DolphinDeedPluginStart);
112112

113113
// Configure view port
114114
ViewPort* view_port = view_port_alloc();

Misc/orgasmotron/application.fam

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
App(
2-
appid="Orgasmotron",
2+
appid="orgasmotron",
33
name="Orgasmotron",
44
apptype=FlipperAppType.EXTERNAL,
55
entry_point="orgasmotron_app",

Tools/xremote/scenes/xremote_scene_transmit.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void xremote_scene_transmit_stop_ir_signal(XRemote* app) {
4848

4949
void xremote_scene_transmit_send_ir_signal(XRemote* app, CrossRemoteItem* item) {
5050
InfraredSignal* signal = xremote_remote_item_get_ir_signal(item);
51-
DOLPHIN_DEED(DolphinDeedIrSend);
51+
dolphin_deed(DolphinDeedIrSend);
5252
xremote_scene_ir_notification_message(app, InfraredNotificationMessageBlinkStartSend);
5353
if (xremote_scene_ir_signal_is_raw(signal)) {
5454
InfraredRawSignal* raw = xremote_ir_signal_get_raw_signal(signal);

0 commit comments

Comments
 (0)