Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: loadingio/ldcvmgr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.14
Choose a base ref
...
head repository: loadingio/ldcvmgr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 11 commits
  • 9 files changed
  • 1 contributor

Commits on Dec 12, 2022

  1. Copy the full SHA
    354bb5b View commit details
  2. - npm audit fix for dependencies vulnerabilities fixing

     - bump version
    zbryikt committed Dec 12, 2022
    Copy the full SHA
    4f54ae6 View commit details

Commits on Jan 5, 2023

  1. set default base-z to 3000.

    originally we use `modal` if zmgr is provided.
    this scope the zmgr into `modal`, which may have issues if we want to
    manage z-index along with loaders or other elements.
    additionally, user will have to remember to config their manually
    created ldcover with `modal` `base-z`, otherwise the z-index won't
    align.
    
    this really causes some issue so instead of hard code a default `modal`,
    we use 3000 as default value for user to overwrite.
    zbryikt committed Jan 5, 2023
    Copy the full SHA
    ab5cf18 View commit details
  2. Copy the full SHA
    33c0c8f View commit details
  3. bump version

    zbryikt committed Jan 5, 2023
    Copy the full SHA
    c146528 View commit details

Commits on Feb 11, 2023

  1. - support block i18n based on languageChanged event.

     - bump version
    zbryikt committed Feb 11, 2023
    Copy the full SHA
    82bd313 View commit details

Commits on Sep 9, 2023

  1. - show error by console.error instead log. also, show full error ins…

    …tead of message.
    
     - return never-resolved Promise to stop further exceptions when error handling fails.
     - still throw error when handling ldcvmgr internal error
    zbryikt committed Sep 9, 2023
    Copy the full SHA
    9bd75d5 View commit details

Commits on Sep 10, 2023

  1. audit fix + bump version

    zbryikt committed Sep 10, 2023
    Copy the full SHA
    9b94030 View commit details

Commits on Oct 9, 2023

  1. - fix bug: lock always reject caused by dev code that were accenti…

    …ally left.
    
     - bump version
    zbryikt committed Oct 9, 2023
    Copy the full SHA
    267ac9e View commit details

Commits on Jan 28, 2025

  1. Copy the full SHA
    a3e8beb View commit details

Commits on Feb 25, 2025

  1. Copy the full SHA
    1d6ea0e View commit details
Showing with 1,029 additions and 496 deletions.
  1. +33 −0 CHANGELOG.md
  2. +1 −1 README.md
  3. +56 −24 dist/index.js
  4. +1 −1 dist/index.min.js
  5. +823 −427 package-lock.json
  6. +1 −1 package.json
  7. +57 −17 src/index.ls
  8. +56 −24 web/static/assets/lib/ldcvmgr/dev/index.js
  9. +1 −1 web/static/assets/lib/ldcvmgr/dev/index.min.js
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Change Logs

## v0.0.20

- use `get` instead of `toggle` in `lock` to get cover result value.


## v0.0.19

- fix bug: `lock` always reject caused by dev code that were accentially left.


## v0.0.18

- show error by console.error instead log. also, show full error instead of message.
- return never-resolved Promise to stop further exceptions when error handling fails.
- still throw error when handling ldcvmgr internal error


## v0.0.17

- support block i18n based on `languageChanged` event.


## v0.0.16

- set default `base-z` to `3000`.


## v0.0.15

- use @plotdb/block to load string name cover so we can also run scoped script inside
- npm audit fix for dependencies vulnerabilities fixing


## v0.0.14

- remove unnecessary log
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ constructor options:
- params: additional parameters provided when `get` is called.
- name: toggled ldcover name
- `off`: fired when some ldcover is toggled off. similar params with `on`.
- `lock(name)`: popup a ldcover `name`, and user can't dismiss it.
- `lock(name)`: popup a ldcover `name` with `get`, and force lock to prevent dismissing.
- `purge(name)`: clear cache for ldcover `name`.
- `toggle(name,value,param)`: toggle ldcover `name` with state based on the value (true or false)
- optional `param` passed to `on` event, just like `get`.
80 changes: 56 additions & 24 deletions dist/index.js

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

2 changes: 1 addition & 1 deletion dist/index.min.js

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

Loading