Skip to content

Commit

Permalink
refactor: rename distrust to Morphclue
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphclue committed Aug 23, 2021
1 parent a1cb555 commit e9facc8
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- run: .\Tools\DistributionTool.exe -b -i "Sources\com.distrust.wakatime.sdPlugin" -o .
- run: .\Tools\DistributionTool.exe -b -i "Sources\com.morphclue.wakatime.sdPlugin" -o .
- uses: actions/upload-artifact@v2
with:
name: plugin-artifact
path: .\com.distrust.wakatime.streamDeckPlugin
path: .\com.morphclue.wakatime.streamDeckPlugin
release:
name: Publish Plugin in Release
if: ${{ startsWith(github.ref, 'refs/tags/') }}
Expand Down Expand Up @@ -42,6 +42,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ${{runner.temp}}/artifacts/com.distrust.wakatime.streamDeckPlugin
asset_name: com.distrust.wakatime.streamDeckPlugin
asset_path: ${{runner.temp}}/artifacts/com.morphclue.wakatime.streamDeckPlugin
asset_name: com.morphclue.wakatime.streamDeckPlugin
asset_content_type: application/octet-stream
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
![ci](https://github.com/distrustME/streamdeck-wakatime/actions/workflows/ci.yml/badge.svg)
![ci](https://github.com/Morphclue/streamdeck-wakatime/actions/workflows/ci.yml/badge.svg)
# streamdeck-wakatime

This plugin will show you how many minutes you have left to code for today. It fetches the API every 30 seconds due to
rounding.

## Installation

In the Release section, you can find the file com.distrust.wakatime.streamDeckPlugin. If you double-click this file on
In the Release section, you can find the file com.morphclue.wakatime.streamDeckPlugin. If you double-click this file on
your machine, Stream Deck will install the plugin.

## Setup
Expand All @@ -31,7 +31,7 @@ your `IDE-Plugin` only updates in certain intervals or rounding leads to small m
### Source code

The code in this repository falls under
the [MIT-License](https://github.com/distrustME/streamdeck-wakatime/blob/master/LICENSE).
the [MIT-License](https://github.com/Morphclue/streamdeck-wakatime/blob/master/LICENSE).

### Assets

Expand Down
2 changes: 1 addition & 1 deletion Sources/com.distrust.wakatime.sdPlugin/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Description": "WakaTime-Zeiten",
"Name": "Stream Deck WakaTime",
"Category": "WakaTime",
"com.distrust.wakatime.action": {
"com.morphclue.wakatime.action": {
"Name": "WakaTime",
"Tooltip": "Zeigt die verbleibende WakaTime Arbeitszeit an."
},
Expand Down
2 changes: 1 addition & 1 deletion Sources/com.distrust.wakatime.sdPlugin/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Description": "WakaTime",
"Name": "Stream Deck WakaTime",
"Category": "WakaTime",
"com.distrust.wakatime.action": {
"com.morphclue.wakatime.action": {
"Name": "WakaTime",
"Tooltip": "Shows the remaining WakaTime working time."
},
Expand Down
2 changes: 1 addition & 1 deletion Sources/com.distrust.wakatime.sdPlugin/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>com.distrust.wakatime</title>
<title>com.morphclue.wakatime</title>
<meta charset="utf-8"/>
<style>
canvas {
Expand Down
6 changes: 3 additions & 3 deletions Sources/com.distrust.wakatime.sdPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
],
"SupportedInMultiActions": false,
"Tooltip": "Display left WakaTime hours",
"UUID": "com.distrust.wakatime.action"
"UUID": "com.morphclue.wakatime.action"
}
],
"SDKVersion": 2,
"Author": "distrustME",
"Author": "Morphclue",
"CodePath": "index.html",
"PropertyInspectorPath": "propertyinspector/index.html",
"Description": "Username- and Timer-Settings",
"Name": "Stream Deck WakaTime",
"Icon": "action/images/action",
"URL": "https://github.com/distrustME/streamdeck-wakatime",
"URL": "https://github.com/Morphclue/streamdeck-wakatime",
"Version": "1.0.10",
"OS": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function setGlobalSettings() {

function sendToPlugin(payload) {
const json = {
"action": "com.distrust.wakatime.action",
"action": "com.morphclue.wakatime.action",
"event": "sendToPlugin",
"context": inspectorUUID,
"payload": payload
Expand Down

0 comments on commit e9facc8

Please sign in to comment.