Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web Improvements including Cloud Tiling #42

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
3de757b
number of improvements
indig0fox Oct 5, 2021
b349edd
visual improvements, cloud tiling
indig0fox Oct 9, 2021
0092ceb
enough for now
indig0fox Oct 11, 2021
31f0ed4
more
indig0fox Jan 3, 2022
e993e99
adds generalEvent for custom event announcements in timeline
indig0fox Mar 28, 2022
7fd1d89
fix markers
indig0fox Mar 28, 2022
1ee3b30
fix for sideLogic units
indig0fox Mar 30, 2022
ae09630
small ui changes
indig0fox Mar 30, 2022
e80afaa
changes to new topo modes
indig0fox Apr 8, 2022
0c15566
fixes cloud tiling CORS issues
indig0fox Apr 13, 2022
4f540e7
Merge remote-tracking branch 'origin/main' into ind/leaflet-functiona…
indig0fox Apr 14, 2022
2e7dbd2
now uses https map.json fetch
indig0fox Apr 14, 2022
9897139
crisper entity popup text
indig0fox Apr 14, 2022
e8d662a
hide AI names by default, more work needed
indig0fox Apr 15, 2022
b3cce90
hotfix leaflet.pattern failure
indig0fox Apr 19, 2022
a10d227
minor index cleanup
indig0fox Apr 21, 2022
77d3092
Update static/scripts/localizable.js
indig0fox May 5, 2022
ae41485
Update static/scripts/localizable.js
indig0fox May 5, 2022
35528a4
use cloud tiles as fallback (#44)
a-sync May 7, 2022
4195095
fix vehicle crew display, dont carry d/c deaths to rejoined players
indig0fox Sep 27, 2022
2e0c70c
ignore data and maps files in git
indig0fox Oct 6, 2022
d844668
ensure that groups in left pane are ordered alphabetically
indig0fox Oct 12, 2022
072b1b4
update missing tiles URL
indig0fox Oct 15, 2022
f4f3659
Merge remote-tracking branch 'origin/main' into ind/leaflet-functiona…
indig0fox Oct 18, 2022
15f5b6d
update data and maps ignores
indig0fox Nov 4, 2022
09697e4
fix basemaps control file reference
indig0fox Nov 4, 2022
c397022
addon and extension version in info screen
JessevGool Feb 3, 2023
b913af2
Merge branch 'web-ui' into ind/leaflet-functionality
indig0fox May 24, 2023
5d40851
- account for new "displayName" attribute in worlds' map.json to supe…
indig0fox May 26, 2023
8767500
fix loading share URL, fix websiteLogo position
indig0fox May 27, 2023
70e64e6
fix fetch exception for loading without a rendered map
indig0fox Jun 6, 2023
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
Prev Previous commit
Next Next commit
hide AI names by default, more work needed
  • Loading branch information
indig0fox committed Apr 15, 2022
commit e8d662a9c8ed7667a09d8f854c8649ef2365a59f
7 changes: 6 additions & 1 deletion static/scripts/ocap.entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@ class Entity {
let element = popup.getElement();
if (element == null) { return }
let display = "inherit";
if (bool || !ui.nicknameEnable) { display = "none" }
// if (!this.isPlayer) {
// popup.closePopup();
// display = "none"
// } else {
if (bool || !ui.nicknameEnable || !this.isPlayer) { display = "none" };
// };

if (element.style.display !== display) {
element.style.display = display;
Expand Down