Skip to content

Commit

Permalink
changed version number and added link to github readme
Browse files Browse the repository at this point in the history
  • Loading branch information
SnowdenWintermute committed Jan 26, 2024
1 parent 47d2699 commit d7ea856
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Roguelike Racing

A multiplayer turn based game in the spirit of For the King, Diablo and Final Fantasy.
Live at [label](https://roguelikeracing.com)

UI written with the Yew frontend framework, backend uses websockets via Actix.

Expand Down
6 changes: 3 additions & 3 deletions client/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

<base href="/">

<link rel="preload" href="/roguelike-racing-client-b7d4d6f0bffad2cd_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
<link rel="modulepreload" href="/roguelike-racing-client-b7d4d6f0bffad2cd.js"></head>
<link rel="preload" href="/roguelike-racing-client-a1f8a7222ed7da46_bg.wasm" as="fetch" type="application/wasm" crossorigin="">
<link rel="modulepreload" href="/roguelike-racing-client-a1f8a7222ed7da46.js"></head>
<body>

<script type="module">import init from '/roguelike-racing-client-b7d4d6f0bffad2cd.js';init('/roguelike-racing-client-b7d4d6f0bffad2cd_bg.wasm');</script><script>(function () {
<script type="module">import init from '/roguelike-racing-client-a1f8a7222ed7da46.js';init('/roguelike-racing-client-a1f8a7222ed7da46_bg.wasm');</script><script>(function () {
var protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
var url = protocol + '//' + window.location.host + '/_trunk/ws';
var poll_interval = 5000;
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/lobby/welcome_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn welcome_info() -> Html {
<section class="flex-1 p-4 mb-4 mr-4 bg-slate-700 border border-slate-400 overflow-y-auto">
<h3 class="text-lg">{"Roguelike Racing"}</h3>
<button onclick={handle_show_patch_notes_click} class="mb-2">
{"alpha 0.2.1 ⓘ"}
{"alpha 0.3.0 ⓘ"}
</button>
if *show_patch_notes_state == false {
<WelcomeMessage />
Expand Down

0 comments on commit d7ea856

Please sign in to comment.