Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
edf6172
Loadout editor basics
VirxEC Mar 20, 2025
8c9637f
Add new items
VirxEC Mar 14, 2025
de56098
Sort mutators by name
VirxEC Mar 15, 2025
8d5e2b8
Reload scripts too
VirxEC Mar 17, 2025
cf14761
Update deps
VirxEC Mar 17, 2025
a3fda2e
Add color randomize button
VirxEC Mar 17, 2025
dd35e3a
Use svelte await block
VirxEC Mar 17, 2025
da5d361
Use svelte await block for events
VirxEC Mar 17, 2025
6c511cd
Per-`ItemField` randomize buttons
VirxEC Mar 17, 2025
cc89e46
Non-fs loadout saving
VirxEC Mar 17, 2025
166c969
Only load items once
VirxEC Mar 18, 2025
df6915a
Show full item name on hover
VirxEC Mar 18, 2025
c70fd0d
Formatting
VirxEC Mar 18, 2025
4b1005f
Fix bug + formatting
VirxEC Mar 18, 2025
806e5e4
Use type `CsvItem` more
VirxEC Mar 18, 2025
ff0f542
Load all decals when `carId` is `0`
VirxEC Mar 18, 2025
9981438
Randomize whole loadout
VirxEC Mar 18, 2025
6effc64
Sort items by name
VirxEC Mar 18, 2025
04b0cd4
Overhaul tags again to exactly match v4
VirxEC Mar 18, 2025
f039bdf
Disable animation when > 16 players due to lag
VirxEC Mar 18, 2025
8e9417f
Implement saving loadouts to disk
VirxEC Mar 18, 2025
58e6f87
Fix custom color id not being set
VirxEC Mar 18, 2025
e7d39fa
Add in-game loadout previews
VirxEC Mar 18, 2025
c7a746a
Implement auto-preview
VirxEC Mar 18, 2025
6ea6a31
Set unlimited boost
VirxEC Mar 18, 2025
9119297
Showcase types
VirxEC Mar 18, 2025
c066105
Boost field positions
VirxEC Mar 18, 2025
f282643
Use currently selected map
VirxEC Mar 18, 2025
57b6287
format
VirxEC Mar 18, 2025
f587186
Add `MatchPhaseKickoff` as a valid active phase
VirxEC Mar 19, 2025
50854a0
Working favorites system
VirxEC Mar 20, 2025
8efbd16
Fix spelling
VirxEC Mar 19, 2025
5770eac
Fix "Standard" category filtering
VirxEC Mar 19, 2025
8b06d4e
Update time remaining in the events calendar in real time
VirxEC Mar 19, 2025
5a4f3ba
Vertically center .info-logo, when it exists
VirxEC Mar 20, 2025
f19bd5c
Update app min width/height
VirxEC Mar 20, 2025
caee378
Start with no human in the bot list
VirxEC Mar 20, 2025
b29ff83
Sort maps by name
VirxEC Mar 21, 2025
fc75a32
Formatting
VirxEC Mar 21, 2025
4d4844b
Update svelte
VirxEC Mar 21, 2025
84e4db0
Update go deps
VirxEC Mar 21, 2025
dcd1c49
Label changed mutators in orange
VirxEC Mar 21, 2025
b331a51
Center the footer in a small window
VirxEC Mar 21, 2025
75f34da
Use `$derived` for `showHuman`
VirxEC Mar 21, 2025
a79cfb8
Merge branch 'master' into loadout-editor
VirxEC Mar 28, 2025
567cdab
New mutators
VirxEC Mar 28, 2025
114bbde
update deps
VirxEC Mar 28, 2025
a3c3b6f
update lock
VirxEC Mar 28, 2025
742a905
Filter drops from items list
VirxEC Mar 28, 2025
1a6411b
update go interface
VirxEC Mar 28, 2025
8ad9c10
Update mutator names
VirxEC Mar 29, 2025
f2e8c0e
Update bob-diff to match bob v0.3.1
VirxEC Mar 29, 2025
1946f2e
Clean up categories implementation
VirxEC Mar 29, 2025
ffaa538
Update bobdiff extension
VirxEC Mar 29, 2025
fe37715
update go interface for core v0.5
VirxEC Mar 30, 2025
7b2ea0c
Don't pass bobdiff through xz reader
VirxEC Mar 30, 2025
f9a0a66
Fix loadout preview state setting
VirxEC Apr 5, 2025
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
Binary file modified bob-diff/libbob_diff.a
Binary file not shown.
Binary file modified bob-diff/libbob_diff_win.a
Binary file not shown.
12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
"preview": "rsbuild preview"
},
"dependencies": {
"@wailsio/runtime": "3.0.0-alpha.27",
"svelte": "^5.20.5",
"svelte-5-french-toast": "2.0.1",
"svelte-dnd-action": "^0.9.57"
"@wailsio/runtime": "3.0.0-alpha.66",
"svelte": "^5.25.3",
"svelte-5-french-toast": "2.0.4",
"svelte-dnd-action": "^0.9.60"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rsbuild/core": "1.0.5",
"@rsbuild/plugin-svelte": "1.0.5",
"@rsbuild/core": "1.3.0",
"@rsbuild/plugin-svelte": "1.0.8",
"typescript": "^5.8.2"
}
}
309 changes: 158 additions & 151 deletions frontend/pnpm-lock.yaml

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions frontend/rsbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,14 @@ export default defineConfig({
js: "inline-source-map",
},
},
tools: {
rspack(config, { addRules }) {
addRules([
{
test: /\.csv$/,
type: "asset/resource",
},
]);
},
},
});
2 changes: 1 addition & 1 deletion frontend/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let eventsVisible = $state(false);
{/if}
</div>
<div class="navbuttons">
<button id={eventsNow > 0 || eventsFuture > 0 ? "events" : ""} onclick={() => { eventsVisible = true; }}>
<button id={eventsNow > 0 || eventsFuture > 0 ? "events" : ""} onclick={() => eventsVisible = true}>
Events

{#if eventsNow > 0}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/arena-names.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export const MAPS_STANDARD = {
"AquaDome (Shallows)": "Underwater_GRS_P",
"Salty Shores (SaltyFest)": "Beach_Night_GRS_P",
"Drift Woods": "Woods_P",
"NeoTokyo (Arcade)": "NeoTokyo_Arcade_P",
"Futura Garden": "UF_Day_P",
};

// biome-ignore format: keep consistent
Expand Down
1 change: 1 addition & 0 deletions frontend/src/assets/arrows.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/assets/eye.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7,877 changes: 7,877 additions & 0 deletions frontend/src/assets/items.csv

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions frontend/src/assets/random.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/assets/star.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/assets/starFilled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading