Skip to content

Commit

Permalink
credit contributions from @ARAKHN1D
Browse files Browse the repository at this point in the history
  • Loading branch information
maoschanz committed May 25, 2024
1 parent 01fdf85 commit a353526
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions data/com.github.maoschanz.drawing.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<description>The default color background of a new image.</description>
</key>
<key type="i" name="default-width">
<default>1000</default>
<default>1030</default>
<summary>Default width</summary>
<description>Default width of a new image (px).</description>
</key>
Expand All @@ -90,7 +90,7 @@

<!-- Remembered state of the window -->
<key type="i" name="window-width">
<default>1000</default>
<default>580</default>
<summary>Width of the window</summary>
<description>The width of the last closed window.</description>
</key>
Expand Down
2 changes: 2 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ drawing (1.2.0) unstable; urgency=low
* preserve transparency of the original area when skewing with a solid background color
* add "circle" and "checkmark" options to the "points" tool (#458)
* fix the font antialiasing for the "points" tool (#458)
* remember the value of the window size (#634 by @ARAKHN1D)
* change the bug report link to help people without a github account (#641 by @ARAKHN1D)
* update several translations

-- Romain F. T. <[email protected]> Sat, 16 Mar 2024 13:12:00 +0100
Expand Down
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def on_about(self, *args):
"""Action callback, showing the "about" dialog."""
about_dialog = Gtk.AboutDialog(transient_for=self.props.active_window,
copyright="© 2018-2023 Romain F. T.",
authors=["Romain F. T.", "Fábio Colacio", "Alexis Lozano"],
authors=["Romain F. T.", "Fábio Colacio", "Alexis Lozano", "Arak @ARAKHN1D"],
# To translators: "translate" this by a list of your names (one name
# per line), they will be displayed in the "about" dialog
translator_credits=_("translator-credits"),
Expand Down
3 changes: 2 additions & 1 deletion src/optionsbars/classic/optionsbar-classic.ui
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<interface domain="drawing">
<object class="GtkAdjustment" id="adjustment_size">
<property name="lower">1</property>
<property name="upper">80</property>
<property name="upper">99</property>
<property name="step_increment">1</property>
<property name="page_increment">4</property>
<property name="value">10</property>
Expand Down Expand Up @@ -150,3 +150,4 @@ size-8-symbolic</property>
</child>
</object>
</interface>

2 changes: 0 additions & 2 deletions src/ui/window.ui
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
</object>

<template class="DrWindow" parent="GtkApplicationWindow">
<property name="default-width">1030</property>
<property name="default-height">580</property>
<property name="icon-name">com.github.maoschanz.drawing</property>
<child>
<object class="GtkBox" id="main_box">
Expand Down

0 comments on commit a353526

Please sign in to comment.