Skip to content

Commit

Permalink
Update refs to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarciabriseno committed May 28, 2024
1 parent abbdeef commit 0fbd9cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 784 files
2 changes: 1 addition & 1 deletion helioviewer.org
Submodule helioviewer.org updated 68 files
+16 −0 .github/pull_request_template.md
+63 −1 .github/workflows/ci.yml
+4 −0 .gitignore
+59 −14 index.php
+65 −4 package-lock.json
+2 −0 package.json
+86 −0 playwright.config.ts
+2 −2 resources/build/build.xml
+5 −1 resources/css/celestial-bodies.css
+6 −1 resources/css/events.css
+1 −0 resources/css/helioviewer-base.css
+6 −0 resources/css/helioviewer-web.css
+5 −1 resources/css/zoom-control.css
+133 −0 resources/images/ftedit-add.svg
+99 −114 resources/js/CustomHandling/CustomHandling.js
+0 −12 resources/js/Events/EventLayerManager.js
+256 −68 resources/js/Events/EventManager.js
+113 −40 resources/js/Events/EventMarker.js
+139 −170 resources/js/Events/EventTree.js
+14 −13 resources/js/Events/HelioviewerEventLayer.js
+15 −20 resources/js/Events/HelioviewerEventLayerManager.js
+48 −13 resources/js/Events/SelectedEventsCache.js
+13 −5 resources/js/HelioviewerClient.js
+1 −5 resources/js/HelioviewerEmbeddedClient.js
+60 −25 resources/js/HelioviewerWebClient.js
+93 −3 resources/js/Image/JP2Image.js
+22 −3 resources/js/Media/MovieManagerUI.js
+23 −7 resources/js/Media/ScreenshotManagerUI.js
+6 −5 resources/js/Tiling/Manager/TileLayerManager.js
+197 −129 resources/js/UI/EventLayerAccordion.js
+13 −12 resources/js/UI/ImagePresets.js
+36 −22 resources/js/UI/ImageScale.js
+10 −7 resources/js/UI/MessageConsole.js
+15 −5 resources/js/UI/TimeControls.js
+39 −111 resources/js/UI/ZoomControls.js
+10 −2 resources/js/Utility/Config.js
+11 −0 resources/js/Utility/HelperFunctions.js
+14 −5 resources/js/Utility/SettingsLoader.js
+2 −0 resources/js/Utility/Tutorial.js
+88 −16 resources/js/Utility/UserSettings.js
+19 −10 resources/js/Viewport/CelestialBodiesSatellites.js
+25 −19 resources/js/Viewport/HelioviewerViewport.js
+1 −1 resources/js/Viewport/Helper/HelioviewerMouseCoordinates.js
+229 −10 resources/js/Viewport/Helper/HelioviewerZoomer.js
+9 −29 resources/js/Viewport/Helper/MouseCoordinates.js
+18 −20 resources/js/Viewport/Helper/SandboxHelper.js
+100 −0 resources/js/Viewport/Helper/ScrollZoom.js
+5 −13 resources/js/Viewport/Helper/ViewportMovementHelper.js
+5 −0 tests/README.md
+12 −0 tests/desktop/embed/hello_embed.spec.ts
+18 −0 tests/desktop/minimal/hello_minimal.spec.ts
+89 −0 tests/desktop/multi/unmatched_image_warning.spec.ts
+40 −0 tests/desktop/normal/hello_helioviewer.spec.ts
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-chromium-darwin.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-chromium-linux.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-darwin.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-edge-darwin.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-edge-linux.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-firefox-darwin.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-firefox-linux.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-webkit-darwin.png
+ tests/desktop/normal/hello_helioviewer.spec.ts-snapshots/Displays-initial-AIA-304-Image-1-webkit-linux.png
+9 −0 tests/mobile/hello_mobile.spec.ts
+ tests/mobile/hello_mobile.spec.ts-snapshots/Mobile---Displays-initial-AIA-304-Image-1-Mobile-Chrome-darwin.png
+ tests/mobile/hello_mobile.spec.ts-snapshots/Mobile---Displays-initial-AIA-304-Image-1-Mobile-Chrome-linux.png
+ tests/mobile/hello_mobile.spec.ts-snapshots/Mobile---Displays-initial-AIA-304-Image-1-Mobile-Safari-darwin.png
+ tests/mobile/hello_mobile.spec.ts-snapshots/Mobile---Displays-initial-AIA-304-Image-1-Mobile-Safari-linux.png
+27 −0 tests/mobile/mobile_unmatched_image_warning.spec.ts

0 comments on commit 0fbd9cc

Please sign in to comment.