Compare commits

..

No commits in common. "webxdc" and "0.1.0" have entirely different histories.

6 changed files with 7 additions and 12 deletions

3
.gitignore vendored
View File

@ -2,5 +2,4 @@ node_modules
.DS_Store
dist
dist-ssr
*.local
wordle.xdc
*.local

View File

@ -1,11 +1,9 @@
# Wordle.xdc
# Vue Wordle
This is a fork of [VVordle](https://github.com/yyx990803/vue-wordle), a Vue.js clone of Wordle, which I repackaged for WebXDC, so you can play with your friends on Delta Chat or Cheogram.
[Live demo](https://vue-wordle.netlify.app/)
[**Download Wordle.xdc**](https://git.linux.ucla.edu/jshiffer/wordle.xdc/releases)
A Vue implementation of the [Wordle game](https://www.powerlanguage.co.uk/wordle/). This is just for fun and doesn't aim to 100% replicate the original.
[VVordle live demo](https://vue-wordle.netlify.app/)
You can make your own Wordle and send it to friends by base64-encoding a word and include it as the URL query, e.g. https://vue-wordle.netlify.app/?YmxpbXA= (this will also allow words that are not in the dictionary.)
This is just for fun and doesn't aim to 100% replicate the original.
This repository is open sourced for learning purposes only - the New York Times owns all applicable rights to the game itself.
This repository is open sourced for learning purposes only - the original creator(s) of Wordle own all applicable rights to the game itself.

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icon.png" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="webxdc.js"></script>
<title>WorldeXDC - a Wordle clone for WebXDC</title>

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

View File

@ -1,2 +0,0 @@
name = "Wordle"
source_code_url = "https://git.linux.ucla.edu/jshiffer/wordle-xdc"