Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lsx committed Apr 8, 2023
1 parent c379712 commit 507acc7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,22 @@ Generate a __QR-Code__ is the most simplest thing today.
Reading `Clipboard` and make QR-Code by __hotkey__ is also not so difficult.
People make wheels in __different frameworks__.
Someone build it by `electron`, size __30.2 MB__, and I wrote one by `python`, size __14.1 MB__.
Wrote by `C` is difficult, but minimalist and fastest, I finished it with size of __16 KB__.
Wrote by `C` is difficult, but minimalist and fastest, I finished it with size of __18 KB__.
It working on `Windows XP` and above, compatible with `32/64-bit` system.

## About
- __Author:__ Lishixian
- __QQ:__ 11313213
- __Email:__ lsx7@sina.com
- __GitHub:__ https://github.com/znsoooo/qr-desktop
- __License:__ GPL 2.0 License. Copyright (c) 2022 Lishixian (znsoooo). All Rights Reserved.
- __License:__ GPL 2.0 License. Copyright (c) 2022-2023 Lishixian (znsoooo). All Rights Reserved.

## Feature
- The program is written only by C and size with 16 KB.
- The program is written only by C and size with 18 KB.
- Use Ctrl-Alt-Q to generate qr-code by copied text.
- Long text separate into pages and use PgUp / PgDn to flip.
- Double click the tray icon to switch shown the window.
- Copy ONE file less than 1MB and use hotkey can read text directly.
- Use Ctrl-Alt-Shift-Q to quit.
- Working on Windows XP and above.

Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ char* fileencode2(char *path, char *data, int size);
int filedecode(char *s);


#define QR_VERSION L"v0.2.2"
#define QR_VERSION L"v0.3.0"
#define QR_TITLE L"QR Desktop"
#define QR_ICON 1
#define QR_PAGE_SIZE 2000 // 1个汉字占3个字节
Expand Down

0 comments on commit 507acc7

Please sign in to comment.