Skip to content

Commit

Permalink
add 8 and 16 words english wordles + ua wordle (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
hadrrb authored Mar 13, 2022
1 parent 38b8692 commit d01ef19
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to the "wordle" extension will be documented in this file.

## 1.0.4

- Added 8 and 16 words English wordles
- Added Ukrainian wordle

## 1.0.3

- Ability to change height in settings as well
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ There is the possibility to adjust manually the height of the container in which
## Supported Wordle Games
- [English](https://mikhad.github.io/wordle/#daily)
- [English 4 words](https://www.quordle.com/#/)
- [English 8 words](https://octordle.com/?mode=daily)
- [English 16 words](http://sedecordle.com/?mode=daily)
- [German](https://wordle.at)
- [French](https://wordle.louan.me)
- [Polish](https://www.kurnik.pl/slowoku/)
- [Spanish](https://wordle.danielfrg.com)
- [Ukrainian](https://wordle-ua.net)
- [Italian](https://sebastianomorando.github.io/wordle-it/)
- [Portuguese](https://term.ooo)
- [Arabic](https://arwordle.netlify.app)
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-wordle",
"displayName": "Wordle for VSCode",
"description": "Play Wordle in your VSCode",
"version": "1.0.3",
"version": "1.0.4",
"keywords": ["wordle", "word game", "game"],
"publisher": "RamziHadrich",
"author": {
Expand Down Expand Up @@ -37,10 +37,13 @@
"enum": [
"English",
"English 4 words",
"English 8 words",
"English 16 words",
"German",
"French",
"Polish",
"Spanish",
"Ukrainian",
"Italian",
"Portuguese",
"Swedish",
Expand Down
3 changes: 3 additions & 0 deletions src/pick_language.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ type wordleType = {
export const wordles: wordleType = {
"English": "https://mikhad.github.io/wordle/#daily",
"English 4 words": "https://www.quordle.com/#/",
"English 8 words": "https://octordle.com/?mode=daily",
"English 16 words": "http://sedecordle.com/?mode=daily",
"German": "https://wordle.at",
"French": "https://wordle.louan.me",
"Polish": "https://www.kurnik.pl/slowoku/",
"Spanish": "https://wordle.danielfrg.com",
"Ukrainian": "https://wordle-ua.net",
"Italian": "https://sebastianomorando.github.io/wordle-it/",
"Portuguese": "https://term.ooo",
"Swedish": "https://ordlig.se",
Expand Down
2 changes: 1 addition & 1 deletion src/wordle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class WordleProvider implements vscode.WebviewViewProvider {
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src https:;">
<meta http-equiv="Content-Security-Policy" content="default-src http:;">
<title>Wordle</title>
</head>
Expand Down

0 comments on commit d01ef19

Please sign in to comment.