Skip to content

Commit 265d234

Browse files
authored
Merge pull request #53 from encap/dev
Dev
2 parents c8ce07e + 07bbf69 commit 265d234

27 files changed

+3708
-1017
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ You can now submit code examples on which our users will test their typing skill
127127
Assuming your code passes all our tests it will be waiting for human verification as a pull request [here][pulls-url].
128128

129129
## Known Issues
130-
* Sometimes after disconnecting from server not all variables updated
131-
* In multiplayer language changes above editor when admin selects new one and the player is still on the results page
130+
* Navbar glitches on small screens
132131

133132
## License
134133

package-lock.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"cm-show-invisibles": "^3.1.0",
2828
"codemirror": "^5.58.1",
2929
"cors": "^2.8.5",
30+
"countup.js": "^2.0.7",
3031
"debug": "^4.2.0",
3132
"dotenv": "^8.2.0",
3233
"express": "^4.17.1",
@@ -38,6 +39,7 @@
3839
"vue": "^2.6.12",
3940
"vue-chartjs": "^3.5.1",
4041
"vue-codemirror": "^4.0.6",
42+
"vue-countup-v2": "^4.0.0",
4143
"vue-router": "^3.4.5",
4244
"vue-socket.io": "^3.0.10",
4345
"vue-socket.io-extended": "^4.0.4",

public/code/Ruby/pop3.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'net/pop'
22

3-
mail_server = Net::POP3.new('mail.encap.pl')
3+
mail_server = Net::POP3.new('mail.coderush.xyz')
44

55
begin
66
mail_server.start('username','password')

public/code/Swift/load_webView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ViewController: UIViewController, UIWebViewDelegate {
1010

1111
myWebView.delegate = self
1212

13-
let myURL = URL(string: "https://encap.pl")
13+
let myURL = URL(string: "https://coderush.xyz")
1414
let myURLRequest:URLRequest = URLRequest(url: myURL!)
1515
myWebView.loadRequest(myURLRequest)
1616

0 commit comments

Comments
 (0)