Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
634ef8a
Initial Commit
BrandonKitt-Kitt-iSolutions Feb 22, 2024
fa8560f
Updates to npm environment; fixed scrolling issue
chungvl Feb 28, 2024
50f80d5
Move browserlist to package json
BrandonKitt-Kitt-iSolutions Mar 1, 2024
ac01aef
Remove unnecessary plugins
BrandonKitt-Kitt-iSolutions Mar 1, 2024
eec3436
Remove cordova googlemaps plugin
BrandonKitt-Kitt-iSolutions Mar 1, 2024
5eca645
Readd AndroidX plugins for older plugins compatibility
BrandonKitt-Kitt-iSolutions Mar 1, 2024
c6fd2fe
Rollback unnecessary change
chungvl Mar 5, 2024
1647eeb
Rollback unnecessary change
chungvl Mar 5, 2024
fc2f9aa
Rollback unnecessary change
chungvl Mar 5, 2024
98af88c
Rollback unnecessary change
chungvl Mar 5, 2024
208b478
Rollback unnecessary change
chungvl Mar 5, 2024
ade2e5b
Merge pull request #178 from BrandonKitt-Kitt-iSolutions/VLC-bootstra…
chungvl Mar 5, 2024
b4c835d
new line configuration:
Mar 5, 2024
649fa52
Reintroduce .nvmrc with node version 20.11 (latest LTS)
Mar 5, 2024
a6166db
Commit from hell - ran dos2unix over every source file.
chungvl Mar 7, 2024
b6e7597
Removed circular dependencies and updated biosys-core branch
chungvl Mar 7, 2024
524220d
Login working
chungvl Mar 12, 2024
04708b6
Update navPush to directly call router instead of emitting to a paren…
bri-gaia Mar 14, 2024
079ff11
Remove biosys submodule so it can be integrated into this repo
bri-gaia Mar 20, 2024
6d77c36
Integrate biosys-core
bri-gaia Mar 20, 2024
22d5638
Ham fisted gag for ts errors.
bri-gaia Mar 20, 2024
4fbbac1
Add SchemaService to module providers
bri-gaia Mar 20, 2024
49ccb6b
WIP Alternate call to geolocation - UNTESTED.
bri-gaia Mar 20, 2024
634ca70
Reformat ts code.
bri-gaia Mar 29, 2024
530a50e
Add .git-blame-ignore-revs
bri-gaia Mar 29, 2024
580b117
Schema Service - Rip out datapackage.
bri-gaia Apr 1, 2024
8c27457
Attempt at fixing Forms
nick-crawford-gaia Apr 5, 2024
56bb6e8
Re-implement old NavParams functionality using new Angular Routes.
bri-gaia Apr 5, 2024
e9cac57
Removed debug
bri-gaia Apr 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .editorconfig
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
# editorconfig.org

# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
46 changes: 46 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"root": true,
"ignorePatterns": ["projects/**/*"],
"overrides": [
{
"files": ["*.ts"],
"parserOptions": {
"project": ["tsconfig.json"],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/component-class-suffix": [
"error",
{
"suffixes": ["Page", "Component"]
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
]
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended"],
"rules": {}
}
]
}
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Reformat TS files
634ca70b3d06aeaedee9cd6bd9c81e56f829265f
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
78 changes: 53 additions & 25 deletions .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,66 @@

*~
*.sw[mnpcod]
*.log
.tmp
*.tmp
*.tmp.*
UserInterfaceState.xcuserstate
$RECYCLE.BIN/

*.log
log.txt


/.sourcemaps
/.versions
/coverage

# Ionic
/.ionic
/www
/platforms
/plugins

# Compiled output
/dist
/tmp
/out-tsc
/bazel-out

# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-project
*.sublime-workspace
.vscode/
npm-debug.log*

.idea/
.sourcemaps/
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*


# Miscellaneous
/.angular
/.angular/cache
.sass-cache/
.tmp/
.versions/
coverage/
dist/
node_modules/
tmp/
temp/
hooks/
platforms/
plugins/
plugins/android.json
plugins/ios.json
www/
$RECYCLE.BIN/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# System files
.DS_Store
Thumbs.db
UserInterfaceState.xcuserstate
my-release-key.jks
*.apk

.vscode/
typings/
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

1 change: 0 additions & 1 deletion .java-version

This file was deleted.

2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@mobiscroll:registry=https://npm.mobiscroll.com
//npm.mobiscroll.com/:_authToken=JaDKXJ5BATSBEJgalenYEyp3vBsC5Gn8TSlfB3gSc5i+xDfl4MBOE8nte4hS/xh4OWBwkL9xcishkjENGvcWAQ==

@serge-gaia serge-gaia Mar 5, 2024

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this?

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10

@serge-gaia serge-gaia Mar 5, 2024

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The .nvmrc should not be deleted. Used by nvm (Node Version Manager) to use the node version of this project.
For this project we should use the latest node LTS 20.11

20.11
Loading