Skip to content

Latest commit

 

History

History
351 lines (215 loc) · 17.4 KB

CHANGELOG.md

File metadata and controls

351 lines (215 loc) · 17.4 KB

Change Log

v1.0.0-rc3 (2022-04-24)

Bug Fixes

Features

v1.0.0-rc2 (2022-01-27)

Features

1.0.0-rc1 (2021-10-14)

BREAKING CHANGES

  • import paths have changed:

    Vue 3:

    - import OhVueIcon from "oh-vue-icons/dist/v3/icon.es";
    + import { OhVueIcon, addIcons } from "oh-vue-icons";
    
    - OhVueIcon.add(FaFlag)
    + addIcons(FaFlag)

    Vue 2:

    - import OhVueIcon from "oh-vue-icons";
    + import { OhVueIcon, addIcons } from "oh-vue-icons";
    
    - OhVueIcon.add(FaFlag)
    + addIcons(FaFlag)
  • @vue/composition-api is needed for Vue 2, @nuxtjs/composition-api is needed for Nuxt 2.

Features

0.4.7 (2021-08-02)

Features

0.4.6 (2021-07-25)

Features

0.4.5 (2021-07-18)

Bug Fixes

0.4.4 (2021-07-11)

This version has been DEPRECATED (see #15), use v0.4.5 or above instead.

Features

0.4.3 (2021-05-08)

Features

0.4.2 (2021-04-14)

Features

0.4.1 (2021-03-29)

BREAKING CHANGES

  • expand data argument to remove need of array whem import icons (c32a79b) (#10)

  • use rollup to bundle the component in esm format (4a31c95) (#9)

  • import paths have changed:

    Icons:

    - OhVueIcon.add([FaFlag, RiZhihuFill]);
    + OhVueIcon.add(FaFlag, RiZhihuFill);

    Vue 3:

    - import OhVueIcon from "oh-vue-icons/dist/v3/icon.umd.min";
    + import OhVueIcon from "oh-vue-icons/dist/v3/icon.es";

0.3.1 (2021-03-26)

Features

0.3.0 (2021-03-24)

Features

BREAKING CHANGES

  • import paths have changed:

    Vue 2:

    - import OhVueIcon from "oh-vue-icons/components/icon";
    + import OhVueIcon from "oh-vue-icons";

    Vue 2 SSR:

    + import OhVueIcon from "oh-vue-icons/dist-css/v2/icon.umd.min";
    + import 'oh-vue-icons/dist-css/v2/icon.css'

    Vue 3:

    - import OhVueIcon from "oh-vue-icons/components/icon-v3";
    + import OhVueIcon from "oh-vue-icons/dist/v3/icon.umd.min";

    Vue 3 SSR:

    + import OhVueIcon from "oh-vue-icons/dist-css/v3/icon.umd.min";
    + import 'oh-vue-icons/dist-css/v3/icon.css'

0.2.2 (2021-03-22)

Features

0.2.1 (2021-03-14)

BREAKING CHANGES

  • support Vue 3 🎉 (d58e037)

  • import path for Vue 2 has changed:

    - import OhVueIcon from "oh-vue-icons/components/Icon";
    + import OhVueIcon from "oh-vue-icons/components/icon";

Features

0.1.11 (2021-02-27)

Bug Fixes

  • remove core-js from dependencies (#3) (0213f03)

0.1.10 (2021-02-25)

Features

0.1.9 (2021-02-13)

Features

0.1.8 (2021-02-02)

Features

  • iconpack: add Octicons (b381719)
  • animation: support adjusting animation speed, add flash animation (e8ecf8f)

0.1.7 (2021-01-05)

Bug Fixes

  • fix tree shaking problems (which occured due to the code sructure change in v0.1.5) (3507656)

Features

0.1.6 (2021-01-03)

Features

Chore

  • change the prefix of gameicons to 'gi' (287852b)

0.1.5 (2020-12-25)

Features

BREAKING CHANGES

  • change the way of importing icons (40d37d2)

0.1.2 (2020-12-06)

Features

  • resize some of the icons for better and more consistent user experience (6caf2e2)

0.1.1 (2020-12-06)

Bug Fixes

  • upgrade some packages to generate svgs correctly (0e37e60)

Features

  • support importing a whole given icon pack (cb3e137)

0.1.0 (2020-12-04)

Features