I wanted to have a share on TILTs,instead of a clipboard copy. Discovered that browser navigator has a native share – https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share .
Implementation very simple ( not so good,)
private share(str:string): boolean{
if ('share' in navigator) {
navigator
.share({
title: 'TILT!',
text: str,
url: environment.url + 'AngTilt/tilt/public/'+this.profileForm.controls['url'].value
})
.then(() => {
console.log('Callback after sharing');
})
.catch(console.error);
return true;
} else {
return false;
}
}
- Added .NET Tools to have data about the outdated and more
feat: dot net tools
e0fd82f
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-project-licenses": {
"version": "2.4.0",
"commands": [
"dotnet-project-licenses"
]
},
"dotnetthx": {
"version": "0.2.0",
"commands": [
"dotnet-thx"
]
},
"powershell": {
"version": "7.2.6",
"commands": [
"pwsh"
]
},
"dotnet-depends": {
"version": "0.6.1",
"commands": [
"dotnet-depends"
]
},
"dotnet-outdated-tool": {
"version": "4.1.0",
"commands": [
"dotnet-outdated"
]
},
"run-script": {
"version": "0.4.0",
"commands": [
"r"
]
}
}
}
Tools used
Visual Studio
Visual Studio Code
CLI
Leave a Reply