Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.7.7' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
musicEnfanthen committed Oct 9, 2020
2 parents 16adb2f + eef6143 commit 6491292
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

### [0.7.7](https://github.com/webern-unibas-ch/awg-app/compare/v0.7.6...v0.7.7) (2020-10-09)

### Bug Fixes

- **core:** fix broken link templates ([dc79bb7](https://github.com/webern-unibas-ch/awg-app/commit/dc79bb7b3c39e9b3235242f1dc8829e41ac8b25c))

### [0.7.6](https://github.com/webern-unibas-ch/awg-app/compare/v0.7.5...v0.7.6) (2020-10-09)

### Features
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": "0.7.6",
"version": "0.7.7",
"license": "MIT",
"author": {
"name": "Stefan Münnich",
Expand Down
4 changes: 2 additions & 2 deletions src/app/app.globals.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// THIS IS AN AUTO-GENERATED FILE. DO NOT CHANGE IT MANUALLY!
// Generated last time on Fri Oct 9 12:39:18 CEST 2020
// Generated last time on Fri Oct 9 14:23:30 CEST 2020

/**
* The latest version of the AWG App
*/
export const appVersion = '0.7.6';
export const appVersion = '0.7.7';

/**
* The release date of the latest version of the AWG App
Expand Down
4 changes: 2 additions & 2 deletions src/app/core/core-models/geo-names.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ export class GeoNames {
const geoIcon =
'<img src="assets/img/logos/geonames.png" height="25" width="25" alt="' + this.shortLabel + '" />';
const geoLink =
'<a href="https://www.geonames.org/' + this.gnid + '" title="' + this.longLabel + '>' + geoIcon + '</a>';
'<a href="https://www.geonames.org/' + this.gnid + '" title="' + this.longLabel + '">' + geoIcon + '</a>';
let wikiLink = '';
if (this.wiki) {
const wikiIcon = '<img src="assets/img/logos/wiki.svg" height="25" width="25" alt="' + this.wiki + '" />';
wikiLink = '<a href="https://' + this.wiki + '" title="' + this.wiki + '>' + wikiIcon + '</a>';
wikiLink = '<a href="https://' + this.wiki + '" title="' + this.wiki + '">' + wikiIcon + '</a>';
}
this.html = this.shortLabel + ' ' + geoLink + wikiLink;
}
Expand Down

0 comments on commit 6491292

Please sign in to comment.