Sat Jun 11 12:26:55 2022 UTC ()
drawing: update to 1.0.1

drawing (1.0.1) unstable; urgency=low

  * enable the highlighter by default
  * less intrusive "what's new" message dialog
  * non-linear zooming speed profile
  * slower scrolling speed to have a better precision with higher zoom levels
  * require itstool as a dependency even though it's some useless bloat
  * fix the adaptivity of the elementaryOS layout
  * better keep the image centered on the mouse pointer when changing the zoom
  * avoid ���again��� insane attempts to open the binary as an image
  * update several translations

drawing (1.0.0) unstable; urgency=low

  * enable tools with "alt+letter" mnemonics
  * larger sidebar items, where the selected tool is easier to see
  * new "skew" tool
  * enable or disable specific tools options with the <shift> or <alt> keyboard modifiers
  * show more numerous, more dynamic, more contextual help tips as the window's subtitle
  * display cursor coordinates and other related data when pressing the <ctrl> keyboard modifier
  * dynamically change the label of the "options" submenu in the menu-bar, to increase its discoverability
  * scale tool option to set the size in percentage
  * suggest to "apply & save" when trying to save while an operation is unapplied
  * highlighter option to straighten the line, so it better follows the underlying text
  * improvements to the "points" tool's numbers readability
  * suggest to "apply & deselect" when trying to save while the selection is active
  * more precise tools for tiny modifications required by pixel-art
  *
  * display pixels sharply when zooming deeper than 400%
  * hide information messages after 4 seconds if they're not that useful
  * disable the 'reload image from the disk' action if the image has never been saved
  * new 'reset the canvas' action
  * warn the user if they're opening an already opened image
  * suggest to reload the picture if it has changed on the disk
  * artificially limited framerate to avoid overloading the CPU
  * menu item and action to change the theme variant preference
  * toggle the menubar with ctrl+f2
  *
  * update the user help manual
  * shorter appdata summary, to comply with guidelines
  * update several translations

drawing (0.8.5) unstable; urgency=low

  * text tool option for a thicker outline
  * visual feedback when the user moves the minimap preview
  * update several translations

drawing (0.8.4) unstable; urgency=low

  * option to disable anti-aliasing with the text tool
  * if "undo" is pressed several times in a short period, recompute only once
  * disable the 'reload image from the disk' action if it has never been saved
  * update several translations


(nia)
diff -r1.1 -r1.2 pkgsrc/graphics/drawing/DESCR
diff -r1.7 -r1.8 pkgsrc/graphics/drawing/Makefile
diff -r1.7 -r1.8 pkgsrc/graphics/drawing/distinfo
diff -r1.5 -r1.6 pkgsrc/graphics/drawing/PLIST

cvs diff -r1.1 -r1.2 pkgsrc/graphics/drawing/DESCR (expand / switch to unified diff)

--- pkgsrc/graphics/drawing/DESCR 2020/06/17 08:47:30 1.1
+++ pkgsrc/graphics/drawing/DESCR 2022/06/11 12:26:55 1.2
@@ -1,4 +1,6 @@ @@ -1,4 +1,6 @@
1This application is a basic image editor, similar to Microsoft Paint, but 1This application is a basic image editor, similar to Microsoft Paint.
2aiming at the GNOME desktop. 2
 3As well as GNOME, the app is well integrated in traditional-looking
 4desktops.
3 5
4PNG, JPEG and BMP files are supported. 6PNG, JPEG and BMP files are supported.

cvs diff -r1.7 -r1.8 pkgsrc/graphics/drawing/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/drawing/Makefile 2022/03/12 08:01:49 1.7
+++ pkgsrc/graphics/drawing/Makefile 2022/06/11 12:26:55 1.8
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: Makefile,v 1.7 2022/03/12 08:01:49 nia Exp $ 1# $NetBSD: Makefile,v 1.8 2022/06/11 12:26:55 nia Exp $
2 2
3DISTNAME= drawing-0.8.3 3DISTNAME= drawing-1.0.1
4CATEGORIES= graphics gnome 4CATEGORIES= graphics gnome
5MASTER_SITES= ${MASTER_SITE_GITHUB:=maoschanz/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=maoschanz/}
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= https://github.com/maoschanz/drawing 8HOMEPAGE= https://github.com/maoschanz/drawing
9COMMENT= Basic image editor, similar to Microsoft Paint 9COMMENT= Basic image editor, similar to Microsoft Paint
10LICENSE= gnu-gpl-v3 10LICENSE= gnu-gpl-v3
11 11
12TOOL_DEPENDS+= appstream-glib-[0-9]*:../../devel/appstream-glib 12TOOL_DEPENDS+= appstream-glib-[0-9]*:../../devel/appstream-glib
13DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3 13DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3
14DEPENDS+= gtk3+-[0-9]*:../../x11/gtk3 14DEPENDS+= gtk3+-[0-9]*:../../x11/gtk3
15 15
16USE_TOOLS+= pkg-config msgfmt xgettext 16USE_TOOLS+= pkg-config msgfmt xgettext itstool
17 17
18# Uses python3 command 18# Uses python3 command
19PYTHON_VERSIONS_INCOMPATIBLE= 27 19PYTHON_VERSIONS_INCOMPATIBLE= 27
20 20
21.include "../../devel/meson/build.mk" 21.include "../../devel/meson/build.mk"
22.include "../../devel/gettext-tools/msgfmt-desktop.mk" 22.include "../../devel/gettext-tools/msgfmt-desktop.mk"
23.include "../../devel/glib2/schemas.mk" 23.include "../../devel/glib2/schemas.mk"
24.include "../../graphics/hicolor-icon-theme/buildlink3.mk" 24.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
25.include "../../lang/python/tool.mk" 25.include "../../lang/python/tool.mk"
26.include "../../sysutils/desktop-file-utils/desktopdb.mk" 26.include "../../sysutils/desktop-file-utils/desktopdb.mk"
27.include "../../mk/bsd.pkg.mk" 27.include "../../mk/bsd.pkg.mk"

cvs diff -r1.7 -r1.8 pkgsrc/graphics/drawing/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/drawing/distinfo 2021/10/26 10:46:04 1.7
+++ pkgsrc/graphics/drawing/distinfo 2022/06/11 12:26:55 1.8
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.7 2021/10/26 10:46:04 nia Exp $ 1$NetBSD: distinfo,v 1.8 2022/06/11 12:26:55 nia Exp $
2 2
3BLAKE2s (drawing-0.8.3.tar.gz) = c8a45933e6d982571c67e543d20ce8ba6390e761edbb73e415d1caa93158da88 3BLAKE2s (drawing-1.0.1.tar.gz) = 9af6371e05e5288c66e2c6888531fc84bcb78490a8eaa1c5925a75d92d4f2eae
4SHA512 (drawing-0.8.3.tar.gz) = 15ddfa09306f0629be6c282a1bb4dff59d95747575052d4b070b7b6152411b010e102144c724b33712bd1347f0ca1d11a27ce01edac94bc62b449a029f688de6 4SHA512 (drawing-1.0.1.tar.gz) = 68d1381e56233eded1562aa3632a4ae3e0afb0b2835530cfab8d30c56557d2e04915ef153b7965abe3ba00d603c7b0e354f37c088df382bb4345d55dc3fe7c2e
5Size (drawing-0.8.3.tar.gz) = 11436783 bytes 5Size (drawing-1.0.1.tar.gz) = 14388196 bytes
6SHA1 (patch-data_com.github.maoschanz.drawing.gschema.xml) = 39214639fc05ba98c763c483fd2dcf5e3080106d 6SHA1 (patch-data_com.github.maoschanz.drawing.gschema.xml) = 39214639fc05ba98c763c483fd2dcf5e3080106d

cvs diff -r1.5 -r1.6 pkgsrc/graphics/drawing/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/drawing/PLIST 2021/08/13 12:08:58 1.5
+++ pkgsrc/graphics/drawing/PLIST 2022/06/11 12:26:55 1.6
@@ -1,38 +1,37 @@ @@ -1,38 +1,37 @@
1@comment $NetBSD: PLIST,v 1.5 2021/08/13 12:08:58 nia Exp $ 1@comment $NetBSD: PLIST,v 1.6 2022/06/11 12:26:55 nia Exp $
2bin/drawing 2bin/drawing
3share/applications/com.github.maoschanz.drawing.desktop 3share/applications/com.github.maoschanz.drawing.desktop
4share/drawing/drawing.gresource 4share/drawing/drawing.gresource
5share/drawing/drawing/__init__.py 5share/drawing/drawing/__init__.py
6share/drawing/drawing/abstract_brush.py 6share/drawing/drawing/abstract_brush.py
7share/drawing/drawing/abstract_classic_tool.py 7share/drawing/drawing/abstract_classic_tool.py
8share/drawing/drawing/abstract_filter.py 8share/drawing/drawing/abstract_filter.py
9share/drawing/drawing/abstract_optionsbar.py 9share/drawing/drawing/abstract_optionsbar.py
10share/drawing/drawing/abstract_select.py 10share/drawing/drawing/abstract_select.py
11share/drawing/drawing/abstract_tool.py 11share/drawing/drawing/abstract_tool.py
12share/drawing/drawing/abstract_transform_tool.py 12share/drawing/drawing/abstract_transform_tool.py
13share/drawing/drawing/brush_airbrush.py 13share/drawing/drawing/brush_airbrush.py
14share/drawing/drawing/brush_hairy.py 14share/drawing/drawing/brush_hairy.py
15share/drawing/drawing/brush_nib.py 15share/drawing/drawing/brush_nib.py
16share/drawing/drawing/brush_simple.py 16share/drawing/drawing/brush_simple.py
17share/drawing/drawing/deco_manager.py 17share/drawing/drawing/deco_manager.py
18share/drawing/drawing/filter_blur.py 18share/drawing/drawing/filter_blur.py
19share/drawing/drawing/filter_colors.py 19share/drawing/drawing/filter_colors.py
20share/drawing/drawing/filter_contrast.py 20share/drawing/drawing/filter_contrast.py
21share/drawing/drawing/filter_emboss.py 21share/drawing/drawing/filter_emboss.py
22share/drawing/drawing/filter_saturation.py 22share/drawing/drawing/filter_saturation.py
23share/drawing/drawing/filter_transparency.py 23share/drawing/drawing/filter_transparency.py
24share/drawing/drawing/filter_veil.py 24share/drawing/drawing/filter_veil.py
25share/drawing/drawing/gi_composites.py 
26share/drawing/drawing/history_manager.py 25share/drawing/drawing/history_manager.py
27share/drawing/drawing/image.py 26share/drawing/drawing/image.py
28share/drawing/drawing/main.py 27share/drawing/drawing/main.py
29share/drawing/drawing/message_dialog.py 28share/drawing/drawing/message_dialog.py
30share/drawing/drawing/minimap.py 29share/drawing/drawing/minimap.py
31share/drawing/drawing/new_image_dialog.py 30share/drawing/drawing/new_image_dialog.py
32share/drawing/drawing/options_manager.py 31share/drawing/drawing/options_manager.py
33share/drawing/drawing/optionsbar_classic.py 32share/drawing/drawing/optionsbar_classic.py
34share/drawing/drawing/optionsbar_color_popover.py 33share/drawing/drawing/optionsbar_color_popover.py
35share/drawing/drawing/optionsbar_crop.py 34share/drawing/drawing/optionsbar_crop.py
36share/drawing/drawing/optionsbar_filters.py 35share/drawing/drawing/optionsbar_filters.py
37share/drawing/drawing/optionsbar_rotate.py 36share/drawing/drawing/optionsbar_rotate.py
38share/drawing/drawing/optionsbar_scale.py 37share/drawing/drawing/optionsbar_scale.py
@@ -53,30 +52,33 @@ share/drawing/drawing/tool_eraser.py @@ -53,30 +52,33 @@ share/drawing/drawing/tool_eraser.py
53share/drawing/drawing/tool_experiment.py 52share/drawing/drawing/tool_experiment.py
54share/drawing/drawing/tool_filters.py 53share/drawing/drawing/tool_filters.py
55share/drawing/drawing/tool_highlight.py 54share/drawing/drawing/tool_highlight.py
56share/drawing/drawing/tool_line.py 55share/drawing/drawing/tool_line.py
57share/drawing/drawing/tool_paint.py 56share/drawing/drawing/tool_paint.py
58share/drawing/drawing/tool_pencil.py 57share/drawing/drawing/tool_pencil.py
59share/drawing/drawing/tool_picker.py 58share/drawing/drawing/tool_picker.py
60share/drawing/drawing/tool_points.py 59share/drawing/drawing/tool_points.py
61share/drawing/drawing/tool_rotate.py 60share/drawing/drawing/tool_rotate.py
62share/drawing/drawing/tool_scale.py 61share/drawing/drawing/tool_scale.py
63share/drawing/drawing/tool_shape.py 62share/drawing/drawing/tool_shape.py
64share/drawing/drawing/tool_skew.py 63share/drawing/drawing/tool_skew.py
65share/drawing/drawing/tool_text.py 64share/drawing/drawing/tool_text.py
66share/drawing/drawing/utilities.py 65share/drawing/drawing/tools_initializer.py
67share/drawing/drawing/utilities_blur.py 66share/drawing/drawing/utilities_blur.py
 67share/drawing/drawing/utilities_colors.py
 68share/drawing/drawing/utilities_files.py
68share/drawing/drawing/utilities_overlay.py 69share/drawing/drawing/utilities_overlay.py
69share/drawing/drawing/utilities_paths.py 70share/drawing/drawing/utilities_paths.py
 71share/drawing/drawing/utilities_units.py
70share/drawing/drawing/window.py 72share/drawing/drawing/window.py
71share/glib-2.0/schemas/com.github.maoschanz.drawing.gschema.xml 73share/glib-2.0/schemas/com.github.maoschanz.drawing.gschema.xml
72share/help/C/drawing/figures/icon.png 74share/help/C/drawing/figures/icon.png
73share/help/C/drawing/figures/screenshot_arrow.png 75share/help/C/drawing/figures/screenshot_arrow.png
74share/help/C/drawing/figures/screenshot_color_editor.png 76share/help/C/drawing/figures/screenshot_color_editor.png
75share/help/C/drawing/figures/screenshot_color_palette.png 77share/help/C/drawing/figures/screenshot_color_palette.png
76share/help/C/drawing/figures/screenshot_filters.png 78share/help/C/drawing/figures/screenshot_filters.png
77share/help/C/drawing/figures/screenshot_fullscreen.png 79share/help/C/drawing/figures/screenshot_fullscreen.png
78share/help/C/drawing/figures/screenshot_hsl.png 80share/help/C/drawing/figures/screenshot_hsl.png
79share/help/C/drawing/figures/screenshot_menu.png 81share/help/C/drawing/figures/screenshot_menu.png
80share/help/C/drawing/figures/screenshot_prefs_images.png 82share/help/C/drawing/figures/screenshot_prefs_images.png
81share/help/C/drawing/figures/screenshot_prefs_tools.png 83share/help/C/drawing/figures/screenshot_prefs_tools.png
82share/help/C/drawing/figures/screenshot_scale.png 84share/help/C/drawing/figures/screenshot_scale.png
@@ -84,42 +86,119 @@ share/help/C/drawing/figures/screenshot_ @@ -84,42 +86,119 @@ share/help/C/drawing/figures/screenshot_
84share/help/C/drawing/figures/screenshot_text.png 86share/help/C/drawing/figures/screenshot_text.png
85share/help/C/drawing/figures/screenshot_zoom.png 87share/help/C/drawing/figures/screenshot_zoom.png
86share/help/C/drawing/fullscreen.page 88share/help/C/drawing/fullscreen.page
87share/help/C/drawing/index.page 89share/help/C/drawing/index.page
88share/help/C/drawing/legal.xml 90share/help/C/drawing/legal.xml
89share/help/C/drawing/main_features.page 91share/help/C/drawing/main_features.page
90share/help/C/drawing/preferences.page 92share/help/C/drawing/preferences.page
91share/help/C/drawing/tools_classic.page 93share/help/C/drawing/tools_classic.page
92share/help/C/drawing/tools_classic_colors.page 94share/help/C/drawing/tools_classic_colors.page
93share/help/C/drawing/tools_selection.page 95share/help/C/drawing/tools_selection.page
94share/help/C/drawing/tools_transform.page 96share/help/C/drawing/tools_transform.page
95share/help/C/drawing/whats_new.page 97share/help/C/drawing/whats_new.page
96share/help/C/drawing/zoom_preview.page 98share/help/C/drawing/zoom_preview.page
 99share/help/es/drawing/figures/icon.png
 100share/help/es/drawing/figures/screenshot_arrow.png
 101share/help/es/drawing/figures/screenshot_color_editor.png
 102share/help/es/drawing/figures/screenshot_color_palette.png
 103share/help/es/drawing/figures/screenshot_filters.png
 104share/help/es/drawing/figures/screenshot_fullscreen.png
 105share/help/es/drawing/figures/screenshot_hsl.png
 106share/help/es/drawing/figures/screenshot_menu.png
 107share/help/es/drawing/figures/screenshot_prefs_images.png
 108share/help/es/drawing/figures/screenshot_prefs_tools.png
 109share/help/es/drawing/figures/screenshot_scale.png
 110share/help/es/drawing/figures/screenshot_selection.png
 111share/help/es/drawing/figures/screenshot_text.png
 112share/help/es/drawing/figures/screenshot_zoom.png
 113share/help/es/drawing/fullscreen.page
 114share/help/es/drawing/index.page
 115share/help/es/drawing/legal.xml
 116share/help/es/drawing/main_features.page
 117share/help/es/drawing/preferences.page
 118share/help/es/drawing/tools_classic.page
 119share/help/es/drawing/tools_classic_colors.page
 120share/help/es/drawing/tools_selection.page
 121share/help/es/drawing/tools_transform.page
 122share/help/es/drawing/whats_new.page
 123share/help/es/drawing/zoom_preview.page
 124share/help/ru/drawing/figures/icon.png
 125share/help/ru/drawing/figures/screenshot_arrow.png
 126share/help/ru/drawing/figures/screenshot_color_editor.png
 127share/help/ru/drawing/figures/screenshot_color_palette.png
 128share/help/ru/drawing/figures/screenshot_filters.png
 129share/help/ru/drawing/figures/screenshot_fullscreen.png
 130share/help/ru/drawing/figures/screenshot_hsl.png
 131share/help/ru/drawing/figures/screenshot_menu.png
 132share/help/ru/drawing/figures/screenshot_prefs_images.png
 133share/help/ru/drawing/figures/screenshot_prefs_tools.png
 134share/help/ru/drawing/figures/screenshot_scale.png
 135share/help/ru/drawing/figures/screenshot_selection.png
 136share/help/ru/drawing/figures/screenshot_text.png
 137share/help/ru/drawing/figures/screenshot_zoom.png
 138share/help/ru/drawing/fullscreen.page
 139share/help/ru/drawing/index.page
 140share/help/ru/drawing/legal.xml
 141share/help/ru/drawing/main_features.page
 142share/help/ru/drawing/preferences.page
 143share/help/ru/drawing/tools_classic.page
 144share/help/ru/drawing/tools_classic_colors.page
 145share/help/ru/drawing/tools_selection.page
 146share/help/ru/drawing/tools_transform.page
 147share/help/ru/drawing/whats_new.page
 148share/help/ru/drawing/zoom_preview.page
 149share/help/tr/drawing/figures/icon.png
 150share/help/tr/drawing/figures/screenshot_arrow.png
 151share/help/tr/drawing/figures/screenshot_color_editor.png
 152share/help/tr/drawing/figures/screenshot_color_palette.png
 153share/help/tr/drawing/figures/screenshot_filters.png
 154share/help/tr/drawing/figures/screenshot_fullscreen.png
 155share/help/tr/drawing/figures/screenshot_hsl.png
 156share/help/tr/drawing/figures/screenshot_menu.png
 157share/help/tr/drawing/figures/screenshot_prefs_images.png
 158share/help/tr/drawing/figures/screenshot_prefs_tools.png
 159share/help/tr/drawing/figures/screenshot_scale.png
 160share/help/tr/drawing/figures/screenshot_selection.png
 161share/help/tr/drawing/figures/screenshot_text.png
 162share/help/tr/drawing/figures/screenshot_zoom.png
 163share/help/tr/drawing/fullscreen.page
 164share/help/tr/drawing/index.page
 165share/help/tr/drawing/legal.xml
 166share/help/tr/drawing/main_features.page
 167share/help/tr/drawing/preferences.page
 168share/help/tr/drawing/tools_classic.page
 169share/help/tr/drawing/tools_classic_colors.page
 170share/help/tr/drawing/tools_selection.page
 171share/help/tr/drawing/tools_transform.page
 172share/help/tr/drawing/whats_new.page
 173share/help/tr/drawing/zoom_preview.page
97share/icons/hicolor/128x128/apps/com.github.maoschanz.drawing.png 174share/icons/hicolor/128x128/apps/com.github.maoschanz.drawing.png
98share/icons/hicolor/256x256/apps/com.github.maoschanz.drawing.png 175share/icons/hicolor/256x256/apps/com.github.maoschanz.drawing.png
99share/icons/hicolor/48x48/apps/com.github.maoschanz.drawing.png 176share/icons/hicolor/48x48/apps/com.github.maoschanz.drawing.png
100share/icons/hicolor/512x512/apps/com.github.maoschanz.drawing.png 177share/icons/hicolor/512x512/apps/com.github.maoschanz.drawing.png
101share/icons/hicolor/scalable/apps/com.github.maoschanz.drawing-symbolic.svg 178share/icons/hicolor/scalable/apps/com.github.maoschanz.drawing-symbolic.svg
102share/icons/hicolor/scalable/apps/com.github.maoschanz.drawing.svg 179share/icons/hicolor/scalable/apps/com.github.maoschanz.drawing.svg
 180share/locale/ca/LC_MESSAGES/drawing.mo
103share/locale/cs/LC_MESSAGES/drawing.mo 181share/locale/cs/LC_MESSAGES/drawing.mo
104share/locale/da/LC_MESSAGES/drawing.mo 182share/locale/da/LC_MESSAGES/drawing.mo
105share/locale/de/LC_MESSAGES/drawing.mo 183share/locale/de/LC_MESSAGES/drawing.mo
106share/locale/es/LC_MESSAGES/drawing.mo 184share/locale/es/LC_MESSAGES/drawing.mo
107share/locale/eu/LC_MESSAGES/drawing.mo 185share/locale/eu/LC_MESSAGES/drawing.mo
108share/locale/fi/LC_MESSAGES/drawing.mo 186share/locale/fi/LC_MESSAGES/drawing.mo
109share/locale/fr/LC_MESSAGES/drawing.mo 187share/locale/fr/LC_MESSAGES/drawing.mo
110share/locale/he/LC_MESSAGES/drawing.mo 188share/locale/he/LC_MESSAGES/drawing.mo
111share/locale/hr/LC_MESSAGES/drawing.mo 189share/locale/hr/LC_MESSAGES/drawing.mo
112share/locale/hu/LC_MESSAGES/drawing.mo 190share/locale/hu/LC_MESSAGES/drawing.mo
113share/locale/id/LC_MESSAGES/drawing.mo 191share/locale/id/LC_MESSAGES/drawing.mo
114share/locale/it/LC_MESSAGES/drawing.mo 192share/locale/it/LC_MESSAGES/drawing.mo
115share/locale/ja/LC_MESSAGES/drawing.mo 193share/locale/ja/LC_MESSAGES/drawing.mo
116share/locale/ko/LC_MESSAGES/drawing.mo 194share/locale/ko/LC_MESSAGES/drawing.mo
117share/locale/nl/LC_MESSAGES/drawing.mo 195share/locale/nl/LC_MESSAGES/drawing.mo
 196share/locale/oc/LC_MESSAGES/drawing.mo
118share/locale/pl/LC_MESSAGES/drawing.mo 197share/locale/pl/LC_MESSAGES/drawing.mo
119share/locale/pt_BR/LC_MESSAGES/drawing.mo 198share/locale/pt_BR/LC_MESSAGES/drawing.mo
120share/locale/ru/LC_MESSAGES/drawing.mo 199share/locale/ru/LC_MESSAGES/drawing.mo
121share/locale/sv/LC_MESSAGES/drawing.mo 200share/locale/sv/LC_MESSAGES/drawing.mo
122share/locale/tr/LC_MESSAGES/drawing.mo 201share/locale/tr/LC_MESSAGES/drawing.mo
123share/locale/zh_CN/LC_MESSAGES/drawing.mo 202share/locale/zh_CN/LC_MESSAGES/drawing.mo
124share/locale/zh_TW/LC_MESSAGES/drawing.mo 203share/locale/zh_TW/LC_MESSAGES/drawing.mo
125share/metainfo/com.github.maoschanz.drawing.appdata.xml 204share/metainfo/com.github.maoschanz.drawing.appdata.xml