Skip to content

Commit 8581031

Browse files
committed
Plumb out remaining author strings from Kozec and update some abouts
1 parent 8e22fbe commit 8581031

File tree

5 files changed

+21
-28
lines changed

5 files changed

+21
-28
lines changed

glade/about.glade

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<requires lib="gtk+" version="3.10"/>
55
<object class="GtkDialog" id="Dialog">
66
<property name="can_focus">False</property>
7-
<property name="title" translatable="yes">About SC-Controller</property>
7+
<property name="title" translatable="yes">About SC Controller</property>
88
<property name="window_position">center-on-parent</property>
99
<property name="icon">../images/sc-controller-small.svg</property>
1010
<property name="type_hint">dialog</property>
@@ -66,7 +66,7 @@
6666
<object class="GtkLabel" id="label1">
6767
<property name="visible">True</property>
6868
<property name="can_focus">False</property>
69-
<property name="label" translatable="yes">&lt;span size="large"&gt;&lt;b&gt;SC-Controller&lt;/b&gt;&lt;/span&gt;</property>
69+
<property name="label" translatable="yes">&lt;span size="large"&gt;&lt;b&gt;SC Controller&lt;/b&gt;&lt;/span&gt;</property>
7070
<property name="use_markup">True</property>
7171
<property name="justify">center</property>
7272
</object>
@@ -95,7 +95,7 @@
9595
<property name="visible">True</property>
9696
<property name="can_focus">False</property>
9797
<property name="margin_bottom">20</property>
98-
<property name="label" translatable="yes">User-mode driver and GTK3 based GUI for Steam Controller.</property>
98+
<property name="label" translatable="yes">User-mode driver and GTK3 based GUI for the Steam Controller, DS4 and similar controllers</property>
9999
<property name="use_markup">True</property>
100100
<property name="justify">center</property>
101101
</object>
@@ -110,23 +110,17 @@
110110
<property name="visible">True</property>
111111
<property name="can_focus">True</property>
112112
<property name="margin_bottom">25</property>
113-
<property name="label" translatable="yes">&lt;b&gt;Code&amp;amp;UI © 2016 Kozec&lt;/b&gt;
113+
<property name="label" translatable="yes">
114+
&lt;b&gt;Code&amp;amp;UI © 2016-2023 Kozec&lt;/b&gt;
115+
&lt;b&gt;Python 3 port&amp;amp;Maintenance © 2020-2024 Ryochan7&lt;/b&gt;
116+
&lt;b&gt;Maintenance © 2024 Martin Rys&lt;/b&gt;
114117

115-
Source code available on &lt;a href="https://github.com/kozec/sc-controller"&gt;GitHub&lt;/a&gt;
118+
Source code available on &lt;a href="https://github.com/C0rn3j/sc-controller"&gt;GitHub&lt;/a&gt;
116119

117-
I'd like to express my biggest thanks
118-
for all my &lt;b&gt;&lt;a href="https://www.patreon.com/kozec"&gt;Patreon&lt;/a&gt;&lt;/b&gt; supporters, with special mention of
120+
If you like what I am doing, you can become a supporter on &lt;a href="https://ko-fi.com/martinrys"&gt;Ko-Fi&lt;/a&gt; or check out other &lt;a href="https://rys.rs/donate"&gt;ways to donate&lt;/a&gt;
121+
122+
Donation links for Kozec, who is the original developer, can be found &lt;a href="https://github.com/kozec/sc-controller?tab=readme-ov-file#like-what-im-doing"&gt;here&lt;/a&gt;
119123

120-
&lt;b&gt;guido haag&lt;/b&gt;
121-
&lt;b&gt;Orivej Desh&lt;/b&gt;
122-
&lt;b&gt;G. Wilson&lt;/b&gt;
123-
&lt;b&gt;Eric Duhamel&lt;/b&gt;
124-
&lt;b&gt;Enric Morales&lt;/b&gt;
125-
&lt;b&gt;Joshua M&lt;/b&gt;
126-
&lt;b&gt;Lutris&lt;/b&gt;
127-
&lt;b&gt;Taowa&lt;/b&gt;
128-
and
129-
&lt;b&gt;ambidot&lt;/b&gt;
130124
</property>
131125
<property name="use_markup">True</property>
132126
<property name="justify">center</property>

scc/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
If SC-Controller is updated while daemon is running, DAEMON_VERSION send by
2929
daemon will differ one one expected by UI and daemon will be forcefully restarted.
3030
"""
31-
DAEMON_VERSION = "0.4.8.20"
31+
DAEMON_VERSION = "0.4.8.21"
3232

3333
HPERIOD = 0.02
3434
LPERIOD = 0.5

scc/gui/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class App(Gtk.Application, UserDataManager, BindingEditor):
4646
def __init__(self, gladepath="/usr/share/scc",
4747
imagepath="/usr/share/scc/images"):
4848
Gtk.Application.__init__(self,
49-
application_id="me.kozec.scc",
49+
application_id="me.c0rn3j.scc",
5050
flags=Gio.ApplicationFlags.HANDLES_COMMAND_LINE | Gio.ApplicationFlags.NON_UNIQUE )
5151
UserDataManager.__init__(self)
5252
BindingEditor.__init__(self, self)

scripts/sc-controller.appdata.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@
33
<id>sc-controller.desktop</id>
44
<name>SC Controller</name>
55
<summary>Edits controller mappings</summary>
6-
<developer_name>kozec</developer_name>
6+
<developer_name>C0rn3j</developer_name>
77
<description>
88
<p>
99
User-mode driver and GTK3 based GUI for Steam Controller.
1010
</p>
1111
</description>
1212
<metadata_license>CC0-1.0</metadata_license>
1313
<project_license>GPL-2.0</project_license>
14-
<url type="bugtracker">https://github.com/kozec/sc-controller/issues</url>
15-
<url type="donation">https://www.paypal.com/cgi-bin/webscr?cmd=_donations&amp;business=77DQD3L9K8RPU&amp;lc=SK&amp;item_name=kozec&amp;item_number=scc&amp;currency_code=EUR&amp;bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted</url>
14+
<url type="bugtracker">https://github.com/C0rn3j/sc-controller/issues</url>
15+
<url type="donation">https://github.com/C0rn3j/sc-controller?tab=readme-ov-file#like-what-im-doing</url>
1616
<url type="help">https://github.com/kozec/sc-controller/wiki</url>
17-
<url type="homepage">https://github.com/kozec/sc-controller/</url>
17+
<url type="homepage">https://github.com/C0rn3j/sc-controller/</url>
1818
<screenshots>
1919
<screenshot type="default">
2020
<caption>Main Application Window</caption>
21-
<image width="923" height="538">https://raw.githubusercontent.com/kozec/sc-controller/master/docs/screenshot1.png</image>
21+
<image width="923" height="538">https://raw.githubusercontent.com/C0rn3j/sc-controller/master/docs/screenshot1.png</image>
2222
</screenshot>
2323
<screenshot>
2424
<caption>SC-Controller in action</caption>
25-
<image width="887" height="622">https://raw.githubusercontent.com/kozec/sc-controller/master/docs/screenshot2.png</image>
25+
<image width="887" height="622">https://raw.githubusercontent.com/C0rn3j/sc-controller/master/docs/screenshot2.png</image>
2626
</screenshot>
2727
</screenshots>
2828
</component>

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
('share/mime/packages', [ "scc-mime-types.xml" ]),
2626
('share/applications', ['scripts/sc-controller.desktop' ]),
2727
('lib/udev/rules.d', glob.glob('scripts/*.rules')),
28-
28+
2929
] + [ # menu icons subfolders
3030
(
3131
'share/scc/images/menu-icons/' + x.split("/")[-1],
@@ -47,7 +47,7 @@
4747
setup(name = 'sccontroller',
4848
version = DAEMON_VERSION,
4949
description = 'Standalone controller maping tool',
50-
author = 'kozec',
50+
author = 'C0rn3j',
5151
packages = packages,
5252
data_files = data_files,
5353
scripts = [
@@ -73,4 +73,3 @@
7373
Extension('libremotepad', sources = ['scc/drivers/remotepad_controller.c']),
7474
]
7575
)
76-

0 commit comments

Comments
 (0)