@wwtelescope/webclient 6.4.2 → 6.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # @wwtelescope/webclient 6.4.3 (2023-11-02)
2
+
3
+ - Fix recovery of share links based on constellation indices (#363, @Carifio24).
4
+
5
+
1
6
  # @wwtelescope/webclient 6.4.2 (2023-06-21)
2
7
 
3
8
  - Update sponsorship branding
@@ -64,7 +64,7 @@ wwt.app.factory(
64
64
  function getPlaceById(id) {
65
65
  var deferred = $q.defer();
66
66
 
67
- searchDataService.getData(all).then(function (d) {
67
+ searchDataService.getData().then(function (d) {
68
68
  var constellationIndex = parseInt(id.split('.')[0]);
69
69
  var placeIndex = parseInt(id.split('.')[1]);
70
70
  var p = d.Constellations[constellationIndex].places[placeIndex];
package/index.html CHANGED
@@ -25,13 +25,13 @@
25
25
  <link href="https://cdnjs.cloudflare.com/ajax/libs/jScrollPane/2.0.23/style/jquery.jscrollpane.css" rel="stylesheet"/>
26
26
  <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
27
27
 
28
- <!-- Global Site Tag (gtag.js) - Google Analytics -->
29
- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-107473046-1"></script>
28
+ <!-- Google tag (gtag.js) -->
29
+ <script async src="https://www.googletagmanager.com/gtag/js?id=G-YWNE29K5CB"></script>
30
30
  <script>
31
31
  window.dataLayer = window.dataLayer || [];
32
- function gtag() { dataLayer.push(arguments) };
32
+ function gtag() { dataLayer.push(arguments); }
33
33
  gtag('js', new Date());
34
- gtag('config', 'UA-107473046-1');
34
+ gtag('config', 'G-YWNE29K5CB');
35
35
  </script>
36
36
 
37
37
  <style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
- "author": "The AAS WorldWide Telescope Team <wwt@aas.org>",
2
+ "author": "The WorldWide Telescope Team <hello@worldwidetelescope.org>",
3
3
  "bugs": {
4
- "email": "wwt@aas.org",
4
+ "email": "hello@worldwidetelescope.org",
5
5
  "url": "https://github.com/WorldWideTelescope/wwt-web-client/issues"
6
6
  },
7
7
  "buildConfig": {
@@ -35,5 +35,5 @@
35
35
  "type": "git",
36
36
  "url": "https://github.com/WorldWideTelescope/wwt-web-client.git"
37
37
  },
38
- "version": "6.4.2"
38
+ "version": "6.4.3"
39
39
  }