Skip to content

Commit

Permalink
Update Scala server to send sessionId and ViewportId. Bump to 0.9.5 […
Browse files Browse the repository at this point in the history
…node_publish]
  • Loading branch information
shanedell committed May 17, 2022
1 parent ca3474a commit 77fa2be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cmake_minimum_required(VERSION 3.13)

# Project information
project(omega_edit
VERSION 0.9.4
VERSION 0.9.5
DESCRIPTION "Apache open source library for building editors"
HOMEPAGE_URL "https://github.com/ctc-oss/omega-edit"
LANGUAGES C CXX)
Expand Down
2 changes: 1 addition & 1 deletion src/rpc/client/ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "omega-edit",
"version": "0.9.4",
"version": "0.9.5",
"description": "OmegaEdit gRPC Client TypeScript Types",
"publisher": "ctc-oss",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class EditorService(implicit val system: ActorSystem) extends Editor {
(editors ? SessionOp(
in.sessionId,
View(in.offset, in.capacity, in.viewportIdDesired, in.eventInterest))).mapTo[Result].map {
case Ok(id) => CreateViewportResponse(id)
case Ok(id) => CreateViewportResponse(in.sessionId, id)
case Err(c) => throw grpcFailure(c)
}

Expand Down

0 comments on commit 77fa2be

Please sign in to comment.