Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch: # <--- Add this line
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would this better be a separate PR?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I honestly have no idea, I'm still learning how GitHub even works I just wanted to share my modification in case anyone wanted it.

2 changes: 1 addition & 1 deletion src/components/ble/NotificationManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Pinetime {
HighProriotyAlert,
InstantMessage
};
static constexpr uint8_t MessageSize {100};
static constexpr uint8_t MessageSize {150};

struct Notification {
using Id = uint8_t;
Expand Down