Skip to content

Commit

Permalink
Update to version 10836
Browse files Browse the repository at this point in the history
  • Loading branch information
claabs committed Mar 14, 2023
1 parent c863f98 commit 2a9db58
Show file tree
Hide file tree
Showing 18 changed files with 615 additions and 43 deletions.
23 changes: 15 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ubisoft-demux",
"version": "1.10824.0",
"version": "1.10836.0",
"description": "A Node.js client to interact with Ubisoft Connect's protobuf demux API",
"main": "dist/src/index.js",
"scripts": {
Expand Down Expand Up @@ -67,7 +67,7 @@
"rimraf": "^3.0.2",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"ts-proto": "^1.126.1",
"ts-proto": "^1.141.1",
"typed-emitter": "^2.1.0",
"typescript": "^4.8.3",
"yaml": "^2.1.1"
Expand Down
13 changes: 8 additions & 5 deletions proto/proto_download/download.proto
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,9 @@ message File {
required bool isDir = 3;
repeated bytes slices = 4;
optional uint32 version = 5;
optional uint64 paddedSize = 6;
repeated Slice sliceList = 7;

reserved 6;
}

message Chunk {
Expand All @@ -122,8 +123,9 @@ message MetaDataChunk {
optional uint32 uplayId = 1;
optional string language = 2;
required uint64 bytesOnDisk = 3;
optional uint64 paddedBytesOnDisk = 4;
repeated uint32 uplayIds = 5;

reserved 4;
}

message TextFileEntry {
Expand Down Expand Up @@ -168,8 +170,6 @@ message Manifest {
repeated InstallCompatibility installCompatibility = 11;
optional string legacyInstaller = 12;
repeated string deprecatedLanguages = 13;
optional bool isEncryptedDeprecated = 14;
optional uint32 paddedSliceSizeDeprecated = 15;
optional bool patchRequired = 16;
optional bool isCompressed = 17;
optional TextFileList readmeFiles = 18;
Expand All @@ -179,6 +179,8 @@ message Manifest {
optional uint32 version = 22;
repeated Language languages = 23;
optional SlicerConfig slicerConfig = 24;

reserved 14, 15;
}

message ManifestLicenses {
Expand All @@ -193,8 +195,9 @@ message ManifestMetaData {
optional uint32 chunksVersion = 6;
repeated uint32 uplayIds = 7;
repeated MetaDataChunk chunks = 8;
optional uint64 paddedBytesOnDisk = 9;
repeated Language languages = 10;

reserved 9;
}

enum LicenseFormat {
Expand Down
1 change: 1 addition & 0 deletions proto/proto_download_cache/download_cache.proto
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ message Download {
InstallProtocol = 3;
InstallProtocolRetail = 4;
BetaClient = 5;
XboxApp = 6;
}

optional string branded_installer_id = 9;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,5 @@ message DownloadInstallState {
optional bool invalidate_game_token_required = 29;
optional bool epic_run_installation = 30 [default = false];
optional bool force_check_licenses_on_next_launch = 31 [default = false];
optional uint64 install_date = 32;
}
Loading

0 comments on commit 2a9db58

Please sign in to comment.