Skip to content

Commit 5f5ad0b

Browse files
authored
chore: revert updating cs to install cs (#346)
1 parent 239e6e6 commit 5f5ad0b

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

components/clips/RenderQueuePanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const QUEUE_BOOT_STAGES: Array<{
6565
label: string;
6666
meta: "required" | "conditional" | "implicit";
6767
}> = [
68-
{ key: "downloading_cs2", label: "Updating CS", meta: "conditional" },
68+
{ key: "downloading_cs2", label: "Installing CS2", meta: "conditional" },
6969
{ key: "launching_steam", label: "Launching Steam", meta: "required" },
7070
{ key: "logging_in", label: "Logging in", meta: "implicit" },
7171
{ key: "downloading_demo", label: "Downloading demo", meta: "required" },

components/match/DemoPlayer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const DEMO_STAGES = [
1515
{ key: "booting", label: "Allocating GPU", meta: "required" as const },
1616
{
1717
key: "downloading_cs2",
18-
label: "Updating CS",
18+
label: "Installing CS2",
1919
meta: "conditional" as const,
2020
},
2121
{

components/match/LiveStreamPlayer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const LIVE_STAGES = [
2626
{ key: "booting", label: "Allocating GPU", meta: "required" as const },
2727
{
2828
key: "downloading_cs2",
29-
label: "Updating CS",
29+
label: "Installing CS2",
3030
meta: "conditional" as const,
3131
},
3232
{

components/match/MatchActions.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ export default {
492492
},
493493
// Sub-line under "Cancel Live Stream" while the streamer pod is
494494
// booting. Mirrors the pod's `status` text so the operator can see
495-
// exactly which boot step is running ("Updating CS…", "Logging
495+
// exactly which boot step is running ("Installing CS2…", "Logging
496496
// in…", etc) — and the error message if the pod reported errored.
497497
gameStreamerStatusLine() {
498498
const row = this.gameStreamerRow as any;
@@ -505,7 +505,7 @@ export default {
505505
const stepLabels: Record<string, string> = {
506506
launching_steam: "Launching Steam…",
507507
logging_in: "Logging in…",
508-
downloading_cs2: "Updating CS",
508+
downloading_cs2: "Installing CS2",
509509
launching_cs2: "Launching CS2…",
510510
connecting_to_game: "Connecting to game…",
511511
starting_capture: "Starting capture…",

components/match/MatchLiveStreams.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ export default {
436436
const labels = {
437437
launching_steam: "Launching Steam…",
438438
logging_in: "Logging in…",
439-
downloading_cs2: "Updating CS",
439+
downloading_cs2: "Installing CS2",
440440
launching_cs2: "Launching CS2…",
441441
connecting_to_game: "Connecting to game…",
442442
starting_capture: "Starting capture…",

pages/stream-deck/[matchId].vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ onBeforeUnmount(() => {
113113
const STATUS_LABELS: Record<string, string> = {
114114
launching_steam: "Launching Steam",
115115
logging_in: "Logging in",
116-
downloading_cs2: "Updating CS",
116+
downloading_cs2: "Installing CS2",
117117
launching_cs2: "Launching CS2",
118118
connecting_to_game: "Connecting to game",
119119
starting_capture: "Starting capture",
@@ -127,7 +127,7 @@ const LIVE_STAGES = [
127127
{ key: "booting", label: "Allocating GPU", meta: "required" as const },
128128
{
129129
key: "downloading_cs2",
130-
label: "Updating CS",
130+
label: "Installing CS2",
131131
meta: "conditional" as const,
132132
},
133133
{

pages/stream-deck/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ async function switchTo(toMatchId: string, mode: "live" | "tv" = "live") {
377377
const STATUS_LABELS: Record<string, string> = {
378378
launching_steam: "Launching Steam",
379379
logging_in: "Logging in",
380-
downloading_cs2: "Updating CS",
380+
downloading_cs2: "Installing CS2",
381381
launching_cs2: "Launching CS2",
382382
connecting_to_game: "Connecting to game",
383383
starting_capture: "Starting capture",
@@ -391,7 +391,7 @@ const LIVE_STAGES = [
391391
{ key: "booting", label: "Allocating GPU", meta: "required" as const },
392392
{
393393
key: "downloading_cs2",
394-
label: "Updating CS",
394+
label: "Installing CS2",
395395
meta: "conditional" as const,
396396
},
397397
{

0 commit comments

Comments
 (0)