mirror of
https://github.com/nathonius/obsidian-github-link.git
synced 2026-07-22 09:20:25 +00:00
Merge pull request #20 from nathonius/release-0.1.0
🚀 release: #19 Initial release
This commit is contained in:
commit
33755f8e43
6 changed files with 36 additions and 4 deletions
30
CHANGELOG.md
Normal file
30
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
<!--
|
||||
## [0.0.0] - YYYY-MM-DD
|
||||
|
||||
### Added
|
||||
|
||||
### Fixed
|
||||
|
||||
### Changed
|
||||
|
||||
### Removed
|
||||
-->
|
||||
|
||||
<!-- ## Unreleased -->
|
||||
|
||||
## [0.1.0] - 2024-02-01
|
||||
|
||||
Initial release.
|
||||
|
||||
<!-- [2.0.0]: https://github.com/OfficerHalf/obsidian-jira-cloud/compare/1.2.0...2.0.0
|
||||
[1.2.0]: https://github.com/OfficerHalf/obsidian-jira-cloud/compare/1.1.0...1.2.0
|
||||
[1.1.0]: https://github.com/OfficerHalf/obsidian-jira-cloud/compare/1.0.0...1.1.0 -->
|
||||
|
||||
[0.1.0]: https://github.com/nathonius/obsidian-github-link/releases/tag/0.1.0
|
||||
|
|
@ -56,6 +56,8 @@ For public repositories, no extra configuration is required. For private repos,
|
|||
|
||||
### Authentication
|
||||
|
||||
> **NOTE**: Tokens will be stored in plain text. Use at your own risk.
|
||||
|
||||
Authentication only requires a GitHub account. In GitHub Link plugin settings, add a new account. Give the account a name.
|
||||
|
||||
The plugin supports an automated authentication flow, or you can [generate your own token](https://github.com/settings/tokens). To use the automated flow, select "Generate Token". In the modal that appears, copy the code and open the authentication link. After pasting the auth link, you'll be prompted to allow access to the GitHub Link plugin. Once accepted, you can return to Obsidian and the token will be saved automatically.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "github-link",
|
||||
"name": "GitHub Link",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Enrich your notes with content from GitHub REST API",
|
||||
"author": "Nathonius",
|
||||
|
|
|
|||
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-github-link",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-github-link",
|
||||
"version": "1.0.0",
|
||||
"version": "0.1.0",
|
||||
"description": "An Obsidian plugin enriching notes with data from GitHub's REST API",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"1.0.0": "0.15.0"
|
||||
"0.1.0": "0.15.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue