Skip to content

Commit

Permalink
Slovníky jako WebExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
MikkCZ committed Dec 1, 2018
1 parent daa17f5 commit 1dfccf1
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 102 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ make_xpi_s_diakritikou:
$(MKDIR) $(TARGET)
$(ZIPPROG) -r $(TARGET)/$(S_DIAKRITIKOU).xpi icon.png icon64.png
cd s_diakritikou && \
$(ZIPPROG) -r ../$(TARGET)/$(S_DIAKRITIKOU).xpi dictionaries install.rdf
$(ZIPPROG) -r ../$(TARGET)/$(S_DIAKRITIKOU).xpi dictionaries manifest.json

make_xpi_bez_diakritiky:
$(MKDIR) $(TARGET)
$(ZIPPROG) -r $(TARGET)/$(BEZ_DIAKRITIKY).xpi icon.png icon64.png
cd bez_diakritiky && \
$(ZIPPROG) -r ../$(TARGET)/$(BEZ_DIAKRITIKY).xpi dictionaries install.rdf
$(ZIPPROG) -r ../$(TARGET)/$(BEZ_DIAKRITIKY).xpi dictionaries manifest.json

clean_all:
$(RM_RF) $(TARGET)
50 changes: 0 additions & 50 deletions bez_diakritiky/install.rdf

This file was deleted.

15 changes: 15 additions & 0 deletions bez_diakritiky/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"manifest_version": 2,
"name": "Český slovník kontroly pravopisu (bez diakritiky)",
"description": "Slovník pro kontrolu pravopisu u textů bez diakritiky pro aplikace Mozilla.",
"version": "1.1.1",
"author": "Mozilla.cz",
"dictionaries": {
"cs": "dictionaries/Cestina.dic"
}
}
50 changes: 0 additions & 50 deletions s_diakritikou/install.rdf

This file was deleted.

15 changes: 15 additions & 0 deletions s_diakritikou/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"manifest_version": 2,
"name": "Český slovník pro kontrolu pravopisu",
"description": "Slovník pro kontrolu pravopisu pro aplikace Mozilla.",
"version": "1.1.1",
"author": "Mozilla.cz",
"dictionaries": {
"cs": "dictionaries/cs.dic"
}
}

0 comments on commit 1dfccf1

Please sign in to comment.