8000 Tags · Riges/Netatmo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: Riges/Netatmo

Tags

v1.8.0

Toggle v1.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: Extract release workflow for automated NuGet package publishin…

…g with release-drafter action (#179)

This pull request includes significant changes to the GitHub Actions
workflows, specifically around the CI and release processes. The most
important changes involve the removal of the old CI workflow and the
addition of a new release workflow.

Changes to GitHub Actions workflows:

*
[`.github/workflows/ci.yml`](diffhunk://#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03fL1-L70):
Removed the entire CI workflow configuration, which included testing on
multiple operating systems, building packages, and publishing artifacts.
*
[`.github/workflows/release.yml`](diffhunk://#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34R1-R50):
Added a new release workflow configuration that triggers on tag pushes,
builds and tests the package, and publishes the NuGet package and
release artifacts.

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

1.7.0

Toggle 1.7.0's commit message
Move project to .net 8, remove Moq, update Flurl to v4

1.6.0

Toggle 1.6.0's commit message
Move project to .net 6

1.5.3

Toggle 1.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: quick fix for netatmo api changes

Extend CredentialManager to accept refresh_token and add warning message
for deprecated GenerateToken

Example usage:

```csharp
var clientId = "myClientId";
var clientSecret = "myClientSecret";
var accessToken = "myAccessToken";
var refreshToken = "myRefreshToken";

var client = new Client(
    SystemClock.Instance, "https://api.netatmo.com/",
    clientId,
    clientSecret);

client.ProvideOAuth2Token(accessToken, refreshToken);
await client.RefreshToken();
var stationsData = await client.Weather.GetStationsData();
```

Refs: #167 #168

1.5.2

Toggle 1.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update Netatmo.csproj

1.5.1

Toggle 1.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: fix licences mismatch with PackageLicenseFile

1.5.0

Toggle 1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: .Net 5.0 🚀

Refs: #113

1.4.1

Toggle 1.4.1's commit message
fix setthermmode url

1.4.0

Toggle 1.4.0's commit message
extened Indoor dashboard with humidity and upgrade sdk to .Net core 3.1

1.3.2

Toggle 1.3.2's commit message
Add existing oauth2Token support (#32)

Some services (as Alexa skills) manage the authentication and just provide the app oauth2 token.
I added the oauth2 existing token support in "generate token" process.
0