Skip to content
Merged
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
2 changes: 1 addition & 1 deletion build/build_versions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

set -e
set -x

Choose a reason for hiding this comment

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

Maybe you changed this just for debugging or do you wish to actually commit it ?

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes! We are keeping to have some more logs when running

cc @mohitrajain

Copy link
Contributor

Choose a reason for hiding this comment

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

It helps the developers to see the logs, it gets tricky without logs when working with links and submodules.

mike="pipenv run mike"
CURRENT=$(git branch --show-current)

Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ nav:
- User Rich info: developer/reference/user/rich-info.md
- Apps SDK:
- Understanding Apps: integrations/README.md
- Creating An App: integrations/creating-an-app.md
- Permissions: integrations/permissions.md
- Quickstart: integrations/quickstart.md
- Events: integrations/events.md
- Security Responses:
- Overview: security-responses/README.md
- "2023-01-19 - Security Advisory: HTML Injection in wire.com": security-responses/2023-01-19_html_injection.md
Expand Down
1 change: 0 additions & 1 deletion src/integrations/creating-an-app.md

This file was deleted.

1 change: 1 addition & 0 deletions src/integrations/events.md
1 change: 0 additions & 1 deletion src/integrations/images/create-app.png

This file was deleted.

1 change: 1 addition & 0 deletions src/integrations/images/quickstart_1.jpg
1 change: 1 addition & 0 deletions src/integrations/images/quickstart_2.jpg
1 change: 1 addition & 0 deletions src/integrations/images/quickstart_3.jpg
1 change: 0 additions & 1 deletion src/integrations/permissions.md

This file was deleted.

1 change: 1 addition & 0 deletions src/integrations/quickstart.md
2 changes: 1 addition & 1 deletion wire-apps-jvm-sdk
Submodule wire-apps-jvm-sdk updated 29 files
+57 −0 .github/workflows/claude-code-review.yml
+50 −0 .github/workflows/claude.yml
+39 −0 .github/workflows/docs-verification.yml
+2 −2 build.gradle.kts
+2 −2 docs/README.md
+6 −6 docs/diagram.svg
+1 −1 docs/src/README.md
+0 −37 docs/src/creating-an-app.md
+26 −0 docs/src/events.md
+ docs/src/images/create-app.png
+ docs/src/images/quickstart_1.jpg
+ docs/src/images/quickstart_2.jpg
+ docs/src/images/quickstart_3.jpg
+0 −15 docs/src/permissions.md
+114 −0 docs/src/quickstart.md
+2 −2 lib/build.gradle.kts
+3 −0 lib/src/main/kotlin/com/wire/sdk/client/BackendClient.kt
+26 −4 lib/src/main/kotlin/com/wire/sdk/client/BackendClientDemo.kt
+5 −0 lib/src/main/kotlin/com/wire/sdk/client/BackendClientImpl.kt
+3 −1 lib/src/main/kotlin/com/wire/sdk/config/Modules.kt
+2 −2 lib/src/main/kotlin/com/wire/sdk/exception/WireException.kt
+21 −19 lib/src/main/kotlin/com/wire/sdk/exception/WireExceptionMapper.kt
+29 −0 lib/src/main/kotlin/com/wire/sdk/model/http/user/SelfUserResponse.kt
+7 −11 lib/src/main/kotlin/com/wire/sdk/service/WireApplicationManager.kt
+18 −2 lib/src/main/kotlin/com/wire/sdk/service/conversation/ConversationService.kt
+19 −0 lib/src/test/kotlin/com/wire/sdk/TestUtils.kt
+49 −2 lib/src/test/kotlin/com/wire/sdk/service/WireApplicationManagerTest.kt
+50 −2 lib/src/test/kotlin/com/wire/sdk/service/WireTeamEventsListenerTest.kt
+2 −4 sample/sample-kotlin/src/main/kotlin/com/wire/sdk/sample/SampleEventsHandler.kt