Skip to content

Commit 4645b44

Browse files
committed
Fix for latest ColorAide
1 parent d4ddae8 commit 4645b44

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

docs/src/markdown/about/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 4.23.1
4+
5+
- **FIX**: Fix for latest ColorAide.
6+
37
## 4.23
48

59
- **NEW**: Add support for Python 3.14.

rummage/lib/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def parse_version(ver):
189189

190190

191191
# (major, minor, micro, release type, pre-release build, post-release build, development-release)
192-
__version_info__ = Version(4, 23, 0, 'final')
192+
__version_info__ = Version(4, 23, 1, 'final')
193193
__version__ = __version_info__._get_canonical()
194194
__app__ = "Rummage"
195195
__status__ = __version_info__[3]

rummage/lib/gui/data/docs/.dochash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
04f96034f7febb94a2033c9f0c44ef9b
1+
e49538e503f552de11f049558644fd73

rummage/lib/gui/data/docs/about/changelog.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525

2626
<!-- Table of Content (Don't show for static sites) -->
2727
<h1 id="changelog">Changelog</h1>
28+
<h2 id="4231">4.23.1</h2>
29+
<ul>
30+
<li><strong>FIX</strong>: Fix for latest ColorAide.</li>
31+
</ul>
2832
<h2 id="423">4.23</h2>
2933
<ul>
3034
<li><strong>NEW</strong>: Add support for Python 3.14.</li>

rummage/lib/gui/data/docs/about/contributing.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<div class="__toc_wrapper"><span class="__toc_icon"></span>
3232
<div class="__toc_content">
3333
<ul class="__toc_list">
34-
<li class="__toc_level_2"><a href="#contributing-support">Contributing &amp; Support</a></li>
34+
<li class="__toc_level_2"><a href="#contributing--support">Contributing &amp; Support</a></li>
3535
<ul class="__toc_list_2">
3636

3737
<li class="__toc_level_3"><a href="#overview">Overview</a></li>
@@ -70,7 +70,7 @@
7070
</ul>
7171
</div>
7272
</div>
73-
<h1 id="contributing-support">Contributing &amp; Support</h1>
73+
<h1 id="contributing--support">Contributing &amp; Support</h1>
7474
<h2 id="overview">Overview</h2>
7575
<p>Contribution from the community is encouraged and can be done in a variety of ways:</p>
7676
<ul>

rummage/lib/gui/data/docs/usage.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<ul class="__toc_list_3">
4343

4444
</ul>
45-
<li class="__toc_level_3"><a href="#searching-replacing">Searching &amp; Replacing</a></li>
45+
<li class="__toc_level_3"><a href="#searching--replacing">Searching &amp; Replacing</a></li>
4646
<ul class="__toc_list_3">
4747

4848
<li class="__toc_level_4"><a href="#configuring-text-search">Configuring Text Search</a></li>
@@ -114,7 +114,7 @@ <h2 id="running">Running</h2>
114114
<a href="./installation.html#running-in-anaconda">Running in Anaconda</a>).</p>
115115
<div class="highlight"><pre><span></span><code>pythonw<span class="w"> </span>-m<span class="w"> </span>rummage
116116
</code></pre></div>
117-
<h2 id="searching-replacing">Searching &amp; Replacing</h2>
117+
<h2 id="searching--replacing">Searching &amp; Replacing</h2>
118118
<p><img alt="Search Tab" src="images/search_tab.png" /></p>
119119
<p>Search and replaces are configured in the <strong>Search</strong> tab. The search tab can essentially be broken up into two sections:
120120
text search configuration and file search configuration.</p>

rummage/lib/gui/util/images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def tint(byte_string, color, transparency=None):
2424
columns = int(len(row) / 4)
2525
start = 0
2626
for _x in range(columns):
27-
color.compose(Color('srgb', [c / 255 for c in row[start:start + 3]]))
27+
color = Color.layer([color, Color('srgb', [c / 255 for c in row[start:start + 3]])])
2828
alpha = row[start + 3]
2929
# Adjust transparency of image if also desired
3030
if transparency is not None:

0 commit comments

Comments
 (0)