Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to upstream repo Ryochan7 #7

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions AppImageBuilder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ script:

AppDir:
app_info:
id: org.ryochan7.sc-controller
id: org.c0rn3j.sc-controller
name: sc-controller
version: "{{APPIMAGE_VERSION}}"
icon: sc-controller
Expand All @@ -26,7 +26,7 @@ AppDir:
# appimage-builder expects .desktop file to start with appinfo-id
desktop="$(find "${TARGET_APPDIR}/usr" -name sc-controller.desktop)"
sed -i "s:Exec=.*:Exec=./usr/bin/scc gui:g" "${desktop}"
ln -sr "${desktop}" "${TARGET_APPDIR}/usr/share/applications/org.ryochan7.sc-controller.desktop"
ln -sr "${desktop}" "${TARGET_APPDIR}/usr/share/applications/org.c0rn3j.sc-controller.desktop"

# appimage-builder expects utf-8 encoding when patching shebangs,
# but pygettext3 has iso-8859-1 encoding
Expand Down Expand Up @@ -128,4 +128,4 @@ AppDir:

AppImage:
arch: "{{APPIMAGE_ARCH}}"
update-information: "gh-releases-zsync|Ryochan7|sc-controller|latest|sc-controller-*-{{APPIMAGE_APT_DISTRO}}-{{APPIMAGE_ARCH}}.AppImage.zsync"
update-information: "gh-releases-zsync|C0rn3j|sc-controller|latest|sc-controller-*-{{APPIMAGE_APT_DISTRO}}-{{APPIMAGE_ARCH}}.AppImage.zsync"
2 changes: 1 addition & 1 deletion scc/gui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class App(Gtk.Application, UserDataManager, BindingEditor):
HILIGHT_COLOR = "#FF00FF00" # ARGB
OBSERVE_COLOR = "#FF60A0FF" # ARGB
CONFIG = "scc.config.json"
RELEASE_URL = "https://github.com/Ryochan7/sc-controller/releases/tag/v%s"
RELEASE_URL = "https://github.com/C0rn3j/sc-controller/releases/tag/v%s"
OSD_MODE_PROF_NAME = ".scc-osd.profile_editor"

def __init__(self, gladepath="/usr/share/scc",
Expand Down