Changelog
Please visit the lite-embed
release page for all history releases.
v1.0.4
Published on Thu May 19 2022.
Bug Fixes 🐛
- fix: upload all files from
dist
folder
Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.3...v1.0.4
v1.0.2
Published on Mon May 09 2022.
What's Changed
Other Changes 🤷♂️
- chore(bump): update dependencies
Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.1...v1.0.2
v1.0.1
Published on Sat Apr 30 2022.
What's Changed
Documentation Changes 📃
- docs: adding twitter meta tags by @danestves in https://github.com/danestves/lite-embed/pull/60
- docs: adding fathom analytics by @danestves in https://github.com/danestves/lite-embed/pull/61
- docs: adding fathom analytics by @danestves in https://github.com/danestves/lite-embed/pull/62
- docs: fix broken overview link by @danestves in https://github.com/danestves/lite-embed/pull/66
- typo: doc's import by @renejfc in https://github.com/danestves/lite-embed/pull/67
- typo: doc's import by @renejfc by @danestves in https://github.com/danestves/lite-embed/pull/68
- docs: add renejfc as a contributor for doc by @allcontributors in https://github.com/danestves/lite-embed/pull/69
- docs: create .all-contributorsrc [skip ci] by @danestves in https://github.com/danestves/lite-embed/pull/70
- chore: using
@lerna-lite
&turbo
instead oflerna
(not maintained) by @danestves in https://github.com/danestves/lite-embed/pull/71 - docs: adding algolia search by @danestves in https://github.com/danestves/lite-embed/pull/73
- docs: adding algolia search by @danestves in https://github.com/danestves/lite-embed/pull/74 ### Bug Fixes 🐛
- fix: remove youtube gradient on loaded by @danestves in https://github.com/danestves/lite-embed/pull/72 ### Other Changes 🤷♂️
- sync: main by @danestves in https://github.com/danestves/lite-embed/pull/63
- [ImgBot] Optimize images by @imgbot in https://github.com/danestves/lite-embed/pull/64
- [ImgBot] Optimize images by @danestves in https://github.com/danestves/lite-embed/pull/65
New Contributors
- @renejfc made their first contribution in https://github.com/danestves/lite-embed/pull/67
- @allcontributors made their first contribution in https://github.com/danestves/lite-embed/pull/69
Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0...v1.0.1
v1.0.1-canary.0
Published on Thu Apr 28 2022.
What's Changed
Documentation Changes 📃
- docs: adding twitter meta tags by @danestves in https://github.com/danestves/lite-embed/pull/60
- docs: adding fathom analytics by @danestves in https://github.com/danestves/lite-embed/pull/61
- docs: adding fathom analytics by @danestves in https://github.com/danestves/lite-embed/pull/62
- docs: fix broken overview link by @danestves in https://github.com/danestves/lite-embed/pull/66
- typo: doc's import by @renejfc in https://github.com/danestves/lite-embed/pull/67
- typo: doc's import by @renejfc by @danestves in https://github.com/danestves/lite-embed/pull/68
- docs: add renejfc as a contributor for doc by @allcontributors in https://github.com/danestves/lite-embed/pull/69
- docs: create .all-contributorsrc [skip ci] by @danestves in https://github.com/danestves/lite-embed/pull/70
- chore: using
@lerna-lite
&turbo
instead oflerna
(not maintained) by @danestves in https://github.com/danestves/lite-embed/pull/71 ### Bug Fixes 🐛 - fix: remove youtube gradient on loaded by @danestves in https://github.com/danestves/lite-embed/pull/72 ### Other Changes 🤷♂️
- [ImgBot] Optimize images by @imgbot in https://github.com/danestves/lite-embed/pull/64
- [ImgBot] Optimize images by @danestves in https://github.com/danestves/lite-embed/pull/65
New Contributors
- @renejfc made their first contribution in https://github.com/danestves/lite-embed/pull/67
- @allcontributors made their first contribution in https://github.com/danestves/lite-embed/pull/69
Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0...v1.0.1-canary.0
v1.0.0
Published on Mon Apr 25 2022.
Welcome to the first release of lite-embed
🎉
In this release, we add support for React and Vue to embed YouTube and Vimeo videos on a website without hustle, let me show you some examples 👇 :
React
import { Vimeo, YoutubeLite } from '@lite-embed/react';
export default function App() {
return (
<>
<VimeoLite urlOrId="https://vimeo.com/476064230" />
<YoutubeLite urlOrId="https://www.youtube.com/watch?v=dQw4w9WgXcQ" />
</>
);
}
Vue
<script setup lang="ts">
import { VimeoLite, YoutubeLite } from '@lite-embed/vue';
</script>
<template>
<div>
<vimeo-lite url-or-id="https://vimeo.com/476064230"></vimeo-lite>
<youtube-lite
url-or-id="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
></youtube-lite>
</div>
</template>
Please visit https://lite-embed.vercel.app/docs to view the full documentation
Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0-canary.7...v1.0.0