@ouro.bot/cli 0.1.0-alpha.34 → 0.1.0-alpha.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.35",
|
|
6
|
+
"changes": [
|
|
7
|
+
"BlueBubbles no longer emits generic follow-up phrase bubbles like 'on it...' or 'followup...' into iMessage. The sense now uses typing plus concrete tool/error activity only, which keeps mobile turns quieter and less redundant."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.34",
|
|
6
12
|
"changes": [
|
|
@@ -217,6 +217,7 @@ function createBlueBubblesCallbacks(client, chat, replyTarget) {
|
|
|
217
217
|
followupPhrases: phrases.followup,
|
|
218
218
|
startTypingOnModelStart: true,
|
|
219
219
|
suppressInitialModelStatus: true,
|
|
220
|
+
suppressFollowupPhraseStatus: true,
|
|
220
221
|
transport: {
|
|
221
222
|
sendStatus: async (text) => {
|
|
222
223
|
const sent = await client.sendText({
|