99<div align =" center " >
1010
1111![ license] ( https://img.shields.io/badge/license-Apache--2.0-blue?style=flat-square )
12- ![ version] ( https://img.shields.io/badge/version-3.0.4 -brightgreen?style=flat-square )
12+ ![ version] ( https://img.shields.io/badge/version-3.0.5 -brightgreen?style=flat-square )
1313![ typescript] ( https://img.shields.io/badge/TypeScript-5.0+-blue?style=flat-square )
1414
1515[ ![ discord] ( https://img.shields.io/discord/667479986214666272?logo=discord&logoColor=white&style=flat-square )] ( https://diamonddigital.dev/discord )
@@ -55,7 +55,7 @@ All operations go through a single `DropgateClient` instance. Server connection
5555import { DropgateClient } from ' @dropgate/core' ;
5656
5757const client = new DropgateClient ({
58- clientVersion: ' 3.0.4 ' ,
58+ clientVersion: ' 3.0.5 ' ,
5959 server: ' https://dropgate.link' , // URL string or { host, port?, secure? }
6060 fallbackToHttp: true , // auto-retry HTTP if HTTPS fails (optional)
6161});
@@ -422,7 +422,7 @@ For browser environments, you can use the IIFE bundle:
422422<script src="/path/to/dropgate-core.browser.js"></script>
423423<script>
424424 const { DropgateClient } = DropgateCore;
425- const client = new DropgateClient({ clientVersion: ' 3.0 .4 ' , server: location.origin });
425+ const client = new DropgateClient({ clientVersion: ' 3.0 .5 ' , server: location.origin });
426426 // ...
427427</script>
428428```
@@ -432,7 +432,7 @@ Or as an ES module:
432432```html
433433<script type="module">
434434 import { DropgateClient } from ' / path/ to/ dropgate- core .js ' ;
435- const client = new DropgateClient({ clientVersion: ' 3.0 .4 ' , server: location.origin });
435+ const client = new DropgateClient({ clientVersion: ' 3.0 .5 ' , server: location.origin });
436436 // ...
437437</script>
438438```
0 commit comments