Skip to content

Commit

Permalink
beta 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatthieu3 committed Jul 3, 2024
1 parent 00f1340 commit 4b5dc7e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelogs

## 3.4.3-beta

* [bugfix] zoom control buttons

## 3.4.2-beta

* [impr] Improve smartphone support by setting media queries + a better logic for deploying the contextual menu sub options.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"homepage": "https://aladin.u-strasbg.fr/",
"name": "aladin-lite",
"type": "module",
"version": "3.4.2-beta",
"version": "3.4.3-beta",
"description": "An astronomical HiPS visualizer in the browser",
"author": "Thomas Boch and Matthieu Baumann",
"license": "GPL-3",
Expand Down
2 changes: 1 addition & 1 deletion src/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aladin-lite"
description = "Aladin Lite v3 introduces a new graphical engine written in Rust with the use of WebGL"
license = "BSD-3-Clause"
repository = "https://github.com/cds-astro/aladin-lite"
version = "3.4.2-beta"
version = "3.4.3-beta"
authors = [ "[email protected]", "[email protected]",]
edition = "2018"

Expand Down
1 change: 0 additions & 1 deletion src/core/src/camera/viewport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ impl CameraViewPort {

let w2m = Matrix4::identity();
let m2w = w2m;
let center_rot = Angle(0.0);
let center = Vector4::new(0.0, 0.0, 0.0, 1.0);
let moved = false;
let zoomed = false;
Expand Down
4 changes: 2 additions & 2 deletions src/js/Aladin.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ import { Polyline } from "./shapes/Polyline";
* @property {number} [fov=60] - Field of view in degrees.
* @property {string} [backgroundColor="rgb(60, 60, 60)"] - Background color in RGB format.
*
* @property {boolean} [showZoomControl=false] - Whether to show the zoom control toolbar.
* @property {boolean} [showZoomControl=true] - Whether to show the zoom control toolbar.
* This element belongs to the FoV UI thus its CSS class is `aladin-fov`
* @property {boolean} [showLayersControl=true] - Whether to show the layers control toolbar.
* CSS class for that button is `aladin-stack-control`
Expand Down Expand Up @@ -707,7 +707,7 @@ export let Aladin = (function () {
inertia: true,
backgroundColor: "rgb(60, 60, 60)",
// Zoom toolbar
showZoomControl: false,
showZoomControl: true,
// Menu toolbar
showLayersControl: true,
expandLayersControl: false,
Expand Down

0 comments on commit 4b5dc7e

Please sign in to comment.