Skip to content

Releases: deptyped/vue-telegram

0.8.0

31 Jul 17:21
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.7.0...0.8.0

0.7.0

25 Jul 21:54
Compare
Choose a tag to compare

What's Changed

  • Added support for Bot API 7.7 in #28

  • Added isFeatureSupported helper to useWebApp in #32

    Usage example:

    <script lang="ts" setup>
    import { useWebApp, useWebAppViewport } from 'vue-tg'
    
    const { isFeatureSupported } = useWebApp()
    const { disableVerticalSwipes } = useWebAppViewport()
    
    if (isFeatureSupported('DisableVerticalSwipes')) {
      disableVerticalSwipes()
    } else {
      // some kind of fallback or alert
    }
    </script>

    ClosingConfirmation, CloudStorage, RequestWriteAccess, RequestContact, SettingsButton, BiometricManager, DisableVerticalSwipes features are available to check.

  • Improved types for isPlatform helper, added type hints for all official Telegram apps.

  • Added Nuxt 3 setup to docs by @IAMSDR in #24

  • Breaking Change: Removed default export for plugin, use named import for VueTelegramPlugin:

    -import VueTelegramPlugin from 'vue-tg'
    +import { VueTelegramPlugin } from 'vue-tg'

Full Changelog: 0.6.1...0.7.0

0.6.1

26 Apr 06:46
Compare
Choose a tag to compare

Full Changelog: 0.6.0...0.6.1

0.6.0

05 Apr 00:50
Compare
Choose a tag to compare

What's Changed

  • Add ability to manage event subscriptions manually by @hopleus in #22

Full Changelog: 0.5.0...0.6.0

0.5.0

02 Apr 02:07
eaa8a19
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.4.0...0.5.0

0.4.0

19 Feb 20:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.0...0.4.0

0.3.0

06 Feb 13:08
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.0...0.3.0

0.2.0

10 Jan 19:17
Compare
Choose a tag to compare