Skip to content

Commit

Permalink
Version 1.3.0, add world map viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
maciej-trebacz committed Feb 15, 2025
1 parent ab5080c commit 9c7252c
Show file tree
Hide file tree
Showing 51 changed files with 5,595 additions and 27 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 1.3.0 (2025-02-15)

### World

* Adds a world map viewer showing a live, zoomable top-down map with ability to toggle section boundaries, triangle boundaries and showing current positions of certain models.

## 1.2.5 (2025-02-14)

### General

* Fixed a crash when using certain features (Skip FMV, Full Party Heal, a few others) on vanilla FF7.

## 1.2.4 (2025-02-12)

### Field
Expand Down
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri + React + Typescript</title>
<title>Ultima</title>
</head>

<body>
Expand Down
25 changes: 25 additions & 0 deletions map.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!doctype html>
<html lang="en" style="height: 100%; margin: 0;">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ultima</title>
<style>
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
#root {
width: 100%;
height: 100%;
}
</style>
</head>

<body>
<main id="root"></main>
<script type="module" src="/src/main-map.tsx"></script>
</body>
</html>
Loading

0 comments on commit 9c7252c

Please sign in to comment.