Skip to content

Commit c5d4a20

Browse files
author
cranko
committed
Release commit created with Cranko.
+++ cranko-release-info-v1 [[projects]] qnames = ["@wwtelescope/research-app-messages", "npm"] version = "0.18.0" age = 0 [[projects]] qnames = ["@wwtelescope/engine-types", "npm"] version = "0.6.7" age = 2 [[projects]] qnames = ["@wwtelescope/engine", "npm"] version = "7.30.0" age = 0 [[projects]] qnames = ["@wwtelescope/embed-common", "npm"] version = "0.3.6" age = 0 [[projects]] qnames = ["@wwtelescope/embed-creator", "npm"] version = "0.5.1" age = 0 [[projects]] qnames = ["@wwtelescope/astro", "npm"] version = "0.2.5" age = 2 [[projects]] qnames = ["@wwtelescope/engine-helpers", "npm"] version = "0.16.1" age = 0 [[projects]] qnames = ["@wwtelescope/engine-pinia", "npm"] version = "0.10.0" age = 0 [[projects]] qnames = ["@wwtelescope/research-app", "npm"] version = "0.17.0" age = 0 [[projects]] qnames = ["@wwtelescope/embed", "npm"] version = "1.7.1" age = 0 +++
2 parents bfee2c5 + 8c12fac commit c5d4a20

29 files changed

+1170
-1148
lines changed

ci/azure-deployment.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ jobs:
328328
- ${{ if parameters.isRelease }}:
329329
- job: branch_and_tag
330330
pool:
331-
vmImage: ubuntu-20.04
331+
vmImage: ubuntu-latest
332332
variables:
333333
- group: Deployment Credentials
334334
steps:
@@ -346,7 +346,7 @@ jobs:
346346
- job: github_releases
347347
dependsOn: branch_and_tag # otherwise, GitHub creates the tags itself!
348348
pool:
349-
vmImage: ubuntu-20.04
349+
vmImage: ubuntu-latest
350350
variables:
351351
- group: Deployment Credentials
352352
steps:
@@ -362,7 +362,7 @@ jobs:
362362
363363
- job: yarn_publish
364364
pool:
365-
vmImage: ubuntu-20.04
365+
vmImage: ubuntu-latest
366366
variables:
367367
- group: Deployment Credentials
368368
steps:

ci/azure-main-build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ parameters:
1111
jobs:
1212
- job: build_linux
1313
pool:
14-
vmImage: ubuntu-20.04
14+
vmImage: ubuntu-latest
1515
steps:
1616
- template: azure-job-setup.yml
1717
parameters:
@@ -122,7 +122,7 @@ jobs:
122122

123123
- job: browserstack
124124
pool:
125-
vmImage: ubuntu-20.04
125+
vmImage: ubuntu-latest
126126
steps:
127127
- template: azure-job-setup.yml
128128
parameters:
@@ -167,7 +167,7 @@ jobs:
167167

168168
- job: lint
169169
pool:
170-
vmImage: ubuntu-20.04
170+
vmImage: ubuntu-latest
171171
steps:
172172
- template: azure-job-setup.yml
173173
parameters:
@@ -182,7 +182,7 @@ jobs:
182182

183183
- job: docs_engine
184184
pool:
185-
vmImage: ubuntu-20.04
185+
vmImage: ubuntu-latest
186186
steps:
187187
- template: azure-job-setup.yml
188188
parameters:
@@ -224,7 +224,7 @@ jobs:
224224

225225
- job: docs_research
226226
pool:
227-
vmImage: ubuntu-20.04
227+
vmImage: ubuntu-latest
228228
steps:
229229
- template: azure-job-setup.yml
230230
parameters:

docs/engine/research-app-messages-index.md

+5
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,8 @@ The {@link PingPongMessage} interface is also special. If you send this message
5353
app, it will reply with an identical message. This is useful for checking
5454
whether the app has started up, because usually there is no alternative to
5555
polling it.
56+
57+
The {@link ClearTileCacheMessage} interface describes a message that, when received by
58+
the app, will cause it to refresh its current cache of tiles. The primary use case
59+
for this should be if a network error has caused a necessary tile to fail to load. This
60+
should be used only when necessary, as it clears all previously downloaded tiles.

embed-common/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# @wwtelescope/embed-common 0.3.6 (2024-02-07)
2+
3+
- No code changes; update some of the documentation infrastructure.
4+
5+
16
# @wwtelescope/embed-common 0.3.5 (2023-09-15)
27

38
- Update sponsorship branding and "front door" email address (#269, #271, @pkgw).

embed-common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@
3838
},
3939
"type": "module",
4040
"types": "./dist/src/index.d.ts",
41-
"version": "0.3.5"
41+
"version": "0.3.6"
4242
}

embed-creator/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# @wwtelescope/embed-creator 0.5.1 (2024-02-07)
2+
3+
- No code changes; update to the latest typedoc for documentation generation.
4+
5+
16
# @wwtelescope/embed-creator 0.5.0 (2023-09-15)
27

38
- Require the new, ESM-based version of the WebGL engine (#271, @pkgw). While

embed-creator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"lint": "vue-cli-service lint src",
5757
"serve": "vue-cli-service serve"
5858
},
59-
"version": "0.5.0"
59+
"version": "0.5.1"
6060
}

embed/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# @wwtelescope/embed 1.7.1 (2024-02-07)
2+
3+
- Pull in a change in the `@wwtelescope/engine-pinia` package that corrects the
4+
tour playback timeline scrubber (#294, @pkgw).
5+
6+
17
# @wwtelescope/embed 1.7.0 (2023-09-15)
28

39
- Require the new, ESM-based version of the WebGL engine (#271, @pkgw). While

embed/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@fortawesome/vue-fontawesome": "^3",
1111
"@wwtelescope/embed-common": "workspace:>=0.2.0",
1212
"@wwtelescope/engine": "workspace:^7.29.1",
13-
"@wwtelescope/engine-pinia": "workspace:>=0.1.0",
13+
"@wwtelescope/engine-pinia": "workspace:>=0.10.0",
1414
"screenfull": "^5",
1515
"v-tooltip": "^2.1",
1616
"vue": "^3",
@@ -41,7 +41,7 @@
4141
"internalDepVersions": {
4242
"@wwtelescope/embed-common": "manual:workspace:>=0.2.0",
4343
"@wwtelescope/engine": "thiscommit:2023-09-15:u5a68Lm",
44-
"@wwtelescope/engine-pinia": "thiscommit:2022-11-10:R3G9gH3"
44+
"@wwtelescope/engine-pinia": "thiscommit:2024-02-07:wwKwK5K"
4545
},
4646
"keywords": [
4747
"WorldWide Telescope"
@@ -59,5 +59,5 @@
5959
"lint": "vue-cli-service lint src",
6060
"serve": "vue-cli-service serve"
6161
},
62-
"version": "1.7.0"
62+
"version": "1.7.1"
6363
}

engine-helpers/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# @wwtelescope/engine-helpers 0.16.1 (2024-02-07)
2+
3+
- No code changes
4+
- Update to the latest typedoc and work on the docs a bit.
5+
6+
17
# @wwtelescope/engine-helpers 0.16.0 (2023-09-15)
28

39
- Require the new, ESM-based version of the WebGL engine (#271, @pkgw). While

engine-helpers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
},
4343
"type": "module",
4444
"types": "./dist/src/index.d.ts",
45-
"version": "0.16.0"
45+
"version": "0.16.1"
4646
}

engine-pinia/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# @wwtelescope/engine-pinia 0.10.0 (2024-02-07)
2+
3+
- Expose the new mechanism in the engine that allows the tile cache to be
4+
manually cleared (#291, @Carifio24)
5+
- Correct the `loadTour()` method on the Pinia store, fixing higher-level
6+
management and introspection of the tour timeline (#294, @pkgw)
7+
- Lots of work on the documentation (#274, #275, #276, #277, #278, @pkgw)
8+
9+
110
# @wwtelescope/engine-pinia 0.9.0 (2023-09-15)
211

312
- Require the new, ESM-based version of the WebGL engine (#271, @pkgw). While

engine-pinia/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@
5353
"lint": "vue-cli-service lint src"
5454
},
5555
"types": "./dist/src/index.d.ts",
56-
"version": "0.9.0"
56+
"version": "0.10.0"
5757
}

engine-pinia/src/store.ts

+14-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import {
2424
LayerMap,
2525
SpreadSheetLayer,
2626
SpreadSheetLayerSettingsInterfaceRO,
27+
TileCache,
2728
WWTControl,
2829
} from "@wwtelescope/engine";
2930

@@ -813,6 +814,7 @@ function availableImagesets(): ImagesetInfo[] {
813814
* - {@link viewAsTourXml}
814815
* - {@link captureFrame}
815816
* - {@link captureVideo}
817+
* - {@link clearTileCache}
816818
*/
817819
export const engineStore = defineStore('wwt-engine', {
818820
// NOTE: We were originally alphabetizing these all, but now I think it will
@@ -1499,7 +1501,7 @@ export const engineStore = defineStore('wwt-engine', {
14991501
*/
15001502
async loadTour(
15011503
{ url, play }: LoadTourParams
1502-
): Promise<{ tourRunTime: number | null; tourStopStartTimes: number[]; }> {
1504+
): Promise<void> {
15031505
if (this.$wwt.inst === null)
15041506
throw new Error('cannot loadTour without linking to WWTInstance');
15051507

@@ -1524,7 +1526,8 @@ export const engineStore = defineStore('wwt-engine', {
15241526
}
15251527
}
15261528

1527-
return { tourRunTime, tourStopStartTimes };
1529+
this.tourRunTime = tourRunTime;
1530+
this.tourStopStartTimes = tourStopStartTimes;
15281531
},
15291532

15301533
/** Request the engine to load the specified image collection.
@@ -1871,6 +1874,15 @@ export const engineStore = defineStore('wwt-engine', {
18711874
if (this.$wwt.inst === null)
18721875
throw new Error("cannot captureVideo without linking to WWTInstance");
18731876
return this.$wwt.inst.captureVideo(options);
1877+
},
1878+
1879+
/** Clear the current cache of tiles.
1880+
* The intended use case here is if a network issue caused a necessary tile to not load.
1881+
* This should only be used when necessary, as any previously downloaded tiles will need
1882+
* to be re-fetched.
1883+
* */
1884+
clearTileCache(): void {
1885+
TileCache.clearCache();
18741886
}
18751887
},
18761888
});

engine-pinia/src/wwtaware.ts

+1
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ export const WWTAwareComponent = defineComponent({
169169
"zoom",
170170
"move",
171171
"tilt",
172+
"clearTileCache",
172173
]),
173174
}
174175
});

engine/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# @wwtelescope/engine 7.30.0 (2024-02-07)
2+
3+
- Add a `TileCache.clearCache()` method allowing the tile cache to be cleared
4+
(#290, #291, @Carifio24). This shouldn't be used often but can provide a bit
5+
of a "reset button" if tile downloads have a hiccup.
6+
- Actually honor the `zoomMin` setting (#292, @johnarban)
7+
8+
19
# @wwtelescope/engine 7.29.3 (2023-11-10)
210

311
- Improve handling of touch gestures: don't be so eager to rotate, and

engine/esm/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ export {
201201
export { FitsImageTile } from "./layers/fits_image_tile.js";
202202

203203
export { Tile } from "./tile.js";
204+
export { TileCache } from "./tile_cache.js";
204205
export { RenderTriangle } from "./render_triangle.js";
205206
export { EquirectangularTile } from "./equirectangular_tile.js";
206207
export { HealpixTile, Xyf } from "./healpix_tile.js";

engine/esm/tile_cache.js

+10
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,16 @@ TileCache.getCachedTile = function (level, x, y, dataset, parent) {
7474

7575
set_tileCacheGetCachedTile(TileCache.getCachedTile);
7676

77+
TileCache.clearCache = function() {
78+
for (const tile of Object.values(TileCache._tiles)) {
79+
try {
80+
tile.cleanUp(true);
81+
} catch (e) {
82+
continue;
83+
}
84+
}
85+
}
86+
7787
TileCache.getReadyToRenderTileCount = function () {
7888
var notReadyCullList = [];
7989
var readyCullList = [];

engine/esm/wwt_control.js

+3
Original file line numberDiff line numberDiff line change
@@ -1105,6 +1105,9 @@ var WWTControl$ = {
11051105
if (this.renderContext.targetCamera.zoom > this.get_zoomMax()) {
11061106
this.renderContext.targetCamera.zoom = this.get_zoomMax();
11071107
}
1108+
if (this.renderContext.targetCamera.zoom < this.get_zoomMin()) {
1109+
this.renderContext.targetCamera.zoom = this.get_zoomMin();
1110+
}
11081111
if (!Settings.get_globalSettings().get_smoothPan()) {
11091112
this.renderContext.viewCamera = this.renderContext.targetCamera.copy();
11101113
}

engine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,5 @@
5656
"tscheck": "tsc"
5757
},
5858
"types": "./src/index.d.ts",
59-
"version": "7.29.3"
59+
"version": "7.30.0"
6060
}

engine/src/index.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1923,6 +1923,12 @@ export class SpreadSheetLayer extends Layer implements SpreadSheetLayerSettingsI
19231923
*/
19241924
export type SpreadSheetLayerSetting = LayerSetting | BaseSpreadSheetLayerSetting;
19251925

1926+
/** A class that represents the current cache of loaded tiles. */
1927+
export class TileCache {
1928+
/** Clear the current cache of tiles */
1929+
static clearCache(): void;
1930+
}
1931+
19261932
/** A WWT tour. */
19271933
export class TourDocument {
19281934
/** Get this tour's "attributes and credits" text.

research-app-messages/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# @wwtelescope/research-app-messages 0.18.0 (2024-02-07)
2+
3+
- Define a new message that should trigger the engine to clear its tile cache
4+
(#291, @Carifio24).
5+
6+
17
# @wwtelescope/research-app-messages 0.17.3 (2023-11-10)
28

39
- Update to the latest typedoc, and other improvements to the documentation

research-app-messages/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
},
3434
"type": "module",
3535
"types": "./dist/src/index.d.ts",
36-
"version": "0.17.3"
36+
"version": "0.18.0"
3737
}

research-app-messages/src/index.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,14 @@ export function isPointerUpMessage(o: any): o is PointerUpMessage { // eslint-d
360360
typeof o.clientX === "number" &&
361361
typeof o.clientY === "number" &&
362362
(o.sessionId === undefined || typeof o.sessionId === "string");
363-
}
363+
}
364+
365+
export interface ClearTileCacheMessage {
366+
/** The tag identifying this message type */
367+
event: "clear_tile_cache";
368+
}
369+
370+
/** Type guard function for {@link ClearTileCacheMessage} */
371+
export function isClearTileCacheMessage(obj: any): obj is ClearTileCacheMessage { // eslint-disable-line @typescript-eslint/no-explicit-any
372+
return typeof obj.event === "string" && obj.event === "clear_tile_cache";
373+
}

research-app/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# @wwtelescope/research-app 0.17.0 (2024-02-07)
2+
3+
- Handle a new JSON message activating mechanism in the engine that allows the
4+
tile cache to be manually cleared (#291, @Carifio24)
5+
6+
17
# @wwtelescope/research-app 0.16.0 (2023-09-15)
28

39
- Require the new, ESM-based version of the WebGL engine (#271, @pkgw). While

research-app/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@wwtelescope/astro": "workspace:>=0.2.0",
1313
"@wwtelescope/engine": "workspace:^7.29.1",
1414
"@wwtelescope/engine-helpers": "workspace:>=0.8.1",
15-
"@wwtelescope/engine-pinia": "workspace:>=0.1.0",
15+
"@wwtelescope/engine-pinia": "workspace:>=0.10.0",
1616
"@wwtelescope/engine-types": "workspace:>=0.6.1",
1717
"@wwtelescope/research-app-messages": "workspace:>=0.17.0",
1818
"moment": "^2.29.1",
@@ -49,7 +49,7 @@
4949
"@wwtelescope/astro": "7cb232125428a91bd8fd10be24fec904e3589cce",
5050
"@wwtelescope/engine": "thiscommit:2023-09-15:8Z0O5N5",
5151
"@wwtelescope/engine-helpers": "263bedcc26dd2d13d03ba68daece76aa5e16f145",
52-
"@wwtelescope/engine-pinia": "thiscommit:2022-11-10:R3G9gH3",
52+
"@wwtelescope/engine-pinia": "thiscommit:2024-02-07:OwPqq4M",
5353
"@wwtelescope/engine-types": "263bedcc26dd2d13d03ba68daece76aa5e16f145",
5454
"@wwtelescope/research-app-messages": "thiscommit:2023-02-19:Kuk5Ppd"
5555
},
@@ -69,5 +69,5 @@
6969
"lint": "vue-cli-service lint src",
7070
"serve": "vue-cli-service serve"
7171
},
72-
"version": "0.16.0"
72+
"version": "0.17.0"
7373
}

0 commit comments

Comments
 (0)