-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve non-English geographic search and other search engine improvements. * Live search mode. * Updated asteroid/comet data. * Update zoneloc API call to use geo-tz. * Update Angular to version 14. * Add timezone map overlay option. * Add visual reminder that found locations can be saved.
- Loading branch information
Showing
38 changed files
with
2,338 additions
and
1,260 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "svc-ng", | ||
"version": "1.15.2", | ||
"version": "1.16.0", | ||
"license": "MIT AND GPL-3.0-or-later", | ||
"author": "Kerry Shetline <[email protected]>", | ||
"scripts": { | ||
"ng": "ng", | ||
"start": "ng serve", | ||
"start": "ng serve --proxy-config proxy.conf.json", | ||
"build": "rimraf dist && ng build --configuration production --source-map=true && cd server && npm run build && cd .. && copyfiles -u 2 \"server/dist/**/*\" \"dist\"", | ||
"build-debug": "ng build --source-map=true", | ||
"test": "ng test", | ||
|
@@ -14,62 +14,62 @@ | |
}, | ||
"private": true, | ||
"dependencies": { | ||
"@angular/animations": "^14.0.2", | ||
"@angular/cdk": "^14.0.2", | ||
"@angular/common": "^14.0.2", | ||
"@angular/compiler": "^14.0.2", | ||
"@angular/core": "^14.0.2", | ||
"@angular/forms": "^14.0.2", | ||
"@angular/platform-browser": "^14.0.2", | ||
"@angular/platform-browser-dynamic": "^14.0.2", | ||
"@angular/router": "^14.0.2", | ||
"@angular/animations": "^14.0.6", | ||
"@angular/cdk": "^14.0.5", | ||
"@angular/common": "^14.0.6", | ||
"@angular/compiler": "^14.0.6", | ||
"@angular/core": "^14.0.6", | ||
"@angular/forms": "^14.0.6", | ||
"@angular/platform-browser": "^14.0.6", | ||
"@angular/platform-browser-dynamic": "^14.0.6", | ||
"@angular/router": "^14.0.6", | ||
"@fortawesome/fontawesome-free": "^6.1.1", | ||
"@tubular/array-buffer-reader": "^3.0.2", | ||
"@tubular/astronomy": "^3.3.0", | ||
"@tubular/math": "^3.1.0", | ||
"@tubular/ng-widgets": "^2.2.0", | ||
"@tubular/time": "^3.8.2", | ||
"@tubular/util": "^4.11.0", | ||
"@tubular/time": "^3.8.3", | ||
"@tubular/util": "^4.12.0", | ||
"core-js": "^2.6.12", | ||
"detect-resize": "^0.1.5", | ||
"lodash-es": "^4.17.21", | ||
"primeicons": "^5.0.0", | ||
"primeng": "^13.4.1", | ||
"primeng": "^14.0.0-rc.1", | ||
"rxjs": "^6.6.7", | ||
"three": "^0.140.2", | ||
"zone.js": "~0.11.5" | ||
"three": "^0.142.0", | ||
"zone.js": "~0.11.6" | ||
}, | ||
"devDependencies": { | ||
"@angular-devkit/build-angular": "^14.0.2", | ||
"@angular/cli": "^14.0.2", | ||
"@angular/compiler-cli": "^14.0.2", | ||
"@angular/language-service": "^14.0.2", | ||
"@tubular/browser-check": "^1.3.0", | ||
"@angular-devkit/build-angular": "^14.0.6", | ||
"@angular/cli": "^14.0.6", | ||
"@angular/compiler-cli": "^14.0.6", | ||
"@angular/language-service": "^14.0.6", | ||
"@tubular/browser-check": "^2.0.0", | ||
"@types/googlemaps": "^3.43.3", | ||
"@types/jasmine": "^4.0.3", | ||
"@types/jasminewd2": "^2.0.10", | ||
"@types/lodash-es": "^4.17.6", | ||
"@types/three": "^0.140.0", | ||
"@typescript-eslint/eslint-plugin": "^5.28.0", | ||
"@typescript-eslint/parser": "^5.28.0", | ||
"@types/three": "^0.141.0", | ||
"@typescript-eslint/eslint-plugin": "^5.30.6", | ||
"@typescript-eslint/parser": "^5.30.6", | ||
"codelyzer": "^6.0.2", | ||
"copyfiles": "^2.4.1", | ||
"eslint": "^8.17.0", | ||
"eslint": "^8.20.0", | ||
"eslint-config-standard": "^17.0.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-n": "^15.2.2", | ||
"eslint-plugin-n": "^15.2.4", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"jasmine-core": "~4.2.0", | ||
"jasmine-spec-reporter": "~7.0.0", | ||
"karma": "^6.3.19", | ||
"karma": "^6.4.0", | ||
"karma-chrome-launcher": "~3.1.1", | ||
"karma-coverage-istanbul-reporter": "~3.0.3", | ||
"karma-jasmine": "~5.0.0", | ||
"karma-jasmine": "~5.1.0", | ||
"karma-jasmine-html-reporter": "^1.7.0", | ||
"protractor": "~7.0.0", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.7.0", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.5.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"/api/*": { | ||
"target": "http://localhost:4201" | ||
}, | ||
"/maps/*": { | ||
"target": "http://localhost:4201" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.