mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-06-21 16:09:55 +00:00
Merge pull request #435 from GNS3/Release-notes-section
Release notes section
This commit is contained in:
@ -18,7 +18,8 @@
|
|||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/assets",
|
"src/assets",
|
||||||
"src/favicon.ico"
|
"src/favicon.ico",
|
||||||
|
"src/ReleaseNotes.txt"
|
||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
"node_modules/bootstrap/dist/css/bootstrap.min.css",
|
"node_modules/bootstrap/dist/css/bootstrap.min.css",
|
||||||
|
16
src/ReleaseNotes.txt
Normal file
16
src/ReleaseNotes.txt
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
GNS3 WebUI is web implementation of user interface for GNS3 software.
|
||||||
|
|
||||||
|
Current version: 2019.2.0
|
||||||
|
|
||||||
|
What's New
|
||||||
|
- Help section added with information about third party components
|
||||||
|
- Showing progress when server starting
|
||||||
|
- Possibility to edit interface & node labels by using context menu
|
||||||
|
- Enhancements in moving elements on map
|
||||||
|
- Context menu extended with option to duplicate
|
||||||
|
- Main menu extended with option to lock all items on map
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
- Removing issues with positioning interface labels while adding link between nodes on map
|
||||||
|
- Context menu now is correctly placed
|
||||||
|
- Entered text in text & style editor is now validated
|
@ -9,6 +9,12 @@
|
|||||||
</mat-expansion-panel-header>
|
</mat-expansion-panel-header>
|
||||||
<div [innerHTML]="thirdpartylicenses"></div>
|
<div [innerHTML]="thirdpartylicenses"></div>
|
||||||
</mat-expansion-panel>
|
</mat-expansion-panel>
|
||||||
|
<mat-expansion-panel>
|
||||||
|
<mat-expansion-panel-header>
|
||||||
|
<mat-panel-title> Release notes </mat-panel-title>
|
||||||
|
</mat-expansion-panel-header>
|
||||||
|
<div [innerHTML]="releasenotes"></div>
|
||||||
|
</mat-expansion-panel>
|
||||||
</mat-accordion>
|
</mat-accordion>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -8,6 +8,7 @@ styleUrls: ['./help.component.scss']
|
|||||||
})
|
})
|
||||||
export class HelpComponent implements OnInit {
|
export class HelpComponent implements OnInit {
|
||||||
thirdpartylicenses = '';
|
thirdpartylicenses = '';
|
||||||
|
releasenotes = '';
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private httpClient: HttpClient
|
private httpClient: HttpClient
|
||||||
@ -23,5 +24,10 @@ export class HelpComponent implements OnInit {
|
|||||||
this.thirdpartylicenses = 'File not found';
|
this.thirdpartylicenses = 'File not found';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.httpClient.get('ReleaseNotes.txt', {responseType: 'text'})
|
||||||
|
.subscribe(data => {
|
||||||
|
this.releasenotes = data.replace(new RegExp('\n', 'g'), "<br />")
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user