Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
make scene and app version identical
  • Loading branch information
kfarr committed Feb 1, 2025
1 parent 6300f36 commit f70a1ab
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "3dstreet",
"version": "0.5.4",
"version": "0.5.5",
"description": "Web-based 3D visualization of streets using A-Frame and WebXR",
"main": "dist/3dstreet-editor.js",
"scripts": {
Expand Down
13 changes: 0 additions & 13 deletions src/editor/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,6 @@ export function getNumber(value) {
return parseFloat(value.toFixed(3));
}

export function getMajorVersion(version) {
var major = version.split('.');
var clean = false;
for (var i = 0; i < major.length; i++) {
if (clean) {
major[i] = 0;
} else if (major[i] !== '0') {
clean = true;
}
}
return major.join('.');
}

export function equal(var1, var2) {
var keys1;
var keys2;
Expand Down
3 changes: 1 addition & 2 deletions src/json-utils_1.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import useStore from './store';
import { createUniqueId } from './editor/lib/entity';

/* global AFRAME, Node */
/* version: 1.0 */
window.STREET = {};
var assetsUrl;
STREET.utils = {};
Expand Down Expand Up @@ -56,7 +55,7 @@ function convertDOMElToObject(entity) {

return {
title: useStore.getState().sceneTitle,
version: '1.0',
version: '0.5.5',
data: data
};
}
Expand Down

0 comments on commit f70a1ab

Please sign in to comment.