Skip to content

Commit

Permalink
Change keyboard ID for development as well
Browse files Browse the repository at this point in the history
  • Loading branch information
hkurokawa committed Mar 17, 2023
1 parent e8a0754 commit f7b2c5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ build: 3rd-party-licenses.txt
$(ZIP) ../$(DIST)/$(PACKAGE_NAME)-$(PACKAGE_VERSION).zip -j ../LICENSE; \
cp $(MANIFEST) ../$(DIST); \
sed -i 's/ (dev)//g' ../$(DIST)/$(MANIFEST); \
sed -i 's/.dev"/"/g' ../$(DIST)/$(MANIFEST); \
$(ZIP) ../$(DIST)/$(PACKAGE_NAME)-$(PACKAGE_VERSION).zip -j ../$(DIST)/$(MANIFEST); \
rm -f ../$(DIST)/$(MANIFEST);

Expand Down
12 changes: 6 additions & 6 deletions extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
"options_page": "options.html",
"input_components": [
{
"name": "SKK(for US keyboard)",
"name": "SKK (dev)(for US keyboard)",
"type": "ime",
"id": "org.jmuk.skk.us",
"id": "org.jmuk.skk.us.dev",
"description": "An SKK clone",
"language": "ja",
"layouts": ["us"]
},{
"name": "SKK(for Japanese keyboard)",
"name": "SKK (dev)(for Japanese keyboard)",
"type": "ime",
"id": "org.jmuk.skk.jp",
"id": "org.jmuk.skk.jp.dev",
"description": "An SKK clone",
"language": "ja",
"layouts": ["jp"]
},{
"name": "SKK(for Dvorak keyboard)",
"name": "SKK (dev)(for Dvorak keyboard)",
"type": "ime",
"id": "org.jmuk.skk.dvorak",
"id": "org.jmuk.skk.dvorak.dev",
"description": "An SKK clone",
"language": "ja",
"layouts": ["us-dvorak"]
Expand Down

0 comments on commit f7b2c5a

Please sign in to comment.