Skip to content

Commit a4a2f54

Browse files
committed
update
1 parent 517a4b7 commit a4a2f54

6 files changed

Lines changed: 91 additions & 35 deletions

File tree

documentation/components/MusicComponent.html

Lines changed: 77 additions & 29 deletions
Large diffs are not rendered by default.

documentation/coverage.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@
403403
<td>MusicComponent</td>
404404
<td align="right" data-sort="0">
405405
<span class="coverage-percent">0 %</span>
406-
<span class="coverage-count">(0/17)</span>
406+
<span class="coverage-count">(0/18)</span>
407407
</td>
408408
</tr>
409409
<tr class="low">

documentation/js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/features/music/music.component.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,8 @@
8080
'accent-color': 'var(--theme-color)'
8181
}" />
8282
</div>
83-
</div>
83+
</div>
84+
85+
<footer class="fixed bottom-0 left-0 w-full bg-[var(--color-surface)] text-center text-sm py-2 z-50 text-muted">
86+
© 2025 exwise. All rights reserved. v{{appVersion}}
87+
</footer>

src/app/features/music/music.component.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Component, signal, effect, OnDestroy } from '@angular/core';
22
import { CommonModule } from '@angular/common';
33
import { FormsModule } from '@angular/forms';
44
import { SaavnService } from '../../service/saavan-api/saavan.service';
5+
import { AppVersionService } from '../../service/util/app-version/app-version.service';
56

67
@Component({
78
selector: 'app-music',
@@ -18,9 +19,11 @@ export class MusicComponent implements OnDestroy {
1819
progress = signal(0);
1920
duration = signal(0);
2021
interval: any = null;
22+
appVersion: string;
2123

22-
constructor(private saavnService: SaavnService) { }
23-
24+
constructor(private saavnService: SaavnService, private appVersionService: AppVersionService) {
25+
this.appVersion = this.appVersionService.getVersion();
26+
}
2427
searchSong() {
2528
const q = this.query.trim();
2629
if (q) {

stepsToDeploy.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
8. Proceed with the deployment process to push the updated application
99
9. Merge the angular-dev branch into the main branch
1010
10. Than, modify environments.ts by changing the developmentEnvironment variable from 'live' back to 'local'
11+
11. update the app version in backend side.

0 commit comments

Comments
 (0)