Skip to content

Commit

Permalink
Remove non-existent subdomain from app ID
Browse files Browse the repository at this point in the history
  • Loading branch information
xylo04 committed Jun 1, 2021
1 parent b8c2ad7 commit ac641d3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3
with:
bundle: kel-agent.flatpak
manifest-path: flatpak/radio.k0swe.kel_agent.Kel_Agent.yml
manifest-path: flatpak/radio.k0swe.Kel_Agent.yml
branch: main
cache-key: flatpak-builder-${{ github.sha }}

Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ all: kel-agent
test:
go test ./...
go vet ./...
if command -v appstream-util; then appstream-util validate-relax assets/radio.k0swe.kel_agent.Kel_Agent.metainfo.xml; fi
if command -v desktop-file-validate; then desktop-file-validate assets/radio.k0swe.kel_agent.Kel_Agent.desktop; fi
if command -v appstream-util; then appstream-util validate-relax assets/radio.k0swe.Kel_Agent.metainfo.xml; fi
if command -v desktop-file-validate; then desktop-file-validate assets/radio.k0swe.Kel_Agent.desktop; fi

kel-agent: test
export GITCOMMIT=$(GITCOMMIT) && scripts/build.sh
Expand Down Expand Up @@ -52,8 +52,8 @@ deb-package: deb-tarball wsjtx-go.deb leemcloughlin-jdn.deb
.PHONY: flatpak
flatpak: kel-agent
cd flatpak && \
flatpak-builder --force-clean build-out radio.k0swe.kel_agent.Kel_Agent.yml --repo=repo && \
flatpak build-bundle repo kel_agent.flatpak radio.k0swe.kel_agent.Kel_Agent main
flatpak-builder --force-clean build-out radio.k0swe.Kel_Agent.yml --repo=repo && \
flatpak build-bundle repo kel_agent.flatpak radio.k0swe.Kel_Agent main

.PHONY: mac-package
mac-package: kel-agent
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Go Report Card](https://goreportcard.com/badge/github.com/k0swe/kel-agent)](https://goreportcard.com/report/github.com/k0swe/kel-agent)
[![Release](https://github.com/k0swe/kel-agent/workflows/Release/badge.svg)](https://github.com/k0swe/kel-agent/releases/latest)

# <img src="https://raw.githubusercontent.com/k0swe/kel-agent/main/assets/radio.k0swe.kel_agent.Kel_Agent.svg" width="100px" alt="kel-agent logo"> kel-agent
# <img src="https://raw.githubusercontent.com/k0swe/kel-agent/main/assets/radio.k0swe.Kel_Agent.svg" width="100px" alt="kel-agent logo"> kel-agent

An agent program for translating between various amateur radio installed programs and WebSockets.
This was built to support https://github.com/k0swe/forester but can be used by any web application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Name=kel-agent
Exec=kel-agent
Type=Application
Icon=radio.k0swe.kel_agent.Kel_Agent
Icon=radio.k0swe.Kel_Agent
Categories=HamRadio;Network
Terminal=true
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="console-application">
<id>radio.k0swe.kel_agent.Kel_Agent</id>
<id>radio.k0swe.Kel_Agent</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>Apache-2.0</project_license>
<name>kel-agent</name>
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
app-id: radio.k0swe.kel_agent.Kel_Agent
app-id: radio.k0swe.Kel_Agent
default-branch: main
runtime: org.freedesktop.Platform
runtime-version: '20.08'
Expand Down Expand Up @@ -39,8 +39,8 @@ modules:
- cp assets/modules.txt vendor/
- make
- install -D kel-agent /app/bin/kel-agent
- install -Dm644 assets/radio.k0swe.kel_agent.Kel_Agent.svg /app/share/icons/hicolor/scalable/apps/radio.k0swe.kel_agent.Kel_Agent.svg
- install -Dm644 assets/radio.k0swe.kel_agent.Kel_Agent.metainfo.xml /app/share/metainfo/radio.k0swe.kel_agent.Kel_Agent.metainfo.xml
- install -Dm644 assets/radio.k0swe.kel_agent.Kel_Agent.desktop /app/share/applications/radio.k0swe.kel_agent.Kel_Agent.desktop
- install -Dm644 assets/radio.k0swe.Kel_Agent.svg /app/share/icons/hicolor/scalable/apps/radio.k0swe.Kel_Agent.svg
- install -Dm644 assets/radio.k0swe.Kel_Agent.metainfo.xml /app/share/metainfo/radio.k0swe.Kel_Agent.metainfo.xml
- install -Dm644 assets/radio.k0swe.Kel_Agent.desktop /app/share/applications/radio.k0swe.Kel_Agent.desktop
cleanup:
- /lib/debug

0 comments on commit ac641d3

Please sign in to comment.