Skip to content

Commit 4506282

Browse files
cassidyjamesdanirabbit
authored andcommitted
Release 5.3.0 (#562)
1 parent 6f46972 commit 4506282

File tree

4 files changed

+82
-1
lines changed

4 files changed

+82
-1
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ insert_final_newline = true
1111
max_line_length = 80
1212
tab_width = 4
1313

14+
[{*.policy,*.xml,*.xml.in,*.yml}]
15+
tab_width = 2

data/meson.build

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
i18n.merge_file(
2+
input: 'stylesheet.appdata.xml.in',
3+
output: meson.project_name() + '.appdata.xml',
4+
po_dir: join_paths(meson.source_root(), 'po', 'extra'),
5+
type: 'xml',
6+
install: true,
7+
install_dir: join_paths(get_option('datadir'), 'metainfo'),
8+
)

data/stylesheet.appdata.xml.in

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- Copyright 2019 elementary, Inc. <[email protected]> -->
3+
<component type="runtime">
4+
<!-- NOTE: this ID format is required for automatic Flatpak theme matching -->
5+
<id>org.gtk.Gtk3theme.elementary</id>
6+
<metadata_license>CC0-1.0</metadata_license>
7+
<project_license>GPL-3.0+</project_license>
8+
<name>elementary Stylesheet</name>
9+
<summary>The GTK Stylesheet for elementary OS</summary>
10+
<description>
11+
<p>An original Gtk.CSS stylesheet designed specifically for elementary OS and its desktop environment: Pantheon.</p>
12+
</description>
13+
<provides>
14+
<id>io.elementary.stylesheet</id>
15+
</provides>
16+
<releases>
17+
<release version="5.3.0" date="2019-11-01" urgency="medium">
18+
<description>
19+
<ul>
20+
<li>Fix unreadable keycaps text</li>
21+
<li>More consistent popover shadows</li>
22+
<li>Fix color for insensitive flat buttons in list rows</li>
23+
<li>Remove duplicated and obsolete styles</li>
24+
<li>Always set dock badge to red, regardless of accent color</li>
25+
<li>Support wide separators</li>
26+
<li>Improved scrollbars in WebKit web views</li>
27+
<li>Improve window shadows for legacy-decorated apps</li>
28+
<li>New (hidden) dark style for the dock</li>
29+
</ul>
30+
</description>
31+
</release>
32+
</releases>
33+
<content_rating type="oars-1.1">
34+
<content_attribute id="violence-cartoon">none</content_attribute>
35+
<content_attribute id="violence-fantasy">none</content_attribute>
36+
<content_attribute id="violence-realistic">none</content_attribute>
37+
<content_attribute id="violence-bloodshed">none</content_attribute>
38+
<content_attribute id="violence-sexual">none</content_attribute>
39+
<content_attribute id="violence-desecration">none</content_attribute>
40+
<content_attribute id="violence-slavery">none</content_attribute>
41+
<content_attribute id="violence-worship">none</content_attribute>
42+
<content_attribute id="drugs-alcohol">none</content_attribute>
43+
<content_attribute id="drugs-narcotics">none</content_attribute>
44+
<content_attribute id="drugs-tobacco">none</content_attribute>
45+
<content_attribute id="sex-nudity">none</content_attribute>
46+
<content_attribute id="sex-themes">none</content_attribute>
47+
<content_attribute id="sex-homosexuality">none</content_attribute>
48+
<content_attribute id="sex-prostitution">none</content_attribute>
49+
<content_attribute id="sex-adultery">none</content_attribute>
50+
<content_attribute id="sex-appearance">none</content_attribute>
51+
<content_attribute id="language-profanity">none</content_attribute>
52+
<content_attribute id="language-humor">none</content_attribute>
53+
<content_attribute id="language-discrimination">none</content_attribute>
54+
<content_attribute id="social-chat">none</content_attribute>
55+
<content_attribute id="social-info">none</content_attribute>
56+
<content_attribute id="social-audio">none</content_attribute>
57+
<content_attribute id="social-location">none</content_attribute>
58+
<content_attribute id="social-contacts">none</content_attribute>
59+
<content_attribute id="money-purchasing">none</content_attribute>
60+
<content_attribute id="money-gambling">none</content_attribute>
61+
</content_rating>
62+
<translation type="gettext">io.elementary.stylesheet</translation>
63+
<compulsory_for_desktop>Pantheon</compulsory_for_desktop>
64+
<developer_name>elementary, Inc.</developer_name>
65+
<url type="homepage">https://elementary.io</url>
66+
<url type="bugtracker">https://github.com/elementary/stylesheet/issues</url>
67+
​</component>

meson.build

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
project(
22
'io.elementary.stylesheet',
3-
version: '5.2.5'
3+
version: '5.3.0'
44
)
55

6+
i18n = import('i18n')
7+
68
install_subdir(
79
'elementary',
810
install_dir: join_paths(get_option('datadir'), 'themes')
@@ -20,3 +22,5 @@ install_data(
2022
),
2123
rename: 'dock.theme',
2224
)
25+
26+
subdir('data')

0 commit comments

Comments
 (0)