Skip to content

Commit 5a16cb4

Browse files
committed
FB/GH icons + Dependency Fixes
Added facebook page and github page icons as hyperlinks. In addition, fixed a few dependency vulnerbilities.
1 parent 0e96e66 commit 5a16cb4

File tree

4 files changed

+58
-23
lines changed

4 files changed

+58
-23
lines changed

index.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,14 @@
7373
<a id="contact-nav" class="nav-link js-scroll-trigger hide" href="#contact">Contact</a>
7474
</li>
7575
<li class="nav-item">
76-
<a class="nav-link js-scroll-trigger" href="https://github.com/kyle8998/Vynchronize">Source Code</a>
76+
<a class="nav-link js-scroll-trigger" href="https://www.facebook.com/vynchronize">
77+
<i class="fab fa-facebook"></i>
78+
</a>
79+
</li>
80+
<li class="nav-item">
81+
<a class="nav-link js-scroll-trigger" href="https://github.com/kyle8998/Vynchronize">
82+
<i class="fab fa-github"></i>
83+
</a>
7784
</li>
7885
</ul>
7986
</div>

js/sync.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ function loveLive(roomnum) {
328328
// Travel, blow your mind, pop/stars, BBIBBI, gotta go, galaxy, my trouble, blue
329329
// love scenario, dance the night away, solo, some, yes or yes, when the wind blows, hi high, don't forget,
330330
// Uh Oh!, Workaholic, 25, through the night, four seasons, bom, runaway, don't
331+
// psycho, fancy, feel special, leave (park bo young), blueming,
331332
var video_roulette = [
332333
'97uviVyw0_o', 'tIWpr3tHzII', 'WkdtmT8A2iY', 'U7mPqycQ0tQ',
333334
'i0p1bmr0EmE', 'FzVR_fymZw4', 'eNmL4JiGxZQ', 'J_CFBjAyPWE',
@@ -344,11 +345,13 @@ function loveLive(roomnum) {
344345
'vecSVX1QYbQ', 'Fm5iP0S1z9w', 'b73BI9eUkjM', 'hZmoMyFXDoI',
345346
'mAKsZ26SabQ', 'o3pOzegB-7w', '846cjX0ZTrk', 'TcytstV1_XE',
346347
'ycYLPbtxU1Q', 'mrAIqeULUL0', 'SNS2tOGGGRk', 'BzYnNdJhZQw',
347-
'4HG_CJzyX6A', 'AsXxuIdpkWM', 'rloIUIKLFfY', 'IB6kViGA3rY'
348+
'4HG_CJzyX6A', 'AsXxuIdpkWM', 'rloIUIKLFfY', 'IB6kViGA3rY',
349+
'uR8Mrt1IpXg', 'kOHB85vDuow', '3ymwOvzhwHs', 'NmY6wo3rEso',
350+
'D1PvIWdJ8xo'
348351
]
349352

350-
// Random number between 0 and 56 inclusive
351-
var random = Math.floor(Math.random() * (64))
353+
// Random number between 0 and 68 inclusive
354+
var random = Math.floor(Math.random() * (69))
352355
// Only for YouTube testing
353356
socket.emit('change video', {
354357
room: roomnum,

package-lock.json

Lines changed: 42 additions & 18 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"dotenv": "8.1.0",
1717
"express": "*",
1818
"lodash": "^4.17.13",
19-
"socket.io": "*"
19+
"socket.io": "*",
20+
"ws": ">=3.3.1"
2021
},
2122
"bugs": {
2223
"url": "https://github.com/kyle8998/Vynchronize/issues"

0 commit comments

Comments
 (0)