Merge branch 'master' into 857_shadows

This commit is contained in:
Michael Gevlich 2025-06-06 12:38:15 +04:00
commit 5e2cb9e8e8
4 changed files with 9 additions and 6 deletions

View File

@ -2,7 +2,7 @@ name: Release CI
on:
release:
types: [ published ]
types: [ published ]
workflow_dispatch:
jobs:
@ -13,7 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.event.repository.default_branch }}
- uses: ./.github/actions/main

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@openglobus/og",
"version": "0.25.5",
"version": "0.25.6",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@openglobus/og",
"version": "0.25.5",
"version": "0.25.6",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",

View File

@ -1,6 +1,6 @@
{
"name": "@openglobus/og",
"version": "0.25.5",
"version": "0.25.7",
"description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
"main": "lib/og.es.js",
"types": "lib/index.d.ts",

View File

@ -12,7 +12,7 @@ import {Extent} from "../Extent";
import {Segment} from "../segment/Segment";
import {RADIANS} from "../math";
interface IPlanetCameraParams extends ICameraParams {
export interface IPlanetCameraParams extends ICameraParams {
minAltitude?: number;
maxAltitude?: number;
}