Helps positioning your tauri windows.

Overview

Tauri plugin positioner

Crates.io Documentation MIT licensed

A plugin for tauri that helps positioning you windows at well known locations.

Install

Rust

[dependencies]
tauri-plugin-positioner = "0.1"

JavaScript

npm install github:JonasKruckenberg/tauri-plugin-positioner
# or
yarn add github:JonasKruckenberg/tauri-plugin-positioner

Usage

You need to register the plugin first:

use tauri_plugin_positioner::{Positioner, Position};

fn main() {
    tauri::Builder::default()
        .plugin(Positioner::default())
        .build()
        .run();
}

Now you can import the JavaScript API package and move to window:

import { move_window, Position } from 'tauri-plugin-positioner-api'

move_window(Position.TopRight)

Rust only

If you only intend on moving the window from rust code, you can just import the Window trait extension instead of registering the plugin:

Note: Window.move_window method must be called from a different thread!

use tauri_plugin_positioner::{WindowExt, Position};

fn main() {
    tauri::Builder::default()
        .setup(|app| {
          let mut win = app.get_window("main").unwrap();
      
          // Call this method from a different thread
          tauri::async_runtime::spawn(async move {
            let _ = win.move_window(Position::TopRight);
          });
          
          Ok(())
        })
        .build()
        .run();
}

Contributing

PRs are welcome!

License

MIT © Jonas Kruckenberg

Comments
  • Bump tauri from 1.0.0-rc.4 to 1.0.0-rc.6

    Bump tauri from 1.0.0-rc.4 to 1.0.0-rc.6

    Bumps tauri from 1.0.0-rc.4 to 1.0.0-rc.6.

    Release notes

    Sourced from tauri's releases.

    tauri v1.0.0-rc.6

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 403 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (481 crate dependencies)
    

    [1.0.0-rc.6]

    • Fixes the WindowEvent type used on Window::on_window_event.
      • 06aa87b6 fix(core): WindowEvent type used on Window::on_window_event (#3796) on 2022-03-28
    • Fixes WindowEvent::Destroyed not firing.
      • 169b5035 fix(core): actually fire WindowEvent::Destroyed (#3797) on 2022-03-28

    Cargo Publish

    Updating crates.io index
       Packaging tauri v1.0.0-rc.6 (/home/runner/work/tauri/tauri/core/tauri)
       Uploading tauri v1.0.0-rc.6 (/home/runner/work/tauri/tauri/core/tauri)
    

    tauri v1.0.0-rc.5

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 403 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (481 crate dependencies)
    

    [1.0.0-rc.5]

    • Added updater_target method to the Builder struct.

      • 579312f8 feat(updater): separate intel and apple silicon targets, closes #3359 (#3739) on 2022-03-23
    • Added an option to disable the CSP injection of distributable assets nonces and hashes.

      • f6e32ee1 feat(core): add dangerous option to disable compile time CSP injection (#3775) on 2022-03-28
    • Toggle devtools when Ctrl + Shift + I or Command + Option + I is pressed.

    • Use asynchronous file dialog on macOS and Windows to properly set the parent window.

    • The Error enum is now Send + Sync.

      • da1e8793 feat(core): improve and cleanup the Error enum (#3748) on 2022-03-22

    ... (truncated)

    Commits
    • a144e92 Apply Version Updates From Current Changes (#3798)
    • 06aa87b fix(core): WindowEvent type used on Window::on_window_event (#3796)
    • 169b503 fix(core): actually fire WindowEvent::Destroyed (#3797)
    • a073f27 fix(ci): cli.js publish workflow (#3795)
    • f93f969 Revert "chore(deps) Update dependency @​napi-rs/cli to v2.5.0 (#3757)"
    • ae94c6b chore(examples): update lockfile
    • 7a814fc Apply Version Updates From Current Changes (#3634)
    • edad9f4 refactor(core): add RunEvent::WindowEvent (#3793)
    • d5c06f0 chore: update lockfiles
    • c64268f feat(updater): expose builder, allow setting a custom version checker (#3792)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies rust 
    opened by dependabot[bot] 1
  • Bump @tauri-apps/api from 1.0.0-rc.2 to 1.0.0-rc.3

    Bump @tauri-apps/api from 1.0.0-rc.2 to 1.0.0-rc.3

    Bumps @tauri-apps/api from 1.0.0-rc.2 to 1.0.0-rc.3.

    Release notes

    Sourced from @​tauri-apps/api's releases.

    api v1.0.0-rc.3

    Yarn Audit

    yarn audit v1.22.17
    info No lockfile found.
    0 vulnerabilities found - Packages audited: 231
    Done in 3.04s.
    

    [1.0.0-rc.3]

    • Properly define the appWindow type.
    • Added Temp to the BaseDirectory enum.
      • 266156a0 feat(core): add BaseDirectory::Temp and $TEMP variable (#3763) on 2022-03-24

    Yarn Package Publish

    yarn run v1.22.17
    $ yarn build && cd ./dist && yarn publish --access public --loglevel silly
    $ rimraf ./dist && rollup -c --silent && node ./scripts/after-build.cjs
    Dynamic import can only be supported when transforming ES modules to AMD, CommonJS or SystemJS. Only the parser plugin will be enabled.
    [1/4] Bumping version...
    info Current version: 1.0.0-rc.3
    [2/4] Logging in...
    [3/4] Publishing...
    success Published.
    [4/4] Revoking token...
    info Not revoking login token, specified via config file.
    Done in 10.37s.
    

    tauri-macros v1.0.0-rc.3

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 400 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (489 crate dependencies)
    

    [1.0.0-rc.3]

    • Parse window icons at compile time.

    ... (truncated)

    Commits
    • 7a814fc Apply Version Updates From Current Changes (#3634)
    • edad9f4 refactor(core): add RunEvent::WindowEvent (#3793)
    • d5c06f0 chore: update lockfiles
    • c64268f feat(updater): expose builder, allow setting a custom version checker (#3792)
    • f6e32ee feat(core): add dangerous option to disable compile time CSP injection (#3775)
    • e05d718 feat(core): add hotkey to toggle devtools, closes #3776 (#3791)
    • 9ddf8d8 fix(core): properly fire WindowEvent::Destroyed, closes #3688 (#3778)
    • 5fb7433 chore(deps): update wry to 0.14, tao to 0.7 (#3790)
    • 8b807e0 refactor(bundler): allow downgrades, add option to disallow on Windows (#3777)
    • 94d78ef fix(cli.rs): terminate the beforeDevCommand, closes #2794 (#2883)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump typescript from 4.6.2 to 4.6.3

    Bump typescript from 4.6.2 to 4.6.3

    Bumps typescript from 4.6.2 to 4.6.3.

    Release notes

    Sourced from typescript's releases.

    TypeScript 4.6.3

    This release includes fixes for

    For the complete list of fixed issues, check out the

    Downloads are available on:

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump tauri from 1.0.0-rc.2 to 1.0.0-rc.3

    Bump tauri from 1.0.0-rc.2 to 1.0.0-rc.3

    Bumps tauri from 1.0.0-rc.2 to 1.0.0-rc.3.

    Release notes

    Sourced from tauri's releases.

    tauri v1.0.0-rc.3

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 397 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (492 crate dependencies)
    

    [1.0.0-rc.3]

    • tauri::plugin::Builder closures are no longer required to implement Sync.
      • fb7ee2c9 drop Sync req from setup and setup_with_config (#3471) on 2022-02-16
      • b8e4d651 fix(core): drop all plugin builder Sync requirements (#3490) on 2022-02-17
    • Added context to the file system endpoint errors.
      • 06053833 feat(core): add context to the filesystem APIs errors, closes #3457 (#3480) on 2022-02-16
    • Changed the default value for tauri > bundle > macOS > minimumSystemVersion to 10.13.
      • fce344b9 feat(core): set default value for minimum_system_version to 10.13 (#3497) on 2022-02-17

    Cargo Publish

    Updating crates.io index
       Packaging tauri v1.0.0-rc.3 (/home/runner/work/tauri/tauri/core/tauri)
       Uploading tauri v1.0.0-rc.3 (/home/runner/work/tauri/tauri/core/tauri)
    

    tauri-build v1.0.0-rc.3

    Updating crates.io index

    Cargo Audit

    Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
          Loaded 397 security advisories (from /home/runner/.cargo/advisory-db)
        Updating crates.io index
        Scanning Cargo.lock for vulnerabilities (492 crate dependencies)
    

    [1.0.0-rc.3]

    • Automatically emit cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET with the value set on tauri.conf.json > tauri > bundle > macos > minimumSystemVersion.
      • 4bacea5b feat(core): set MACOSX_DEPLOYMENT_TARGET environment variable, closes #2732 (#3496) on 2022-02-17

    Cargo Publish

    Updating crates.io index
       Packaging tauri-build v1.0.0-rc.3 (/home/runner/work/tauri/tauri/core/tauri-build)
       Uploading tauri-build v1.0.0-rc.3 (/home/runner/work/tauri/tauri/core/tauri-build)
    
    Commits
    • 82b7f51 Apply Version Updates From Current Changes (#3468)
    • 5999379 chore(cli): improve "waiting for dev server" message, closes #3491 (#3504)
    • b571c24 chore(deps): update to wry v0.13.2 (#3503)
    • a7fd9e3 fix(deps): update webview2-com to 0.13.0 to fix compilation on windows (#3502)
    • fce344b feat(core): set default value for minimum_system_version to 10.13 (#3497)
    • 4bacea5 feat(core): set MACOSX_DEPLOYMENT_TARGET environment variable, closes #2732...
    • 17f17a8 fix(cli): do not panic if private key password is wrong, closes #3449 (#3495)
    • 53e4dd8 remove create-tauri-app (#3493)
    • a975551 fix(cli): duplicated short flag for signer sign, closes #3483 (#3492)
    • 84895a9 fix(runtime): trait requirements (#3489)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies rust 
    opened by dependabot[bot] 1
  • Bump tauri from 1.0.0-beta.8 to 1.0.0-rc.0

    Bump tauri from 1.0.0-beta.8 to 1.0.0-rc.0

    Bumps tauri from 1.0.0-beta.8 to 1.0.0-rc.0.

    Release notes

    Sourced from tauri's releases.

    create-tauri-app v1.0.0-rc.0

    Yarn Audit

    yarn audit v1.22.17
    info No lockfile found.
    0 vulnerabilities found - Packages audited: 231
    Done in 4.05s.
    

    [1.0.0-rc.0]

    • Add empty description to Cargo.toml in dominator recipe.
    • create-tauri-app should now be fully compatiable with CI environments.
      • f5e77ff4 refactor(cta): use commander instead of minimst (#2551) on 2022-01-01
    • Stop react recipe from opening in browser by default.
      • ea51504e fix(cta): stop react recipe from opening in browser, closes #2793 (#2988) on 2021-11-30
    • Add SolidJS recipe using the official template.

    Yarn Package Publish

    yarn publish v1.22.17
    [1/4] Bumping version...
    info Current version: 1.0.0-rc.0
    [2/4] Logging in...
    [3/4] Publishing...
    $ yarn build
    yarn run v1.22.17
    $ rollup --config
    

    src/index.ts → dist... (!) Plugin typescript: @​rollup/plugin-typescript TS2345: Argument of type 'unknown' is not assignable to parameter of type 'string | undefined'. Type 'unknown' is not assignable to type 'string'. src/shell.ts: (34:21)

    34 throw new Error(error) ~~~~~

    created dist in 2.8s

    BUILD: 2853ms, 83.9 MB / 122 MB

    generate module graph: 161ms, -1.19 MB / 125 MB

    • plugin 0 (typescript) - resolveId: 3ms, 208 kB / 128 MB
    • plugin 1 (commonjs) - resolveId: 0ms, 8.39 kB / 126 MB
    • plugin 1 (commonjs) - resolveId (async): 6ms, -10.5 MB / 115 MB </tr></table>

... (truncated)

Commits
  • 7c0fb73 fix(covector): tauri-utils before tauri-bundler
  • a1cac94 chore: ignore time and chrono security advisories
  • 0876bbb Apply Version Updates From Current Changes (#2522)
  • 18b7ffb fix(covector): remove sync-cli-metadata.js usage
  • 45d427e Merge pull request #3389 from tauri-apps/next
  • 4334865 refactor(cli): rename tooling/cli.rs folder to tooling/cli (#3388)
  • 62c7a8a chore(covector): prepare for rc release (#3376)
  • 2403e73 feat(cli.rs): add tests to node binding, delete cli.js (#3381)
  • 8562706 fix(core): documentation links
  • d5400a3 once_global and once accept FnOnce callbacks (#3383)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependencies rust 
opened by dependabot[bot] 1
  • Bump @tauri-apps/api from 1.0.0-beta.8 to 1.0.0-rc.0

    Bump @tauri-apps/api from 1.0.0-beta.8 to 1.0.0-rc.0

    Bumps @tauri-apps/api from 1.0.0-beta.8 to 1.0.0-rc.0.

    Release notes

    Sourced from @​tauri-apps/api's releases.

    v1.0.0-rc.0

    No release notes provided.

    create-tauri-app v1.0.0-rc.0

    Yarn Audit

    yarn audit v1.22.17
    info No lockfile found.
    0 vulnerabilities found - Packages audited: 231
    Done in 4.05s.
    

    [1.0.0-rc.0]

    • Add empty description to Cargo.toml in dominator recipe.
    • create-tauri-app should now be fully compatiable with CI environments.
      • f5e77ff4 refactor(cta): use commander instead of minimst (#2551) on 2022-01-01
    • Stop react recipe from opening in browser by default.
      • ea51504e fix(cta): stop react recipe from opening in browser, closes #2793 (#2988) on 2021-11-30
    • Add SolidJS recipe using the official template.

    Yarn Package Publish

    yarn publish v1.22.17
    [1/4] Bumping version...
    info Current version: 1.0.0-rc.0
    [2/4] Logging in...
    [3/4] Publishing...
    $ yarn build
    yarn run v1.22.17
    $ rollup --config
    

    src/index.ts → dist... (!) Plugin typescript: @​rollup/plugin-typescript TS2345: Argument of type 'unknown' is not assignable to parameter of type 'string | undefined'. Type 'unknown' is not assignable to type 'string'. src/shell.ts: (34:21)

    34 throw new Error(error) ~~~~~

    created dist in 2.8s

    BUILD: 2853ms, 83.9 MB / 122 MB

    generate module graph: 161ms, -1.19 MB / 125 MB

    </tr></table>

    ... (truncated)

    Commits
    • 7c0fb73 fix(covector): tauri-utils before tauri-bundler
    • a1cac94 chore: ignore time and chrono security advisories
    • 0876bbb Apply Version Updates From Current Changes (#2522)
    • 18b7ffb fix(covector): remove sync-cli-metadata.js usage
    • 45d427e Merge pull request #3389 from tauri-apps/next
    • 4334865 refactor(cli): rename tooling/cli.rs folder to tooling/cli (#3388)
    • 62c7a8a chore(covector): prepare for rc release (#3376)
    • 2403e73 feat(cli.rs): add tests to node binding, delete cli.js (#3381)
    • 8562706 fix(core): documentation links
    • d5400a3 once_global and once accept FnOnce callbacks (#3383)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump rollup from 2.66.0 to 2.67.1

    Bump rollup from 2.66.0 to 2.67.1

    Bumps rollup from 2.66.0 to 2.67.1.

    Release notes

    Sourced from rollup's releases.

    v2.67.1

    2022-02-07

    Bug Fixes

    • Make chunk file and variable names more deterministic when emitting chunks (#4386)
    • Improve default module resolver performance by using non-blocking IO (#4386)

    Pull Requests

    v2.67.0

    2022-02-02

    Features

    • Improve side effect detection when using Array.prototype.groupBy/groupByToMap (#4360)
    • Allow changing moduleSideEffects at any time during the build (#4379)
    • Soft-deprecate ModuleInfo.hasModuleSideEffects in favour of ModuleInfo.moduleSideEffects (#4379)

    Bug Fixes

    • Do not include queries and hashes in generated file names when preserving modules (#4374)

    Pull Requests

    v2.66.1

    2022-01-25

    Bug Fixes

    • Only warn for conflicting names in namespace reexports if it actually causes problems (#4363)

    ... (truncated)

    Changelog

    Sourced from rollup's changelog.

    2.67.1

    2022-02-07

    Bug Fixes

    • Make chunk file and variable names more deterministic when emitting chunks (#4386)
    • Improve default module resolver performance by using non-blocking IO (#4386)

    Pull Requests

    2.67.0

    2022-02-02

    Features

    • Improve side effect detection when using Array.prototype.groupBy/groupByToMap (#4360)
    • Allow changing moduleSideEffects at any time during the build (#4379)
    • Soft-deprecate ModuleInfo.hasModuleSideEffects in favour of ModuleInfo.moduleSideEffects (#4379)

    Bug Fixes

    • Do not include queries and hashes in generated file names when preserving modules (#4374)

    Pull Requests

    2.66.1

    2022-01-25

    ... (truncated)

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump rollup from 2.66.0 to 2.67.0

    Bump rollup from 2.66.0 to 2.67.0

    Bumps rollup from 2.66.0 to 2.67.0.

    Release notes

    Sourced from rollup's releases.

    v2.67.0

    2022-02-02

    Features

    • Improve side effect detection when using Array.prototype.groupBy/groupByToMap (#4360)
    • Allow changing moduleSideEffects at any time during the build (#4379)
    • Soft-deprecate ModuleInfo.hasModuleSideEffects in favour of ModuleInfo.moduleSideEffects (#4379)

    Bug Fixes

    • Do not include queries and hashes in generated file names when preserving modules (#4374)

    Pull Requests

    v2.66.1

    2022-01-25

    Bug Fixes

    • Only warn for conflicting names in namespace reexports if it actually causes problems (#4363)
    • Only allow explicit exports or reexports as synthetic namespaces and hide them from namespace reexports (#4364)

    Pull Requests

    Changelog

    Sourced from rollup's changelog.

    2.67.0

    2022-02-02

    Features

    • Improve side effect detection when using Array.prototype.groupBy/groupByToMap (#4360)
    • Allow changing moduleSideEffects at any time during the build (#4379)
    • Soft-deprecate ModuleInfo.hasModuleSideEffects in favour of ModuleInfo.moduleSideEffects (#4379)

    Bug Fixes

    • Do not include queries and hashes in generated file names when preserving modules (#4374)

    Pull Requests

    2.66.1

    2022-01-25

    Bug Fixes

    • Only warn for conflicting names in namespace reexports if it actually causes problems (#4363)
    • Only allow explicit exports or reexports as synthetic namespaces and hide them from namespace reexports (#4364)

    Pull Requests

    Commits
    • 7eb5bde 2.67.0
    • f6e272c Update changelog
    • d3ed80c refactor: fs.promises, move mkdir to writeoutputfile, Part 3 (#4376)
    • f420a01 Ignore queries and hashes in file names when preserving modules (#4374)
    • e0b1060 Deprecate hasModuleSideEffects in favor of moduleSideEffects and ensure it is...
    • d57cfa0 Fix typo in _config.js (#4375)
    • 50f46bc refactor: use fs.promises in module loader (#4372)
    • 4611705 refactor: use fs.promises in cli/run (#4371)
    • 5364114 feat: add Array.prototype.groupBy/groupByToMap (#4360)
    • 042933a refactor: use fs, fs-extra, remove sander (#4319)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump rollup from 2.66.0 to 2.66.1

    Bump rollup from 2.66.0 to 2.66.1

    Bumps rollup from 2.66.0 to 2.66.1.

    Release notes

    Sourced from rollup's releases.

    v2.66.1

    2022-01-25

    Bug Fixes

    • Only warn for conflicting names in namespace reexports if it actually causes problems (#4363)
    • Only allow explicit exports or reexports as synthetic namespaces and hide them from namespace reexports (#4364)

    Pull Requests

    Changelog

    Sourced from rollup's changelog.

    2.66.1

    2022-01-25

    Bug Fixes

    • Only warn for conflicting names in namespace reexports if it actually causes problems (#4363)
    • Only allow explicit exports or reexports as synthetic namespaces and hide them from namespace reexports (#4364)

    Pull Requests

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump rollup from 2.64.0 to 2.65.0

    Bump rollup from 2.64.0 to 2.65.0

    Bumps rollup from 2.64.0 to 2.65.0.

    Changelog

    Sourced from rollup's changelog.

    2.65.0

    2022-01-21

    Features

    • Add complete import resolution objects to ModuleInfo for use in this.load (#4354)

    Bug Fixes

    • Use correct context in plugin hooks with perf: true (#4357)

    Pull Requests

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • Bump serde from 1.0.133 to 1.0.134

    Bump serde from 1.0.133 to 1.0.134

    Bumps serde from 1.0.133 to 1.0.134.

    Release notes

    Sourced from serde's releases.

    v1.0.134

    • Improve error messages on deserializing NonZero integers from a 0 value (#2158)
    Commits
    • 3bb4a5a Release 1.0.134
    • 6164627 Merge pull request #2159 from serde-rs/nonzero
    • 51aaf49 Write better Visitor for NonZero integers
    • bc66aeb Add tests of deserializing NonZero
    • 7e7044d Ignore clippy in number conversion tests
    • 5498dc0 Add tests of num conversion errors
    • ff04e8b Improve coverage of num conversion in test suite
    • 69240c1 Eliminate macro from serialization tests
    • 237434f Accept ?Sized references in assert_ser_tokens
    • 1833914 Eliminate macro from deserialization error tests
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies rust 
    opened by dependabot[bot] 1
  • Action Required: Fix Renovate Configuration

    Action Required: Fix Renovate Configuration

    There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

    Location: renovate.json Error type: Invalid JSON (parsing failed) Message: Syntax error near }, ] }

    opened by renovate[bot] 0
  • chore(deps): update swatinem/rust-cache action to v2

    chore(deps): update swatinem/rust-cache action to v2

    Mend Renovate

    This PR contains the following updates:

    | Package | Type | Update | Change | |---|---|---|---| | Swatinem/rust-cache | action | major | v1 -> v2 |


    Configuration

    📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    opened by renovate[bot] 0
  • RUSTSEC-2021-0139: ansi_term is Unmaintained

    RUSTSEC-2021-0139: ansi_term is Unmaintained

    ansi_term is Unmaintained

    | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | ansi_term | | Version | 0.12.1 | | URL | https://github.com/ogham/rust-ansi-term/issues/72 | | Date | 2021-08-18 |

    The maintainer has adviced this crate is deprecated and will not receive any maintenance.

    The crate does not seem to have much dependencies and may or may not be ok to use as-is.

    Last release seems to have been three years ago.

    Possible Alternative(s)

    The below list has not been vetted in any way and may or may not contain alternatives;

    See advisory page for additional details.

    opened by github-actions[bot] 0
  • RUSTSEC-2022-0048: xml-rs is Unmaintained

    RUSTSEC-2022-0048: xml-rs is Unmaintained

    xml-rs is Unmaintained

    | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | xml-rs | | Version | 0.8.4 | | URL | https://github.com/netvl/xml-rs/issues | | Date | 2022-01-26 |

    xml-rs is a XML parser has open issues around parsing including integer overflows / panics that may or may not be an issue with untrusted data.

    Together with these open issues with Unmaintained status xml-rs may or may not be suited to parse untrusted data.

    Alternatives

    See advisory page for additional details.

    opened by github-actions[bot] 0
  • RUSTSEC-2018-0017: `tempdir` crate has been deprecated; use `tempfile` instead

    RUSTSEC-2018-0017: `tempdir` crate has been deprecated; use `tempfile` instead

    tempdir crate has been deprecated; use tempfile instead

    | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | tempdir | | Version | 0.3.7 | | URL | https://github.com/rust-lang-deprecated/tempdir/pull/46 | | Date | 2018-02-13 |

    The tempdir crate has been deprecated and the functionality is merged into tempfile.

    See advisory page for additional details.

    opened by github-actions[bot] 0
  • Dependency Dashboard

    Dependency Dashboard

    This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

    Open

    These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

    Detected dependencies

    cargo
    Cargo.toml
    • tauri ^1.0.0-rc.3
    • serde ^1.0.137
    • serde_json ^1.0.81
    • serde_repr ^0.1.8
    github-actions
    .github/workflows/audit-javascript.yml
    • actions/checkout v3
    • actions/cache v3
    • actions/setup-node v3
    • pnpm/action-setup v2.2.4
    .github/workflows/audit-rust.yml
    • actions/checkout v3
    • actions-rs/audit-check v1
    .github/workflows/covector-status.yml
    • actions/checkout v3
    • actions/setup-node v3
    • pnpm/action-setup v2.2.4
    .github/workflows/covector-version-or-publish.yml
    • actions/checkout v3
    • actions-rs/toolchain v1
    • Swatinem/rust-cache v1
    • actions/cache v3
    • actions/setup-node v3
    • pnpm/action-setup v2.2.4
    • tauri-apps/create-pull-request v3.4.1
    .github/workflows/format-javascript.yml
    • actions/checkout v3
    • actions/cache v3
    • actions/setup-node v3
    • pnpm/action-setup v2.2.4
    .github/workflows/format-rust.yml
    • actions/checkout v3
    • actions-rs/toolchain v1
    • actions-rs/cargo v1
    .github/workflows/lint-javascript.yml
    • actions/checkout v3
    • actions/cache v3
    • actions/setup-node v3
    • pnpm/action-setup v2.2.4
    .github/workflows/lint-rust.yml
    • actions/checkout v3
    • actions-rs/toolchain v1
    • Swatinem/rust-cache v1
    • actions-rs/clippy-check v1
    .github/workflows/test.yml
    • actions/checkout v3
    • actions-rs/toolchain v1
    • Swatinem/rust-cache v1
    • actions-rs/cargo v1
    npm
    package.json
    • @tauri-apps/api ^1.0.0
    • covector 0.7.3
    • tsup 6.5.0
    • typescript 4.9.4
    • tslib 2.4.1
    • pnpm 7.18.2

    • [ ] Check this box to trigger a request for Renovate to run again on this repository
    opened by renovate[bot] 0
  • Releases(tauri-plugin-positioner-v1.0.4)
    • tauri-plugin-positioner-v1.0.4(Jun 16, 2022)

      [0.2.7]

      • Update Tauri to v1.0.0
        • Bumped due to a bump in tauri-plugin-positioner.
        • 0bb73eb Create tauri-v1.md on 2022-06-16

      Get:1 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB] Hit:2 http://azure.archive.ubuntu.com/ubuntu focal InRelease Get:3 http://azure.archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal-security InRelease [114 kB] Hit:6 http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal InRelease Get:7 https://packages.microsoft.com/ubuntu/20.04/prod focal/main armhf Packages [22.8 kB] Get:8 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [166 kB] Get:9 https://packages.microsoft.com/ubuntu/20.04/prod focal/main arm64 Packages [28.0 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1924 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [348 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.6 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1093 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [156 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [931 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [209 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.9 kB] Get:18 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [44.8 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-backports/main Translation-en [11.3 kB] Get:22 http://azure.archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [976 B] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1579 kB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-security/main Translation-en [267 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.6 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1031 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [146 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [708 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.6 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [512 B] Fetched 9122 kB in 3s (3352 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version (12.8ubuntu1.1). The following additional packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy Suggested packages: gvfs libdatrie-doc libdv-bin oss-compat libgraphite2-utils libvisual-0.4-plugins libgtk-3-doc jackd2 opus-tools libpango1.0-doc pulseaudio libraw1394-doc libsoup2.4-doc speex libthai-doc libwayland-doc gstreamer1.0-libav The following NEW packages will be installed: bubblewrap gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-javascriptcoregtk-4.0 gir1.2-pango-1.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gstreamer1.0-gl gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-pulseaudio gstreamer1.0-x libaa1 libasyncns0 libatk-bridge2.0-dev libatk1.0-dev libatspi2.0-dev libavc1394-0 libbrotli-dev libcaca0 libcdparanoia0 libdatrie-dev libdbus-1-dev libdv4 libegl-dev libegl-mesa0 libegl1 libegl1-mesa-dev libepoxy-dev libflac8 libfribidi-dev libgl-dev libgl1-mesa-dev libgles-dev libgles1 libgles2 libglvnd-dev libglx-dev libgraphene-1.0-0 libgraphite2-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libhyphen0 libiec61883-0 libjack-jackd2-0 libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.0-dev libmp3lame0 libmpg123-0 libopengl-dev libopengl0 libopenjp2-7 libopus0 liborc-0.4-0 libpango1.0-dev libpangoxft-1.0-0 libpsl-dev libpulse0 libraw1394-11 libsamplerate0 libshout3 libsndfile1 libsoup2.4-dev libspeex1 libtag1v5 libtag1v5-vanilla libthai-dev libtheora0 libtwolame0 libv4l-0 libv4lconvert0 libvisual-0.4-0 libvorbisenc2 libwavpack1 libwayland-bin libwayland-dev libwebkit2gtk-4.0-37 libwebkit2gtk-4.0-dev libwebpdemux2 libwoff1 libxcomposite-dev libxcursor-dev libxdamage-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxtst-dev pango1.0-tools wayland-protocols x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xdg-dbus-proxy 0 upgraded, 103 newly installed, 0 to remove and 28 not upgraded. Need to get 33.5 MB of archives. After this operation, 158 MB of additional disk space will be used. Get:1 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 bubblewrap amd64 0.4.0-1ubuntu4 [35.4 kB] Get:2 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atk-1.0 amd64 2.35.1-1ubuntu2 [18.2 kB] Get:3 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB] Get:4 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libpangoxft-1.0-0 amd64 1.44.7-2ubuntu4 [18.0 kB] Get:5 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-pango-1.0 amd64 1.44.7-2ubuntu4 [26.6 kB] Get:6 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.20-0ubuntu1.1 [196 kB] Get:7 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-harfbuzz-0.0 amd64 2.6.4-1ubuntu4 [26.3 kB] Get:8 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-18 amd64 2.36.3-0ubuntu0.20.04.1 [6166 kB] Get:9 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.36.3-0ubuntu0.20.04.1 [28.8 kB] Get:10 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB] Get:11 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 xdg-dbus-proxy amd64 0.1.2-1 [23.0 kB] Get:12 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-mesa0 amd64 21.2.6-0ubuntu0.1~20.04.2 [96.3 kB] Get:13 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1 amd64 1.3.2-1~ubuntu0.20.04.2 [31.9 kB] Get:14 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 liborc-0.4-0 amd64 1:0.4.31-1 [188 kB] Get:15 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.16.2-4ubuntu0.1 [735 kB] Get:16 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-gl1.0-0 amd64 1.16.2-4ubuntu0.1 [162 kB] Get:17 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-icu0 amd64 2.6.4-1ubuntu4 [5580 B] Get:18 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libhyphen0 amd64 2.8.8-7 [27.0 kB] Get:19 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl0 amd64 1.3.2-1~ubuntu0.20.04.2 [29.2 kB] Get:20 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopenjp2-7 amd64 2.3.1-1ubuntu4.20.04.1 [141 kB] Get:21 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebpdemux2 amd64 0.6.1-2ubuntu0.20.04.1 [9576 B] Get:22 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libwoff1 amd64 1.0.2-1build2 [42.0 kB] Get:23 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-37 amd64 2.36.3-0ubuntu0.20.04.1 [15.1 MB] Get:24 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.36.3-0ubuntu0.20.04.1 [80.2 kB] Get:25 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphene-1.0-0 amd64 1.10.0-1build2 [42.9 kB] Get:26 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-gl amd64 1.16.2-4ubuntu0.1 [109 kB] Get:27 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libcdparanoia0 amd64 3.10.2+debian-13 [46.7 kB] Get:28 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libopus0 amd64 1.3.1-0ubuntu1 [191 kB] Get:29 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu2 [162 kB] Get:30 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvisual-0.4-0 amd64 0.4.0-17 [99.8 kB] Get:31 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libvorbisenc2 amd64 1.3.6-2ubuntu1 [70.7 kB] Get:32 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-base amd64 1.16.2-4ubuntu0.1 [620 kB] Get:33 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libaa1 amd64 1.4p5-46 [47.3 kB] Get:34 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libraw1394-11 amd64 2.1.2-1 [30.7 kB] Get:35 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libavc1394-0 amd64 0.5.4-5 [16.2 kB] Get:36 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libcaca0 amd64 0.99.beta19-2.1ubuntu1.20.04.2 [203 kB] Get:37 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdv4 amd64 1.0.0-12 [58.0 kB] Get:38 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libflac8 amd64 1.3.3-1build1 [103 kB] Get:39 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.16.2-1ubuntu2.1 [63.7 kB] Get:40 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libiec61883-0 amd64 1.2.0-3 [24.3 kB] Get:41 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libsamplerate0 amd64 0.1.9-2 [939 kB] Get:42 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libjack-jackd2-0 amd64 1.9.12~dfsg-2ubuntu2 [267 kB] Get:43 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmp3lame0 amd64 3.100-3 [133 kB] Get:44 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libmpg123-0 amd64 1.25.13-1 [124 kB] Get:45 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu1.20.04.1 [53.2 kB] Get:46 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libshout3 amd64 2.4.3-1 [50.6 kB] Get:47 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-0.3ubuntu2 [280 kB] Get:48 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-0.3ubuntu2 [11.0 kB] Get:49 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libtwolame0 amd64 0.4.0-2 [47.6 kB] Get:50 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4lconvert0 amd64 1.18.0-2build1 [76.5 kB] Get:51 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libv4l-0 amd64 1.18.0-2build1 [41.9 kB] Get:52 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwavpack1 amd64 5.2.0-1ubuntu0.1 [77.3 kB] Get:53 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-plugins-good amd64 1.16.2-1ubuntu2.1 [1739 kB] Get:54 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libasyncns0 amd64 0.8-6 [12.1 kB] Get:55 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libsndfile1 amd64 1.0.28-7ubuntu0.1 [170 kB] Get:56 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libpulse0 amd64 1:13.99.1-1ubuntu3.13 [262 kB] Get:57 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-pulseaudio amd64 1.16.2-1ubuntu2.1 [88.2 kB] Get:58 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 gstreamer1.0-x amd64 1.16.2-4ubuntu0.1 [74.9 kB] Get:59 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2.2 [167 kB] Get:60 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxfixes-dev amd64 1:5.0.3-2 [11.4 kB] Get:61 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-input-dev all 2019.2-1ubuntu1 [2628 B] Get:62 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxi-dev amd64 2:1.7.10-0ubuntu1 [187 kB] Get:63 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B] Get:64 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:65 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB] Get:66 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libatk-bridge2.0-dev amd64 2.34.2-0ubuntu2~20.04.1 [3140 B] Get:67 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libatk1.0-dev amd64 2.35.1-1ubuntu2 [95.2 kB] Get:68 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libbrotli-dev amd64 1.0.7-6ubuntu0.1 [279 kB] Get:69 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libdatrie-dev amd64 0.2.12-3 [17.6 kB] Get:70 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglx-dev amd64 1.3.2-1~ubuntu0.20.04.2 [14.0 kB] Get:71 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [97.8 kB] Get:72 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [17.2 kB] Get:73 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles1 amd64 1.3.2-1~ubuntu0.20.04.2 [10.3 kB] Get:74 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles2 amd64 1.3.2-1~ubuntu0.20.04.2 [15.6 kB] Get:75 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgles-dev amd64 1.3.2-1~ubuntu0.20.04.2 [47.9 kB] Get:76 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libopengl-dev amd64 1.3.2-1~ubuntu0.20.04.2 [3584 B] Get:77 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libglvnd-dev amd64 1.3.2-1~ubuntu0.20.04.2 [11.6 kB] Get:78 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libegl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [7760 B] Get:79 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libgl1-mesa-dev amd64 21.2.6-0ubuntu0.1~20.04.2 [6420 B] Get:80 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB] Get:81 http://azure.archive.ubuntu.com/ubuntu focal-updates/main amd64 libfribidi-dev amd64 1.0.8-2ubuntu0.1 [62.3 kB] Get:82 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libgraphite2-dev amd64 1.3.13-11build1 [14.7 kB] Get:83 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-gobject0 amd64 2.6.4-1ubuntu4 [20.4 kB] Get:84 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libharfbuzz-dev amd64 2.6.4-1ubuntu4 [526 kB] Get:85 http://azure.archive.ubuntu.com/ubuntu focal/main amd64 libthai-dev amd64 0.1.28-3 [24.5 kB]

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v1.0.4 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v1.0.4 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.7(Jun 16, 2022)

      [0.2.7]

      • Update Tauri to v1.0.0
        • Bumped due to a bump in tauri-plugin-positioner.
        • 0bb73eb Create tauri-v1.md on 2022-06-16

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > tsup
      
      CLI Building entry: client/index.ts
      CLI Using tsconfig: tsconfig.json
      CLI tsup v6.1.2
      CLI Using tsup config: /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/tsup.config.ts
      CLI Target: node14
      CLI Cleaning output folder
      ESM Build start
      ESM ⚡️ Build success in 15ms
      ESM client-dist/index.js 1.15 KB
      DTS Build start
      DTS ⚡️ Build success in 1083ms
      DTS client-dist/index.d.ts 659.00 B
      npm info it worked if it ends with ok
      npm verb cli [
      npm verb cli   '/opt/hostedtoolcache/node/14.19.3/x64/bin/node',
      npm verb cli   '/opt/hostedtoolcache/node/14.19.3/x64/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.7.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm verb npm-session ebe1d410ebed9676
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.7.tgz' ]
      npm sill tarball no local data for file:tauri-plugin-positioner-api-0.2.7.tgz. Extracting by manifest.
      npm sill tarball no local data for file:tauri-plugin-positioner-api-0.2.7.tgz. Extracting by manifest.
      npm sill extract file:tauri-plugin-positioner-api-0.2.7.tgz extracted to /tmp/npm-4536-c0096fc7/tmp/fromPackage-3ad23594/package (18ms)
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE               
      npm notice 1.2kB client-dist/index.js  
      npm notice 668B  package.json          
      npm notice 2.0kB README.md             
      npm notice 659B  client-dist/index.d.ts
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.7                                   
      npm notice package size:  2.5 kB                                  
      npm notice unpacked size: 5.6 kB                                  
      npm notice shasum:        dafb647c0bc9048ece386da1bb5470c494c52ccd
      npm notice integrity:     sha512-jwqRHo59UU3aJ[...]y4XSwEDAWvERQ==
      npm notice total files:   5                                       
      npm notice 
      npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-positioner-api 886ms
      + [email protected]
      npm verb exit [ 0, true ]
      npm timing npm Completed in 1615ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v1.0.3(May 25, 2022)

      [0.2.6]

      • Update Tauri to v1.0.0-rc.12
        • Bumped due to a bump in tauri-plugin-positioner.
        • de6d76f Create update-tauri.md on 2022-05-25

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v1.0.3 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v1.0.3 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.6(May 25, 2022)

      [0.2.6]

      • Update Tauri to v1.0.0-rc.12
        • Bumped due to a bump in tauri-plugin-positioner.
        • de6d76f Create update-tauri.md on 2022-05-25

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > tsup
      
      CLI Building entry: client/index.ts
      CLI Using tsconfig: tsconfig.json
      CLI tsup v5.12.8
      CLI Using tsup config: /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/tsup.config.ts
      CLI Target: node12
      CLI Cleaning output folder
      ESM Build start
      ESM ⚡️ Build success in 11ms
      ESM client-dist/index.js 1.13 KB
      DTS Build start
      DTS ⚡️ Build success in 1747ms
      DTS client-dist/index.d.ts 659.00 B
      npm verb cli [
      npm verb cli   '/usr/local/bin/node',
      npm verb cli   '/usr/local/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.6.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm timing npm:load:whichnode Completed in 1ms
      npm timing config:load:defaults Completed in 1ms
      npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 1ms
      npm timing config:load:builtin Completed in 2ms
      npm timing config:load:cli Completed in 3ms
      npm timing config:load:env Completed in 0ms
      npm timing config:load:file:/tmp/db544fe57c49e17a47fabe9d333abd12/.npmrc Completed in 1ms
      npm timing config:load:project Completed in 15ms
      npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
      npm timing config:load:user Completed in 1ms
      npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
      npm timing config:load:global Completed in 0ms
      npm timing config:load:validate Completed in 0ms
      npm timing config:load:credentials Completed in 1ms
      npm timing config:load:setEnvs Completed in 1ms
      npm timing config:load Completed in 26ms
      npm timing npm:load:configload Completed in 26ms
      npm timing npm:load:setTitle Completed in 1ms
      npm timing config:load:flatten Completed in 3ms
      npm timing npm:load:display Completed in 6ms
      npm verb logfile /home/runner/.npm/_logs/2022-05-25T00_27_04_756Z-debug-0.log
      npm timing npm:load:logFile Completed in 4ms
      npm timing npm:load:timers Completed in 1ms
      npm timing npm:load:configScope Completed in 0ms
      npm timing npm:load Completed in 39ms
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.6.tgz' ]
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE               
      npm notice 2.0kB README.md             
      npm notice 659B  client-dist/index.d.ts
      npm notice 1.2kB client-dist/index.js  
      npm notice 2.8kB package.json          
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.6                                   
      npm notice filename:      tauri-plugin-positioner-api-0.2.6.tgz   
      npm notice package size:  2.7 kB                                  
      npm notice unpacked size: 7.7 kB                                  
      npm notice shasum:        7e9e0e50aea468f2fdf6b986716b226b1b3c8bf3
      npm notice integrity:     sha512-71libPTctogWi[...]KlvjNirZfunsw==
      npm notice total files:   5                                       
      npm notice 
      npm notice Publishing to https://registry.npmjs.org/
      npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-positioner-api 855ms
      + [email protected]
      npm timing command:publish Completed in 970ms
      npm verb exit 0
      npm timing npm Completed in 1248ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v1.0.2(May 18, 2022)

      [0.2.5]

      • Update deps
        • Bumped due to a bump in tauri-plugin-positioner.
        • a8d3f73 Create chore-update-deps.md on 2022-05-18

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v1.0.2 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v1.0.2 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.5(May 18, 2022)

      [0.2.5]

      • Update deps
        • Bumped due to a bump in tauri-plugin-positioner.
        • a8d3f73 Create chore-update-deps.md on 2022-05-18

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > tsup
      
      CLI Building entry: client/index.ts
      CLI Using tsconfig: tsconfig.json
      CLI tsup v5.12.8
      CLI Using tsup config: /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/tsup.config.ts
      CLI Target: node12
      CLI Cleaning output folder
      ESM Build start
      ESM ⚡️ Build success in 8ms
      ESM client-dist/index.js 1.13 KB
      DTS Build start
      DTS ⚡️ Build success in 1594ms
      DTS client-dist/index.d.ts 659.00 B
      npm verb cli [
      npm verb cli   '/usr/local/bin/node',
      npm verb cli   '/usr/local/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.5.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm timing npm:load:whichnode Completed in 1ms
      npm timing config:load:defaults Completed in 2ms
      npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 2ms
      npm timing config:load:builtin Completed in 2ms
      npm timing config:load:cli Completed in 3ms
      npm timing config:load:env Completed in 2ms
      npm timing config:load:file:/tmp/bc2b90f637f687da04f56db91423d85c/.npmrc Completed in 1ms
      npm timing config:load:project Completed in 13ms
      npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
      npm timing config:load:user Completed in 1ms
      npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
      npm timing config:load:global Completed in 0ms
      npm timing config:load:validate Completed in 0ms
      npm timing config:load:credentials Completed in 1ms
      npm timing config:load:setEnvs Completed in 1ms
      npm timing config:load Completed in 25ms
      npm timing npm:load:configload Completed in 25ms
      npm timing npm:load:setTitle Completed in 0ms
      npm timing config:load:flatten Completed in 2ms
      npm timing npm:load:display Completed in 5ms
      npm verb logfile /home/runner/.npm/_logs/2022-05-18T22_06_42_827Z-debug-0.log
      npm timing npm:load:logFile Completed in 5ms
      npm timing npm:load:timers Completed in 0ms
      npm timing npm:load:configScope Completed in 0ms
      npm timing npm:load Completed in 37ms
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.5.tgz' ]
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE               
      npm notice 2.0kB README.md             
      npm notice 659B  client-dist/index.d.ts
      npm notice 1.2kB client-dist/index.js  
      npm notice 2.8kB package.json          
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.5                                   
      npm notice filename:      tauri-plugin-positioner-api-0.2.5.tgz   
      npm notice package size:  2.7 kB                                  
      npm notice unpacked size: 7.7 kB                                  
      npm notice shasum:        bc2272eadc8cfc2cee4168ef62a59c025300e200
      npm notice integrity:     sha512-c7//k08b8nDXO[...]JtXWCAj86JwYQ==
      npm notice total files:   5                                       
      npm notice 
      npm notice Publishing to https://registry.npmjs.org/
      npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-positioner-api 2219ms
      + [email protected]
      npm timing command:publish Completed in 2321ms
      npm verb exit 0
      npm timing npm Completed in 2562ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v1.0.1(May 11, 2022)

      [0.2.4]

      • Update Tauri dependencies
        • 2095b6a add dep update changefile on 2022-02-14
        • 53d3a50 publish new versions (#42) on 2022-02-14
        • 9f32726 Create update-deps.md on 2022-05-11

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v1.0.1 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v1.0.1 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.4(May 11, 2022)

      [0.2.4]

      • Update Tauri dependencies
        • 2095b6a add dep update changefile on 2022-02-14
        • 53d3a50 publish new versions (#42) on 2022-02-14
        • 9f32726 Create update-deps.md on 2022-05-11

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > tsup
      
      CLI Building entry: client/index.ts
      CLI Using tsconfig: tsconfig.json
      CLI tsup v5.12.7
      CLI Using tsup config: /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/tsup.config.ts
      CLI Target: node12
      CLI Cleaning output folder
      ESM Build start
      ESM ⚡️ Build success in 7ms
      ESM client-dist/index.js 1.13 KB
      DTS Build start
      DTS ⚡️ Build success in 1459ms
      DTS client-dist/index.d.ts 659.00 B
      npm verb cli [
      npm verb cli   '/usr/local/bin/node',
      npm verb cli   '/usr/local/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.4.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm timing npm:load:whichnode Completed in 0ms
      npm timing config:load:defaults Completed in 2ms
      npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 2ms
      npm timing config:load:builtin Completed in 2ms
      npm timing config:load:cli Completed in 4ms
      npm timing config:load:env Completed in 1ms
      npm timing config:load:file:/tmp/ccdc7062ed216bc2b9760c5334c36a82/.npmrc Completed in 1ms
      npm timing config:load:project Completed in 14ms
      npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
      npm timing config:load:user Completed in 1ms
      npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
      npm timing config:load:global Completed in 0ms
      npm timing config:load:validate Completed in 0ms
      npm timing config:load:credentials Completed in 1ms
      npm timing config:load:setEnvs Completed in 1ms
      npm timing config:load Completed in 26ms
      npm timing npm:load:configload Completed in 26ms
      npm timing npm:load:setTitle Completed in 0ms
      npm timing config:load:flatten Completed in 3ms
      npm timing npm:load:display Completed in 5ms
      npm verb logfile /home/runner/.npm/_logs/2022-05-11T05_13_52_893Z-debug-0.log
      npm timing npm:load:logFile Completed in 5ms
      npm timing npm:load:timers Completed in 0ms
      npm timing npm:load:configScope Completed in 0ms
      npm timing npm:load Completed in 37ms
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.4.tgz' ]
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE               
      npm notice 2.0kB README.md             
      npm notice 659B  client-dist/index.d.ts
      npm notice 1.2kB client-dist/index.js  
      npm notice 2.8kB package.json          
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.4                                   
      npm notice filename:      tauri-plugin-positioner-api-0.2.4.tgz   
      npm notice package size:  2.7 kB                                  
      npm notice unpacked size: 7.7 kB                                  
      npm notice shasum:        ace50885024377a6c1ef52ddfc8f38df1b45bfc4
      npm notice integrity:     sha512-0Gl89buhwwUFl[...]0MZnbAePEVsFg==
      npm notice total files:   5                                       
      npm notice 
      npm notice Publishing to https://registry.npmjs.org/
      npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-positioner-api 791ms
      + [email protected]
      npm timing command:publish Completed in 898ms
      npm verb exit 0
      npm timing npm Completed in 1355ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v1.0.0(Apr 27, 2022)

      [0.2.3]

      • Breaking Change: Uses the new Tauri plugin builder pattern. Use tauri_plugin_positioner::init() instead of tauri_plugin_positioner::Positioner::default().
        • Bumped due to a bump in tauri-plugin-positioner.
        • 14837a8 refactor: use new builder pattern on 2022-02-26
        • 59874d8 fix typo on 2022-02-26

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v1.0.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v1.0.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.3(Apr 27, 2022)

      [0.2.3]

      • Breaking Change: Uses the new Tauri plugin builder pattern. Use tauri_plugin_positioner::init() instead of tauri_plugin_positioner::Positioner::default().
        • Bumped due to a bump in tauri-plugin-positioner.
        • 14837a8 refactor: use new builder pattern on 2022-02-26
        • 59874d8 fix typo on 2022-02-26

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > tsup
      
      CLI Building entry: client/index.ts
      CLI Using tsconfig: tsconfig.json
      CLI tsup v5.12.6
      CLI Using tsup config: /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/tsup.config.ts
      CLI Target: node12
      CLI Cleaning output folder
      ESM Build start
      ESM ⚡️ Build success in 8ms
      ESM client-dist/index.js 1.13 KB
      DTS Build start
      DTS ⚡️ Build success in 1433ms
      DTS client-dist/index.d.ts 659.00 B
      npm verb cli [
      npm verb cli   '/usr/local/bin/node',
      npm verb cli   '/usr/local/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.3.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm timing npm:load:whichnode Completed in 0ms
      npm timing config:load:defaults Completed in 1ms
      npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 1ms
      npm timing config:load:builtin Completed in 1ms
      npm timing config:load:cli Completed in 2ms
      npm timing config:load:env Completed in 1ms
      npm timing config:load:file:/tmp/844a6d50ddce462b45f4bbbe01b6a91b/.npmrc Completed in 1ms
      npm timing config:load:project Completed in 13ms
      npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
      npm timing config:load:user Completed in 0ms
      npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
      npm timing config:load:global Completed in 0ms
      npm timing config:load:validate Completed in 0ms
      npm timing config:load:credentials Completed in 2ms
      npm timing config:load:setEnvs Completed in 1ms
      npm timing config:load Completed in 22ms
      npm timing npm:load:configload Completed in 22ms
      npm timing npm:load:setTitle Completed in 0ms
      npm timing config:load:flatten Completed in 2ms
      npm timing npm:load:display Completed in 9ms
      npm verb logfile /home/runner/.npm/_logs/2022-04-27T18_53_24_717Z-debug-0.log
      npm timing npm:load:logFile Completed in 4ms
      npm timing npm:load:timers Completed in 0ms
      npm timing npm:load:configScope Completed in 0ms
      npm timing npm:load Completed in 35ms
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.3.tgz' ]
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE               
      npm notice 2.0kB README.md             
      npm notice 659B  client-dist/index.d.ts
      npm notice 1.2kB client-dist/index.js  
      npm notice 2.8kB package.json          
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.3                                   
      npm notice filename:      tauri-plugin-positioner-api-0.2.3.tgz   
      npm notice package size:  2.7 kB                                  
      npm notice unpacked size: 7.7 kB                                  
      npm notice shasum:        007bd82aa0042b395ae1ed05a65206a06f75ccf3
      npm notice integrity:     sha512-DFFl9wj9mIrpu[...]kfC177JQGoDYA==
      npm notice total files:   5                                       
      npm notice 
      npm notice Publishing to https://registry.npmjs.org/
      npm http fetch PUT 200 https://registry.npmjs.org/tauri-plugin-positioner-api 933ms
      npm timing command:publish Completed in 1017ms
      + [email protected]
      npm verb exit 0
      npm timing npm Completed in 2260ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v0.2.2(Feb 17, 2022)

      [0.2.2]

      • Update README.md
        • Bumped due to a bump in tauri-plugin-positioner.
        • 92d6c3d Create docs-update-readme.md on 2022-02-17

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v0.2.2 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v0.2.2 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.2(Feb 17, 2022)

      [0.2.2]

      • Update README.md
        • Bumped due to a bump in tauri-plugin-positioner.
        • 92d6c3d Create docs-update-readme.md on 2022-02-17

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > tsup
      
      CLI Building entry: client/index.ts
      CLI Using tsconfig: tsconfig.json
      CLI tsup v5.11.13
      CLI Using tsup config: /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/tsup.config.ts
      CLI Target: node12
      CLI Cleaning output folder
      ESM Build start
      ESM ⚡️ Build success in 9ms
      ESM client-dist/index.js 1.13 KB
      DTS Build start
      DTS ⚡️ Build success in 2115ms
      DTS client-dist/index.d.ts 659.00 B
      npm verb cli [
      npm verb cli   '/usr/local/bin/node',
      npm verb cli   '/usr/local/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.2.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm timing npm:load:whichnode Completed in 0ms
      npm timing config:load:defaults Completed in 2ms
      npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 9ms
      npm timing config:load:builtin Completed in 11ms
      npm timing config:load:cli Completed in 4ms
      npm timing config:load:env Completed in 1ms
      npm timing config:load:file:/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/.npmrc Completed in 1ms
      npm timing config:load:project Completed in 9ms
      npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
      npm timing config:load:user Completed in 0ms
      npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
      npm timing config:load:global Completed in 0ms
      npm timing config:load:validate Completed in 0ms
      npm timing config:load:credentials Completed in 1ms
      npm timing config:load:setEnvs Completed in 1ms
      npm timing config:load Completed in 30ms
      npm timing npm:load:configload Completed in 31ms
      npm timing npm:load:setTitle Completed in 0ms
      npm timing config:load:flatten Completed in 4ms
      npm timing npm:load:display Completed in 15ms
      npm verb logfile /home/runner/.npm/_logs/2022-02-17T10_44_51_191Z-debug-0.log
      npm timing npm:load:logFile Completed in 9ms
      npm timing npm:load:timers Completed in 0ms
      npm timing npm:load:configScope Completed in 0ms
      npm timing npm:load Completed in 69ms
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.2.tgz' ]
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE               
      npm notice 2.0kB README.md             
      npm notice 659B  client-dist/index.d.ts
      npm notice 1.2kB client-dist/index.js  
      npm notice 2.7kB package.json          
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.2                                   
      npm notice filename:      tauri-plugin-positioner-api-0.2.2.tgz   
      npm notice package size:  2.7 kB                                  
      npm notice unpacked size: 7.6 kB                                  
      npm notice shasum:        51d84530d05bac6f93e8f49b300ca43004f19786
      npm notice integrity:     sha512-1fmtbYdFOAjCa[...]giwnZJBA66CPg==
      npm notice total files:   5                                       
      npm notice 
      npm notice Publishing to https://registry.npmjs.org/
      + [email protected]
      npm timing command:publish Completed in 1028ms
      npm verb exit 0
      npm timing npm Completed in 1650ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v0.2.1(Feb 15, 2022)

      [0.2.1]

      • Update tauri to 1.0.0-rc.1, serde to 1.0.136 and serde_json to 1.0.79.
        • 2095b6a add dep update changefile on 2022-02-14

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v0.2.1 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v0.2.1 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.1(Feb 15, 2022)

      [0.2.1]

      • Update tauri to 1.0.0-rc.1, serde to 1.0.136 and serde_json to 1.0.79.
        • 2095b6a add dep update changefile on 2022-02-14

      pnpm Package Publish

      > [email protected] prepublishOnly /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > pnpm run build
      
      
      > [email protected] build /home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner
      > rollup -c ./webview-src/rollup.config.js
      
      
      ./webview-src/index.ts → ./webview-dist...
      created ./webview-dist in 2s
      
      ./webview-src/index.ts → ./webview-dist...
      created ./webview-dist in 1s
      npm verb cli [
      npm verb cli   '/usr/local/bin/node',
      npm verb cli   '/usr/local/bin/npm',
      npm verb cli   'publish',
      npm verb cli   '--ignore-scripts',
      npm verb cli   'tauri-plugin-positioner-api-0.2.1.tgz',
      npm verb cli   '--access',
      npm verb cli   'public',
      npm verb cli   '--loglevel',
      npm verb cli   'silly',
      npm verb cli   '--no-git-checks'
      npm verb cli ]
      npm info using [email protected]
      npm info using [email protected]
      npm timing npm:load:whichnode Completed in 0ms
      npm timing config:load:defaults Completed in 2ms
      npm timing config:load:file:/usr/local/lib/node_modules/npm/npmrc Completed in 2ms
      npm timing config:load:builtin Completed in 2ms
      npm timing config:load:cli Completed in 3ms
      npm timing config:load:env Completed in 0ms
      npm timing config:load:file:/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner/.npmrc Completed in 1ms
      npm timing config:load:project Completed in 3ms
      npm timing config:load:file:/home/runner/.npmrc Completed in 0ms
      npm timing config:load:user Completed in 0ms
      npm timing config:load:file:/usr/local/etc/npmrc Completed in 0ms
      npm timing config:load:global Completed in 0ms
      npm timing config:load:validate Completed in 0ms
      npm timing config:load:credentials Completed in 1ms
      npm timing config:load:setEnvs Completed in 1ms
      npm timing config:load Completed in 12ms
      npm timing npm:load:configload Completed in 12ms
      npm timing npm:load:setTitle Completed in 1ms
      npm timing npm:load:setupLog Completed in 0ms
      npm timing config:load:flatten Completed in 6ms
      npm timing npm:load:cleanupLog Completed in 3ms
      npm timing npm:load:configScope Completed in 0ms
      npm timing npm:load:projectScope Completed in 0ms
      npm timing npm:load Completed in 26ms
      npm verb publish [ 'tauri-plugin-positioner-api-0.2.1.tgz' ]
      npm notice 
      npm notice 📦  [email protected]
      npm notice === Tarball Contents === 
      npm notice 1.1kB LICENSE                  
      npm notice 2.1kB README.md                
      npm notice 3.1kB package.json             
      npm notice 638B  webview-dist/index.d.ts  
      npm notice 3.8kB webview-dist/index.min.js
      npm notice 1.4kB webview-dist/index.mjs   
      npm notice === Tarball Details === 
      npm notice name:          tauri-plugin-positioner-api             
      npm notice version:       0.2.1                                   
      npm notice filename:      tauri-plugin-positioner-api-0.2.1.tgz   
      npm notice package size:  4.4 kB                                  
      npm notice unpacked size: 12.1 kB                                 
      npm notice shasum:        2f853a66482c669f31e64e14820a0db6ea85fb8a
      npm notice integrity:     sha512-v0EqRNo3gyQmH[...]gMTXtEvL6aaJw==
      npm notice total files:   6                                       
      npm notice 
      + [email protected]
      npm timing command:publish Completed in 3088ms
      npm verb exit 0
      npm timing npm Completed in 3420ms
      npm info ok
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v0.2.0(Jan 19, 2022)

      [0.2.0]

      • Add SystemTray relative positions.
        • 765b3ed Create feat-tray-pos.md on 2022-01-19

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v0.2.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v0.2.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.2.0(Jan 19, 2022)

      [0.2.0]

      • Add SystemTray relative positions.
        • 765b3ed Create feat-tray-pos.md on 2022-01-19

      Yarn Package Publish

      yarn publish v1.22.17
      [1/4] Bumping version...
      info Current version: 0.2.0
      [2/4] Logging in...
      [3/4] Publishing...
      $ yarn build
      yarn run v1.22.17
      $ rollup -c ./webview-src/rollup.config.js
      
      ./webview-src/index.ts → ./webview-dist...
      created ./webview-dist in 2s
      
      ./webview-src/index.ts → ./webview-dist...
      created ./webview-dist in 902ms
      Done in 3.44s.
      success Published.
      [4/4] Revoking token...
      info Not revoking login token, specified via config file.
      Done in 8.90s.
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v0.1.0(Nov 19, 2021)

      [0.1.0]

      • Update package/crate metadata
        • 119d9c4 update metadata on 2021-11-19
        • 39e517c Update update-metadata.md on 2021-11-19

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v0.1.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v0.1.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-v0.0.0(Nov 19, 2021)

      Cargo Publish

      Updating crates.io index
         Packaging tauri-plugin-positioner v0.0.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
         Uploading tauri-plugin-positioner v0.0.0 (/home/runner/work/tauri-plugin-positioner/tauri-plugin-positioner)
      warning: the following are not valid category slugs and were ignored: tauri-plugin. Please see https://crates.io/category_slugs for the list of all category slugs.
      
      Source code(tar.gz)
      Source code(zip)
    • tauri-plugin-positioner-api-v0.1.0(Nov 19, 2021)

      [0.1.0]

      • Update package/crate metadata
        • 119d9c4 update metadata on 2021-11-19
        • 39e517c Update update-metadata.md on 2021-11-19

      Yarn Package Publish

      yarn publish v1.22.17
      [1/4] Bumping version...
      info Current version: 0.1.0
      [2/4] Logging in...
      [3/4] Publishing...
      $ yarn build
      yarn run v1.22.17
      $ rollup -c ./webview-src/rollup.config.js
      
      ./webview-src/index.ts → ./webview-dist...
      created ./webview-dist in 2s
      
      ./webview-src/index.ts → ./webview-dist...
      created ./webview-dist in 862ms
      Done in 3.38s.
      success Published.
      [4/4] Revoking token...
      info Not revoking login token, specified via config file.
      Done in 8.16s.
      
      Source code(tar.gz)
      Source code(zip)
    Owner
    Jonas Kruckenberg
    Data science student, dweb contributor. Founding member at Mintter | Tauri developer
    Jonas Kruckenberg
    Web-wrapped Supabase desktop app for macOS, Windows & Linux powered by Tauri

    Supabase Desktop App What is it? It's a cross-platform web-wrapped Supabase desktop app powered by Tauri. You can install it on your macOS, Windows (u

    Abiel Zulio M 12 Jan 25, 2023
    Tagref helps you maintain cross-references in your code.

    Tagref helps you maintain cross-references in your code. You can use it to help keep things in sync, document assumptions, manage invariants, etc. Airbnb uses it for their front-end monorepo. You should use it too!

    Stephan Boyer 119 Dec 28, 2022
    Rust port of the official Windows Driver Samples on Github. Leverages windows-drivers-rs

    Rust Driver Samples This is a Rust port of the driver samples from the original Windows Driver Samples on Github. The repository provides examples and

    Microsoft 80 Oct 10, 2023
    A tool that generates a Sublime Text project file that helps you get started using Scoggle.

    README A tool that generates a Sublime Text project file that helps you get started using Scoggle. While Scoggle-Gen may not find every single source

    Sanjiv Sahayam 0 Jan 10, 2022
    Cross-platform Window library in Rust for Tauri. [WIP]

    Cross-platform application window creation library in Rust that supports all major platforms like Windows, macOS, Linux, iOS and Android. Built for you, maintained for Tauri.

    Tauri 899 Jan 1, 2023
    Hydrogen is the desktop application for Geplauder, built with tauri studio.

    Hydrogen Hydrogen is the desktop application for Geplauder, built with tauri studio. For more information on Geplauder, click here. Usage To configure

    null 4 Nov 21, 2021
    A custom invoke system for Tauri that leverages a localhost server

    Tauri Invoke HTTP This is a crate that provides a custom invoke system for Tauri using a localhost server. Each message is delivered through a XMLHttp

    Tauri 17 Dec 17, 2022
    This is a small demo to accompany the Tauri + Yew tutorial

    Tauri + Yew Demo This is a small demo to accompany the Tauri + Yew tutorial

    Steve Pryde 94 Jan 2, 2023
    📦 Port of tauri-bundler

    ?? Port of tauri-bundler You can now easily create installers for your Deno apps, thanks to the amazing work of Tauri ??

    Marc Espín 28 Dec 7, 2022
    Rust + Yew + Axum + Tauri, full-stack Rust development for Desktop apps.

    rust-yew-axum-tauri-desktop template Rust + Yew + Axum + Tauri, full-stack Rust development for Desktop apps. Crates frontend: Yew frontend app for de

    Jet Li 54 Dec 23, 2022
    Type-safe IPC for Tauri using GraphQL

    Tauri Plugin graphql A plugin for Tauri that enables type-safe IPC through GraphQL. Install Rust [dependencies] tauri-plugin-graphql = "0.2" JavaScrip

    Jonas Kruckenberg 40 Dec 29, 2022
    🦀 Small Tauri SolidJS Example feat. Vite

    Tauri Solid Example (2022) Simple Solid(vite) starter running with Tauri. Should hopefully save some time trying to setup Tauri and Solid. Currently c

    Luke Secomb 14 Oct 25, 2022
    A Raycast/Spotlight like app shell using tauri

    Tauri Shell This repo can be used as reference for building alfred/raycast/spotlight apps using Tauri. Usage This reference repository is using Svelte

    Shivaprasad Bhat 6 Oct 27, 2022
    Bindings to the Tauri API for projects using wasm-bindgen

    tauri-sys Raw bindings to the Tauri API for projects using wasm-bindgen Installation This crate is not yet published to crates.io, so you need to use

    Jonas Kruckenberg 25 Jan 9, 2023
    Tauri and Leptos example.

    tauri-leptos-example Tauri Leptos Requires Rust Nightly. See Leptos nightly Note. # Install Tauri CLI cargo install tauri-cli # Build and develop for

    Michal Vavra 5 Dec 6, 2022
    A cross-platform tauri gui where Oblique Strategies meets Pomodoro

    Obliqoro Oblique Strategies meets Pomodoro Built in Rust, Vue3, and Typescript, using Tauri, and SQLite Screenshots About Obliqoro is an open source,

    Jack Wills 8 Dec 19, 2022
    SimpleX Chat GUI built with Rust, Tauri and Yew

    simplex-desktop A desktop application for simplex-chat. WIP, contributions are welcome. Architecture For the back end we rust with tauri and frontend

    Simon Shine 5 Feb 28, 2023
    A lightweight new Bing (AI chat) desktop application which based on Tauri.

    Bing Lite A lightweight new Bing (AI chat) desktop application which based on Tauri. No more Microsoft Edge, no more Chromium/Electron! Download The l

    a.e. 6 Apr 5, 2023
    🥃 A plugin for swizzling Tauri’s NSWindow to NSPanel

    Swizzle Tauri's NSWindow to NSPanel Install There are three general methods of installation that we can recommend. Use crates.io and npm (easiest, and

    Victor Aremu 11 Mar 24, 2023