Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit d6fc80c6 authored by Simon Chan's avatar Simon Chan
Browse files

chore: bump version to 0.0.19

parent 59c470a7
Loading
Loading
Loading
Loading
+11 −3
Original line number Diff line number Diff line
@@ -25,19 +25,19 @@ $ rush install

### Everyday commands

* Build all packages:
-   Build all packages:

    ```sh
    $ rush build
    ```

* Watch changes and rebuild in all libraries:
-   Watch changes and rebuild in all libraries:

    ```sh
    $ rush build:watch
    ```

* Start demo's dev-server:
-   Start demo's dev-server:

    ```sh
    $ cd apps/demo
@@ -61,6 +61,14 @@ npx next export

This will create an `out` folder containing exported HTML files and all required resource files.

## Release new versions

```sh
rush version --bump
export NPM_AUTH_TOKEN=...
rush publish -p --include-all --set-access-level public
```

## FAQ

### 1. WebUSB and File downloading doesn't when developing/self-host?
+10 −10
Original line number Diff line number Diff line
@@ -16,22 +16,22 @@
        "@fluentui/react-icons": "^2.0.196",
        "@fluentui/style-utilities": "^8.9.5",
        "@griffel/react": "^1.5.5",
        "@yume-chan/adb": "workspace:^0.0.18",
        "@yume-chan/adb": "workspace:^0.0.19",
        "@yume-chan/adb-backend-direct-sockets": "workspace:^0.0.9",
        "@yume-chan/adb-backend-webusb": "workspace:^0.0.18",
        "@yume-chan/adb-backend-webusb": "workspace:^0.0.19",
        "@yume-chan/adb-backend-ws": "workspace:^0.0.9",
        "@yume-chan/adb-credential-web": "workspace:^0.0.18",
        "@yume-chan/android-bin": "workspace:^0.0.18",
        "@yume-chan/adb-credential-web": "workspace:^0.0.19",
        "@yume-chan/android-bin": "workspace:^0.0.19",
        "@yume-chan/aoa": "workspace:^0.0.18",
        "@yume-chan/async": "^2.2.0",
        "@yume-chan/b-tree": "workspace:^0.0.16",
        "@yume-chan/event": "workspace:^0.0.18",
        "@yume-chan/scrcpy": "workspace:^0.0.18",
        "@yume-chan/scrcpy-decoder-tinyh264": "workspace:^0.0.18",
        "@yume-chan/scrcpy-decoder-webcodecs": "workspace:^0.0.18",
        "@yume-chan/stream-extra": "workspace:^0.0.18",
        "@yume-chan/event": "workspace:^0.0.19",
        "@yume-chan/scrcpy": "workspace:^0.0.19",
        "@yume-chan/scrcpy-decoder-tinyh264": "workspace:^0.0.19",
        "@yume-chan/scrcpy-decoder-webcodecs": "workspace:^0.0.19",
        "@yume-chan/stream-extra": "workspace:^0.0.19",
        "@yume-chan/stream-saver": "^2.0.6",
        "@yume-chan/struct": "workspace:^0.0.18",
        "@yume-chan/struct": "workspace:^0.0.19",
        "fflate": "^0.7.4",
        "mobx": "^6.7.0",
        "mobx-react-lite": "^3.4.3",
+0 −10
Original line number Diff line number Diff line
{
  "changes": [
    {
      "packageName": "@yume-chan/adb-backend-webusb",
      "comment": "Remove stream queuing",
      "type": "none"
    }
  ],
  "packageName": "@yume-chan/adb-backend-webusb"
}
 No newline at end of file
+0 −10
Original line number Diff line number Diff line
{
  "changes": [
    {
      "packageName": "@yume-chan/adb-backend-webusb",
      "comment": "Add the `AdbWebUsbBackendManager` class to simplify the usage with custom WebUSB implementations (for example the `usb` NPM package).",
      "type": "none"
    }
  ],
  "packageName": "@yume-chan/adb-backend-webusb"
}
 No newline at end of file
+0 −10
Original line number Diff line number Diff line
{
  "changes": [
    {
      "packageName": "@yume-chan/adb",
      "comment": "Remove `Adb#install` in favor of `PackageManager#install` from `@yume-chan/android-bin` package",
      "type": "none"
    }
  ],
  "packageName": "@yume-chan/adb"
}
 No newline at end of file
Loading