Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,14 @@
<a id="contact-nav" class="nav-link js-scroll-trigger hide" href="#contact">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://github.com/kyle8998/Vynchronize">Source Code</a>
<a class="nav-link js-scroll-trigger" href="https://www.facebook.com/vynchronize">
<i class="fab fa-facebook"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="https://github.com/kyle8998/Vynchronize">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</div>
Expand Down
9 changes: 6 additions & 3 deletions js/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ function loveLive(roomnum) {
// Travel, blow your mind, pop/stars, BBIBBI, gotta go, galaxy, my trouble, blue
// love scenario, dance the night away, solo, some, yes or yes, when the wind blows, hi high, don't forget,
// Uh Oh!, Workaholic, 25, through the night, four seasons, bom, runaway, don't
// psycho, fancy, feel special, leave (park bo young), blueming,
var video_roulette = [
'97uviVyw0_o', 'tIWpr3tHzII', 'WkdtmT8A2iY', 'U7mPqycQ0tQ',
'i0p1bmr0EmE', 'FzVR_fymZw4', 'eNmL4JiGxZQ', 'J_CFBjAyPWE',
Expand All @@ -344,11 +345,13 @@ function loveLive(roomnum) {
'vecSVX1QYbQ', 'Fm5iP0S1z9w', 'b73BI9eUkjM', 'hZmoMyFXDoI',
'mAKsZ26SabQ', 'o3pOzegB-7w', '846cjX0ZTrk', 'TcytstV1_XE',
'ycYLPbtxU1Q', 'mrAIqeULUL0', 'SNS2tOGGGRk', 'BzYnNdJhZQw',
'4HG_CJzyX6A', 'AsXxuIdpkWM', 'rloIUIKLFfY', 'IB6kViGA3rY'
'4HG_CJzyX6A', 'AsXxuIdpkWM', 'rloIUIKLFfY', 'IB6kViGA3rY',
'uR8Mrt1IpXg', 'kOHB85vDuow', '3ymwOvzhwHs', 'NmY6wo3rEso',
'D1PvIWdJ8xo'
]

// Random number between 0 and 56 inclusive
var random = Math.floor(Math.random() * (64))
// Random number between 0 and 68 inclusive
var random = Math.floor(Math.random() * (69))
// Only for YouTube testing
socket.emit('change video', {
room: roomnum,
Expand Down
64 changes: 44 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
"dependencies": {
"dotenv": "8.1.0",
"express": "*",
"lodash": "^4.17.13",
"socket.io": "*"
"lodash": "^4.17.15",
"socket.io": "*",
"ws": ">=3.3.1"
},
"bugs": {
"url": "https://github.com/kyle8998/Vynchronize/issues"
Expand Down