This repository was archived by the owner on Nov 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into livestream
- Loading branch information
Showing
22 changed files
with
191 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
language: node_js | ||
node_js: | ||
- 0.10 | ||
addons: | ||
firefox: "28.0" | ||
env: DISPLAY=:99.0 | ||
#addons: | ||
# firefox: "38.7.1esr" | ||
#env: DISPLAY=:99.0 | ||
services: | ||
- redis-server | ||
before_install: | ||
- sudo apt-get update && sudo apt-get install -qq build-essential libssl-dev curl | ||
- sh -e /etc/init.d/xvfb start | ||
- cp conf.json.example conf.json | ||
before_script: | ||
- curl -L https://selenium-release.storage.googleapis.com/2.43/selenium-server-standalone-2.43.0.jar > bin/selenium-server-standalone.jar | ||
script: "npm test" | ||
# - sh -e /etc/init.d/xvfb start | ||
#before_script: | ||
# - curl -L https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar > bin/selenium-server-standalone.jar | ||
script: "npm run noseleniumtest" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## v2.1.0 | ||
|
||
- Upgrade to selenium-server-standalone v2.53.0 and selenium-webdriver v2.47.0. You will likely need to re-download selenium-server-standalone: | ||
|
||
curl -L https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar > bin/selenium-server-standalone.jar | ||
|
||
- Tear out old farming functionality, which Google broke. See [hangout-farmer](https://github.com/unhangout/hangout-farmer.git) for a temporary workaround until we can replace Google Hangouts. | ||
|
||
## v2.0.0 | ||
|
||
- First version of changelog. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
java.util.logging.ConsoleHandler.level = OFF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -514,7 +514,7 @@ module.exports = { | |
var message = { | ||
"html": html, | ||
"subject": "unhangout administrator account", | ||
"from_email": "[email protected]", | ||
"from_email": options.UNHANGOUT_SERVER_EMAIL_ADDRESS, | ||
"from_name": "Unhangout Team", | ||
"to": [{ | ||
"email": req.body.adminInviteeEmail | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "unhangout-server", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"author": "Drew Harry <[email protected]>", | ||
"description": "a server for managing un-hangouts; large scale online un-conference-style events using Google Hangout", | ||
"contributors": [ | ||
|
@@ -23,10 +23,7 @@ | |
"start": "node ./bin/unhangout-server", | ||
"setup": "source conf.sh", | ||
"test": "bin/uglytests.sh", | ||
"forever-start": "NODE_ENV=production forever start --minUptime 1000 --spinSleepTime 1000 -a -l unhangout.log -o logs/out.log -e logs/err.log bin/unhangout-server", | ||
"forever-stop": "forever stop bin/unhangout-server", | ||
"forever-restart": "NODE_ENV=production forever restart bin/unhangout-server", | ||
"forever-list": "forever list" | ||
"noseleniumtest": "NODE_ENV=testing SKIP_SELENIUM_TESTS=1 mocha" | ||
}, | ||
"main": "./lib/unhangout-server.js", | ||
"repository": { | ||
|
@@ -73,8 +70,8 @@ | |
"expect.js": "0.3.1", | ||
"libxmljs": "git://github.com/gwicke/libxmljs.git#7e1ceaf", | ||
"mailparser": "~0", | ||
"mocha": "1.18.2", | ||
"selenium-webdriver": "2.44.0", | ||
"mocha": "2.4.5", | ||
"selenium-webdriver": "2.47.0", | ||
"should": "3.2.0-beta1", | ||
"simplesmtp": "~0", | ||
"sinon": "1.10.3", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.