Skip to content

Commit bcd3647

Browse files
committed
Mention live labelprinter app
1 parent e313abd commit bcd3647

7 files changed

Lines changed: 11 additions & 9 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Browser-ready label printing toolkit for Brother P-Touch devices. Everything is
1010

1111
NPM package: [`labelprinterkit`](https://www.npmjs.com/package/labelprinterkit)
1212

13+
Live production use: [`labelprinter.app`](https://labelprinter.app/)
14+
1315
#### Quickstart
1416

1517
```bash
@@ -75,7 +77,7 @@ Runtime version access:
7577
```js
7678
import { getLibraryVersion } from 'labelprinterkit'
7779

78-
console.log(getLibraryVersion()) // "1.0.14"
80+
console.log(getLibraryVersion()) // "1.0.15"
7981
```
8082

8183
For a richer layout with a QR code, see `examples/complex_label_with_qrcode.mjs` (uses the `qrcode` ESM from jsdelivr and exposes `window.printLabel` you can wire to a button). An interactive editor with drag-to-reorder, resizing, font/QR editing, and label size controls lives in `examples/complex_label_with_frontend/index.html` (served over https/localhost).

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ import {
3939
```
4040

4141
```js
42-
getLibraryVersion() // "1.0.14"
42+
getLibraryVersion() // "1.0.15"
4343
```

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ If media/status is wrong (for example, 24mm loaded but 9mm requested), `printer.
5858
```js
5959
import { getLibraryVersion } from 'labelprinterkit'
6060

61-
console.log(getLibraryVersion()) // "1.0.14"
61+
console.log(getLibraryVersion()) // "1.0.15"
6262
```

docs/versioning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Use the runtime version API to read the exact library version that is currently
1818
```js
1919
import { getLibraryVersion, LIBRARY_VERSION } from 'labelprinterkit'
2020

21-
console.log(getLibraryVersion()) // "1.0.14"
22-
console.log(LIBRARY_VERSION) // "1.0.14"
21+
console.log(getLibraryVersion()) // "1.0.15"
22+
console.log(LIBRARY_VERSION) // "1.0.15"
2323
```
2424

2525
## When To Use

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "labelprinterkit",
3-
"version": "1.0.14",
3+
"version": "1.0.15",
44
"description": "Browser-ready label printing toolkit for Brother P-Touch devices using WebUSB/WebBluetooth.",
55
"keywords": [
66
"label-printer",

src/version.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// SPDX-License-Identifier: GPL-3.0-or-later
44

5-
export const LIBRARY_VERSION = '1.0.14'
5+
export const LIBRARY_VERSION = '1.0.15'
66

77
export function getLibraryVersion() {
88
return LIBRARY_VERSION

0 commit comments

Comments
 (0)