Skip to content

Commit ae9e121

Browse files
committed
Update to pass Appcenter review
1 parent bf92336 commit ae9e121

16 files changed

+145
-103
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Run `meson build` to configure the build environment. Change to the build direct
2626
cd build
2727
ninja
2828

29-
To install, use `ninja install`, then execute with `tech.skarva.lockbox`
29+
To install, use `ninja install`, then execute with `com.github.skarva.lockbox`
3030

3131
sudo ninja install
32-
tech.skarva.lockbox
32+
com.github.skarva.lockbox

data/tech.skarva.lockbox.appdata.xml.in renamed to data/com.github.skarva.lockbox.appdata.xml.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!-- Copyright 2019 skarva llc <[email protected]> -->
33
<component type="desktop">
4-
<id>tech.skarva.lockbox.desktop</id>
4+
<id>com.github.skarva.lockbox.desktop</id>
55
<metadata_license>CC0</metadata_license>
66
<project_license>GPL-3.0+</project_license>
77
<name>Lock Box</name>
@@ -17,9 +17,9 @@
1717
</ul>
1818
</description>
1919

20-
<launchable type="desktop-id">tech.skarva.lockbox.desktop</launchable>
20+
<launchable type="desktop-id">com.github.skarva.lockbox.desktop</launchable>
2121
<provides>
22-
<binary>tech.skarva.lockbox</binary>
22+
<binary>com.github.skarva.lockbox</binary>
2323
</provides>
2424

2525
<screenshots>

data/tech.skarva.lockbox.desktop.in renamed to data/com.github.skarva.lockbox.desktop.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Name=Lock Box
33
GenericName=Password Manager
44
Comment=Secure and manage your secure information
55
Categories=System;Utility;Internet;
6-
Exec=tech.skarva.lockbox
7-
Icon=tech.skarva.lockbox
6+
Exec=com.github.skarva.lockbox
7+
Icon=com.github.skarva.lockbox
88
Terminal=false
99
Type=Application
10-
X-GNOME-Gettext-Domain=tech.skarva.lockbox
10+
X-GNOME-Gettext-Domain=com.github.skarva.lockbox
1111
Keywords=Password;Login;Notes;

data/tech.skarva.lockbox.gschema.xml renamed to data/com.github.skarva.lockbox.gschema.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!-- Copyright 2019 skarva <[email protected]> -->
33
<schemalist>
4-
<enum id="tech.skarva.lockbox.sort">
4+
<enum id="com.github.skarva.lockbox.sort">
55
<value value="0" nick="name"/>
66
<value value="1" nick="created"/>
77
</enum>
8-
<schema path="/tech/skarva/lockbox/saved-state/" id="tech.skarva.lockbox.saved-state" gettext-domain="tech.skarva.lockbox">
8+
<schema path="/com/github/skarva/lockbox/saved-state/" id="com.github.skarva.lockbox.saved-state" gettext-domain="com.github.skarva.lockbox">
99
<key name="maximized" type="b">
1010
<default>false</default>
1111
<summary>The maximized state of the main window.</summary>
@@ -32,7 +32,7 @@
3232
<description>Y-axis position of the main window.</description>
3333
</key>
3434
</schema>
35-
<schema path="/tech/skarva/lockbox/settings/" id="tech.skarva.lockbox.settings" gettext-domain="tech.skarva.lockbox">
35+
<schema path="/com/github/skarva/lockbox/settings/" id="com.github.skarva.lockbox.settings" gettext-domain="com.github.skarva.lockbox">
3636
<key name="clear-clipboard" type="b">
3737
<default>true</default>
3838
<summary>Clear clipboard after timeout.</summary>
@@ -48,7 +48,7 @@
4848
<summary>Toggle for application dark mode.</summary>
4949
<description>Toggle for appication dark mode.</description>
5050
</key>
51-
<key name="sort-by" enum="tech.skarva.lockbox.sort">
51+
<key name="sort-by" enum="com.github.skarva.lockbox.sort">
5252
<default>'name'</default>
5353
<summary>An index of the sorting method</summary>
5454
<description>An index of the sorting method to apply to the collection list</description>

data/lockbox.gresource.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!-- Copyright 2019 skarva llc <[email protected]> -->
33
<gresources>
4-
<gresource prefix="/tech/skarva/lockbox">
4+
<gresource prefix="/com/github/skarva/lockbox">
55
<file alias="Note.css" compressed="true">styles/Note.css</file>
66
</gresource>
77
</gresources>

data/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ icon_sizes = ['32', '48', '64', '128']
22

33
foreach i : icon_sizes
44
install_data(
5-
join_paths('icons', i, 'tech.skarva.lockbox.svg'),
5+
join_paths('icons', i, 'com.github.skarva.lockbox.svg'),
66
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps')
77
)
88
install_data(
9-
join_paths('icons', i, 'tech.skarva.lockbox.svg'),
9+
join_paths('icons', i, 'com.github.skarva.lockbox.svg'),
1010
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps')
1111
)
1212
endforeach

0 commit comments

Comments
 (0)