Skip to content

Commit c7894db

Browse files
committed
release 1.3.2
Cleanup and grammar check by lukevanlukevan
1 parent 2572dbb commit c7894db

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ KMK GUI, Layout Editor, Keymap Editor, Flashing Utility
66
<p align="center">
77
<a href="https://github.com/JanLunge/pog/stargazers"><img src="https://img.shields.io/github/stars/JanLunge/pog" alt="Stars Badge"/></a>
88
<a href="https://github.com/JanLunge/pog/network/members"><img src="https://img.shields.io/github/forks/JanLunge/pog" alt="Forks Badge"/></a>
9-
<img src="https://badgen.net/badge/version/v1.0.5" alt="">
9+
<img src="https://badgen.net/badge/version/v1.3.2" alt="">
1010
</p>
1111

1212
![preview](demo/pog-screenshot.png?raw=true)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pog",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"license": "MIT",
55
"description": "A KMK firmware configurator",
66
"main": "./out/main/index.js",

src/main/pythontemplates/kb.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ class KMKKeyboard(_KMKKeyboard):
3636
self.combos = Combos()
3737
self.modules.append(self.combos)
3838
39+
# TODO: not tested yet
40+
if "capsword" in features:
41+
from kmk.modules.capsword import CapsWord
42+
self.capsword = CapsWord()
43+
self.modules.append(self.capsword)
44+
3945
if pog.config['split']:
4046
from kmk.modules.split import Split, SplitSide, SplitType
4147

0 commit comments

Comments
 (0)