Skip to content

Commit

Permalink
yippie
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhartigan committed Aug 25, 2022
1 parent a39f4e4 commit b10bc5b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.vscode/
.VSCodeCounter/

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/errors/WrongVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function WrongVersion(props) {
<div className={classes.main}>
<div className={classes.content}>
<Typography variant="h4" style={{textAlign: "center"}}>Client Companion version mismatch</Typography>
<Typography variant="body1" style={{textAlign: "center", marginTop: "10px", marginBottom: "10px"}}>Your VIM client companion version is no longer supported. ({ServerVersion} {'→'} {newVersion})</Typography>
<Typography variant="body1" style={{textAlign: "center", marginTop: "10px", marginBottom: "10px"}}>Your VIM client companion version is not supported. ({ServerVersion} {'→'} {newVersion})</Typography>

<div className={classes.buttons}>
<Button target="_blank" href="https://github.com/colinhartigan/valorant-inventory-manager/releases/latest" variant="outlined" color="primary" className={classes.retryButton}>
Expand Down
1 change: 0 additions & 1 deletion client/src/pages/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ function About(props) {
<div className={classes.section} style={{ marginBottom: "10px", }}>
<Typography variant="h3" style={{ color: "white", fontSize: "2rem", marginBottom: "10px", }}>License</Typography>
<Typography variant="body1" style={{ lineHeight: ".5em", width: "95%", marginLeft: "1%" }}>

<p>MIT License</p>
<br />
<p>Copyright (c) 2021 Colin Hartigan</p>
Expand Down
4 changes: 2 additions & 2 deletions client/src/services/ClientConfig.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Config = {
FRONTEND_VERSION: "1.0.0b4",
SERVER_VERSION_COMPATABILITY: ["1.0.0b4"],
FRONTEND_VERSION: "1.0.0",
SERVER_VERSION_COMPATABILITY: ["1.0.0"],
VERSION_CHECK_ENABLED: true,

WEBSOCKET_URL: "ws://localhost:8765",
Expand Down
4 changes: 2 additions & 2 deletions server/src/client_config.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from valclient import Client

# version
SERVER_VERSION = "1.0.0b4"
SERVER_VERSION = "1.0.0"

# debug settings
IS_TEST_BUILD = False # directs to the test client appdata directory

DEBUG = False # prints all log messages to console

FORCE_DEFAULT_SKINS = False # only deafult skins unlocked
UNLOCK_ALL_SKINS = True # just for testing purposes, doesn't actually unlock anything
UNLOCK_ALL_SKINS = False # just for testing purposes, doesn't actually unlock anything
UNLOCK_ALL_BUDDIES = False # just for testing purposes, doesn't actually unlock anything

USE_TEST_DIRECTORY = False # use a different directory for testing purposes
Expand Down

0 comments on commit b10bc5b

Please sign in to comment.