Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
b9e12ce
Fix npm install issues and update dependencies for Angular 18 compati…
rexmarkh Oct 17, 2025
875ce44
Upgrade to Angular 19 - update all Angular packages and migrate compo…
rexmarkh Oct 17, 2025
e063dc9
Upgrade to Angular 20.3.6 - final version upgrade complete
rexmarkh Oct 17, 2025
9252612
Update Angular CDK to version 19
rexmarkh Oct 17, 2025
60509eb
Update Angular 20 compatible package versions - angular-builders, ng-…
rexmarkh Oct 17, 2025
fd15c13
Fix Angular 20 compatibility issues - update imports, fix Quill paths…
rexmarkh Oct 17, 2025
f314c76
browserTarget issue fixed in angular.json
rexmarkh Oct 17, 2025
cb174db
Fix SCSS deprecation warnings - update to use modern Sass math and co…
rexmarkh Oct 17, 2025
4ce3f38
minor UI issues fixed
rexmarkh Oct 17, 2025
d9d35f4
profile page added
rexmarkh Oct 20, 2025
97e3a27
profile page styles updated
rexmarkh Oct 21, 2025
aac7b00
login page added
rexmarkh Oct 21, 2025
c253acc
profile tooltip issue fixed
rexmarkh Oct 21, 2025
eac34ec
display email in profile page via state is done
rexmarkh Oct 21, 2025
8ebd353
restrospective board added
rexmarkh Oct 21, 2025
ca8a961
drag & drop issue fixed
rexmarkh Oct 21, 2025
ceb70d5
ui issues fixed
rexmarkh Oct 21, 2025
c66e5ec
edit restrictions added
rexmarkh Oct 21, 2025
b2031b8
board phase description moved to tooltip
rexmarkh Oct 21, 2025
6c87abb
ui issues fixed
rexmarkh Oct 21, 2025
cbd88ad
organisation page added
rexmarkh Oct 21, 2025
2d6b80e
org management page ui updated
rexmarkh Oct 22, 2025
ed628b9
ui updated
rexmarkh Oct 22, 2025
9875c33
ui updated
rexmarkh Oct 22, 2025
1fe1219
jira integragration done
rexmarkh Oct 22, 2025
6025bf7
org id added in route params
rexmarkh Oct 23, 2025
6b123cd
buttons moved to modal footer
rexmarkh Oct 23, 2025
ccf697c
privacy added for specific phases in retro board
rexmarkh Oct 23, 2025
354a683
retro phase ui updated
rexmarkh Oct 24, 2025
7d3dc6a
buttons moved to modal footer
rexmarkh Oct 24, 2025
3dd9ba0
ui updated for retro board
rexmarkh Oct 27, 2025
0d7b608
AI summary button added
rexmarkh Oct 27, 2025
5f353e8
AI grouping functionality added
rexmarkh Oct 27, 2025
e2fb84b
UI updated for tags
rexmarkh Oct 27, 2025
5b99a61
Grouping phase UI updated
rexmarkh Oct 27, 2025
90b752e
random color select on new note is implemented
rexmarkh Oct 28, 2025
55b0cf5
templates seperated
rexmarkh Oct 28, 2025
7408122
UI updated
rexmarkh Oct 28, 2025
e37f8c7
realtime api test added
rexmarkh Oct 29, 2025
6dd3781
UI updated
rexmarkh Oct 30, 2025
6655cfe
UI updated
rexmarkh Oct 30, 2025
18917ce
UI updated
rexmarkh Oct 30, 2025
3b86494
unwanted files removed
rexmarkh Oct 31, 2025
8ad8efd
logo updated
rexmarkh Nov 1, 2025
a17ca75
UI updated
rexmarkh Nov 3, 2025
c007968
hashing added for routing
rexmarkh Nov 3, 2025
9a01ffa
application url updated
rexmarkh Nov 4, 2025
58c8a97
prod build config added
rexmarkh Nov 4, 2025
de2d16b
participant list added
rexmarkh Nov 18, 2025
7cb1be8
org page redesigned
rexmarkh Nov 25, 2025
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
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

35 changes: 30 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"src/styles.scss"
],
"scripts": [
"./node_modules/quill/dist/quill.min.js"
"./node_modules/quill/dist/quill.js"
]
},
"configurations": {
Expand All @@ -80,7 +80,6 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
Expand Down Expand Up @@ -111,13 +110,13 @@
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
"options": {
"browserTarget": "frontend:build:development"
"buildTarget": "frontend:build:development"
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "frontend:build"
"buildTarget": "frontend:build"
}
},
"test": {
Expand All @@ -136,7 +135,7 @@
"src/styles.scss"
],
"scripts": [
"./node_modules/quill/dist/quill.min.js"
"./node_modules/quill/dist/quill.js"
]
}
},
Expand Down Expand Up @@ -169,5 +168,31 @@
"schematicCollections": [
"@datorama/akita"
]
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
}
}
Loading