Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 1.66 KB

CHANGELOG.md

File metadata and controls

45 lines (24 loc) · 1.66 KB

2.1.0 (2024-04-18)

Features

  • Add custom color config for the search and history button (b3fb792)

2.0.1 (2019-02-07)

Bug Fixes

  • Add try/catch around findConfigByKey() calls | 🐛 (8522adf)

2.0.0 (2019-02-04)

BREAKING CHANGES

  • Attribute datas is renamed config :
    • From : <pm-angular-omnibox datas="$ctrl.datasOmnibox" />
    • To : <pm-angular-omnibox config="$ctrl.configOmnibox" />
  • The config's key autocomplete does not accept Promise anymore, only array :
    • From : config.pokemons.autocomplete = this.$http.get(uri)
    • To : this.$http.get(uri).then((pokemons) => { config.pokemons.autocomplete = pokemons; })

Features

  • Add search history and ability to load last history entry (8bd8e04)
    • The history is stored in the LocalStorage under the key omnibox-history
    • You can inject the OmniboxStorageService and use the lockOn method to prepend a string to this string :
      • OmniboxStorageService.lockOn(this.user.name)

1.2.2 (2018-12-06)

Bug Fixes

  • github link + gif example (0e31033)
  • Multiple tokens and fix js errors (37157d8)

Fork from a private gitlab repository