Skip to content

Commit 8edf4ac

Browse files
authored
Merge branch 'main' into newsfix
2 parents bee0047 + 040766d commit 8edf4ac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1201
-362
lines changed

CREDITS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ Licensed under [Open Data Commons Open Database License (ODbL)](https://opendata
4444
Copernicus Global Digital Elevation Models distributed by OpenTopography.
4545
Copyright © opentopography.org. All Rights Reserved. [Terms of Use](https://opentopography.org/usageterms)
4646

47+
### Hawaii Relief Map
48+
49+
[USA Hawaii relief location map](https://commons.wikimedia.org/wiki/File:USA_Hawaii_relief_location_map.svg) by NordNordWest
50+
Licensed under [CC BY-SA 3.0 DE](https://creativecommons.org/licenses/by-sa/3.0/de/deed.en)
51+
4752
## Icons
4853

4954
### [The Noun Project](https://thenounproject.com/)

index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@
249249
<control-panel></control-panel>
250250
</div>
251251
<div
252-
class="order-1 sm:order-none w-full sm:w-1/2 min-[1200px]:w-auto min-[1200px]:fixed min-[1200px]:right-0 min-[1200px]:bottom-0 flex flex-col sm:items-end pointer-events-none"
252+
class="order-1 sm:order-none w-full sm:flex-1 min-[1200px]:w-auto min-[1200px]:fixed min-[1200px]:right-0 min-[1200px]:bottom-0 flex flex-col sm:items-end pointer-events-none"
253253
>
254254
<chat-display></chat-display>
255255
<events-display></events-display>
@@ -262,7 +262,9 @@
262262
<win-modal></win-modal>
263263
<game-starting-modal></game-starting-modal>
264264
<unit-display></unit-display>
265-
<div class="flex flex-col items-end fixed top-4 right-4 z-1000 gap-2">
265+
<div
266+
class="flex flex-col items-end fixed top-0 right-0 min-[1200px]:top-4 min-[1200px]:right-4 z-1000 gap-2"
267+
>
266268
<game-right-sidebar></game-right-sidebar>
267269
<replay-panel></replay-panel>
268270
</div>
258 KB
Loading
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "Hawaii",
3+
"nations": [
4+
{
5+
"coordinates": [283, 281],
6+
"name": "Niihau",
7+
"flag": "us"
8+
},
9+
{
10+
"coordinates": [613, 189],
11+
"name": "Kauai",
12+
"flag": "us"
13+
},
14+
{
15+
"coordinates": [1424, 525],
16+
"name": "Oahu",
17+
"flag": "us"
18+
},
19+
{
20+
"coordinates": [1930, 708],
21+
"name": "Molokai",
22+
"flag": "us"
23+
},
24+
{
25+
"coordinates": [1977, 874],
26+
"name": "Lanai",
27+
"flag": "us"
28+
},
29+
{
30+
"coordinates": [2145, 1036],
31+
"name": "Kahoolawe",
32+
"flag": "us"
33+
},
34+
{
35+
"coordinates": [2287, 900],
36+
"name": "Maui",
37+
"flag": "us"
38+
},
39+
{
40+
"coordinates": [2550, 1550],
41+
"name": "Kona",
42+
"flag": "us"
43+
},
44+
{
45+
"coordinates": [2900, 1500],
46+
"name": "Hilo",
47+
"flag": "us"
48+
}
49+
]
50+
}

map-generator/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ var maps = []struct {
6969
{Name: "amazonriver"},
7070
{Name: "yenisei"},
7171
{Name: "tradersdream"},
72+
{Name: "hawaii"},
7273
{Name: "big_plains", IsTest: true},
7374
{Name: "half_land_half_ocean", IsTest: true},
7475
{Name: "ocean_and_land", IsTest: true},

resources/countries.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1533,6 +1533,11 @@
15331533
"continent": "Europe",
15341534
"name": "Norway"
15351535
},
1536+
{
1537+
"code": "1_Occitania",
1538+
"continent": "Europe",
1539+
"name": "Occitania"
1540+
},
15361541
{
15371542
"code": "Ohio",
15381543
"continent": "North America",

resources/flags/1_Occitania.svg

Lines changed: 3 additions & 0 deletions
Loading

resources/lang/en.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,8 @@
328328
"didier": "Didier",
329329
"didierfrance": "Didier (France)",
330330
"amazonriver": "Amazon River",
331-
"tradersdream": "Traders Dream"
331+
"tradersdream": "Traders Dream",
332+
"hawaii": "Hawaii"
332333
},
333334
"map_categories": {
334335
"featured": "Featured",
@@ -713,6 +714,7 @@
713714
"show_units": "Show Units"
714715
},
715716
"events_display": {
717+
"events": "Events",
716718
"retreating": "retreating",
717719
"alliance_request_status": "{name} {status} your alliance request",
718720
"alliance_accepted": "accepted",
@@ -859,6 +861,13 @@
859861
"pattern": {
860862
"default": "Default"
861863
},
864+
"try_me": "Try me!",
865+
"trial_remaining": "remaining",
866+
"trial_granted": "Skin trial granted!",
867+
"trial_cooldown": "Only one trial per 24 hours. Please try again later.",
868+
"trial_login_required": "Must be logged in to trial a skin",
869+
"reward_countdown": "Reward in {seconds} seconds...",
870+
"steam_wishlist_prompt": "Support OpenFront by adding it to your Steam wishlist",
862871
"select_skin": "Select Skin",
863872
"selected": "selected"
864873
},
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"map": {
3+
"height": 2076,
4+
"num_land_tiles": 408264,
5+
"width": 3200
6+
},
7+
"map16x": {
8+
"height": 519,
9+
"num_land_tiles": 24703,
10+
"width": 800
11+
},
12+
"map4x": {
13+
"height": 1038,
14+
"num_land_tiles": 100951,
15+
"width": 1600
16+
},
17+
"name": "Hawaii",
18+
"nations": [
19+
{
20+
"coordinates": [283, 281],
21+
"flag": "us",
22+
"name": "Niihau"
23+
},
24+
{
25+
"coordinates": [613, 189],
26+
"flag": "us",
27+
"name": "Kauai"
28+
},
29+
{
30+
"coordinates": [1424, 525],
31+
"flag": "us",
32+
"name": "Oahu"
33+
},
34+
{
35+
"coordinates": [1930, 708],
36+
"flag": "us",
37+
"name": "Molokai"
38+
},
39+
{
40+
"coordinates": [1977, 874],
41+
"flag": "us",
42+
"name": "Lanai"
43+
},
44+
{
45+
"coordinates": [2145, 1036],
46+
"flag": "us",
47+
"name": "Kahoolawe"
48+
},
49+
{
50+
"coordinates": [2287, 900],
51+
"flag": "us",
52+
"name": "Maui"
53+
},
54+
{
55+
"coordinates": [2550, 1550],
56+
"flag": "us",
57+
"name": "Kona"
58+
},
59+
{
60+
"coordinates": [2900, 1500],
61+
"flag": "us",
62+
"name": "Hilo"
63+
}
64+
]
65+
}

resources/maps/hawaii/map.bin

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)