Skip to content

Commit

Permalink
Merge branch 'hotfix/v1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
musicEnfanthen committed Nov 12, 2024
2 parents 4c27007 + d839d5b commit a958f7a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [1.0.1](https://github.com/webern-unibas-ch/awg-app/compare/v1.0.0...v1.0.1) (2024-11-12)


### Bug Fixes

* **edition:** fix wrong tracking index in tka table ([4662928](https://github.com/webern-unibas-ch/awg-app/commit/4662928acccc8bc6555812cb7fab6d56d6b906d9))

## [1.0.0](https://github.com/webern-unibas-ch/awg-app/compare/v0.14.0...v1.0.0) (2024-10-26)

### ⚠ BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awg-app",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "Stefan Münnich",
Expand Down
6 changes: 3 additions & 3 deletions src/app/app.globals.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// THIS IS AN AUTO-GENERATED FILE. DO NOT CHANGE IT MANUALLY!
// Generated last time on Sat, Oct 26, 2024 2:16:23 PM
// Generated last time on Tue, Nov 12, 2024 4:33:05 PM

/**
* The latest version of the AWG App
*/
export const appVersion = '1.0.0';
export const appVersion = '1.0.1';

/**
* The release date of the latest version of the AWG App
*/
export const appVersionReleaseDate = '26. Oktober 2024';
export const appVersionReleaseDate = '12. November 2024';

/**
* The URL of the AWG App
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
</td>
</tr>
}
@for (textcriticalComment of textcriticalCommentBlock.blockComments; track $index) {
@for (
textcriticalComment of textcriticalCommentBlock.blockComments;
track textcriticalComment.svgGroupId
) {
<tr>
<td [awgAbbr]="textcriticalComment.measure"></td>
<td [awgAbbr]="textcriticalComment.system"></td>
Expand Down

0 comments on commit a958f7a

Please sign in to comment.