1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2018-2025 Trevor Williams <phase1geo@icloud.com> -->
<component type="desktop-application">
<id>com.github.phase1geo.minder</id>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0+</project_license>
<name>Minder</name>
<name xml:lang="ru">Minder</name>
<name xml:lang="pt">Minder</name>
<name xml:lang="fr">Minder</name>
<summary>Create, develop and visualize your ideas</summary>
<summary xml:lang="ru">Создавайте, развивайте и визуализуйте идеи</summary>
<summary xml:lang="pt">Crie, desenvolva e visualize as suas ideias</summary>
<summary xml:lang="fr">Créez, développez et visualisez vos idées</summary>
<description>
<p>
Use the power of mind-mapping to make your ideas come to life. Minder provides a mindmap creation and
exploration environment that focuses on a clean interface with smooth animations and rich, expressive elements
to help capture and organize your ideas quickly and stay in the your flow.
</p>
<ul>
<li>Quickly create visual mind-maps using the keyboard and automatic layout.</li>
<li xml:lang="ru">Создавайте диаграммы связей с автоматическим размещением узлов, не отрываясь от клавиатуры.</li>
<li xml:lang="pt">Crie mapas mentais visuais rapidamente usando o teclado e o layout automático.</li>
<li xml:lang="fr">Créez rapidement des cartes mentales visuelles en utilisant le clavier et la mise en forme automatique.</li>
<li>Choose from many tree layout choices.</li>
<li xml:lang="ru">Используйте любой из доступных макетов размещения дерева узлов.</li>
<li xml:lang="pt">Escolha entre várias opções de leyout de árvore.</li>
<li>Support for Markdown formatting.</li>
<li xml:lang="ru">Используйте форматирование Markdown.</li>
<li xml:lang="pt">Suporte para formatação Markdown.</li>
<li>Support for insertion of Unicode characters.</li>
<li>Add notes, tasks, and images to your nodes.</li>
<li>Add node-to-node connections with optional text and notes.</li>
<li xml:lang="ru">Соединяйте узлы друг с другом, подписывайте соединения и добавляйте к ним примечания.</li>
<li xml:lang="pt">Adicione conexões nó a nó com texto opcional e notas.</li>
<li xml:lang="fr">Ajoutez des connexions nœud-vers-nœud avec en option du texte et des notes.</li>
<li>Stylize nodes, callouts, links and connections to add more meaning and improve readability.</li>
<li>Save and reuse style settings within and across open mindmaps.</li>
<li>Add stickers, tags, callouts and node groups to call out and visibly organize information.</li>
<li>Quick search of node and connection titles and notes, including filtering options.</li>
<li xml:lang="ru">Быстро находите узлы, заголовки соединений и примечания, используйте фильтры поиска.</li>
<li xml:lang="pt">Procura rápida de títulos e notas de nós e conexões, incluindo opções de filtragem.</li>
<li xml:lang="fr">Recherche rapide de notes et titres de nœuds et connexions, incluant des options de filtrage.</li>
<li>Zoom in or enable focus mode to focus on certain ideas or zoom out to see the bigger picture.</li>
<li xml:lang="ru">Увеличьте диаграмму, чтобы рассмотреть подробности, используйте режим фокусировки, чтобы сконцентрироваться на конкретных идеях, или уменьшите масштаб просмотра, чтобы увидеть всю картину.</li>
<li xml:lang="pt">Amplie ou ative o modo de concentração para se focar mais em certas ideias ou reduza a ampliação para ver a grande imagem.</li>
<li xml:lang="fr">Zoomez pour vous concentrer sur certaines idées ou dézoomez pour visualiser une image plus grande.</li>
<li>Enter focus mode to better view and understand portions of the map.</li>
<li xml:lang="ru">Используйте режим фокусировки , чтобы лучше понимать отдельные участки диаграммы.</li>
<li xml:lang="pt">Entre no modo de concentração para visualizar e perceber melhor as porções do mapa.</li>
<li xml:lang="fr">Entrez en mode concentration pour une vue plus claire et mieux apréhender les zones de la carte.</li>
<li>Quickly brainstorm ideas with the brainstorming interface and worry about where those ideas belong in the
mindmap later.</li>
<li>Unlimited undo/redo of any change.</li>
<li xml:lang="ru">Отменяйте и возвращайте любые изменения в диаграмме как угодно далеко по истории правок.</li>
<li xml:lang="pt">Desfazer/refazer ilimitado para qualquer alteração.</li>
<li xml:lang="fr">Possibilité infinie d'annuler/rétablir des modifications.</li>
<li>Automatically and manual saving supported.</li>
<li>Colorized node branches.</li>
<li xml:lang="ru">Пользуйтесь раскрашенными ветками узлов.</li>
<li xml:lang="pt">Ramificações de nós coloridas.</li>
<li xml:lang="fr">Branches de nœuds colorées.</li>
<li>Open multiple mindmaps with the use of tabs.</li>
<li xml:lang="ru">Открывайте любое количество диаграмм связей на вкладках.</li>
<li xml:lang="pt">Abrir múltiplos mapas mentais com o uso de guias.</li>
<li xml:lang="fr">Ouvrez plusieurs carte mentales en utilisant les onglets.</li>
<li>Built-in and customizable theming.</li>
<li xml:lang="ru">Используйте встроенную настраиваемую систему тем оформления.</li>
<li xml:lang="pt">Tema incorporado e personalizável.</li>
<li xml:lang="fr">Thèmes intégrés et personnalisables.</li>
<li>Gorgeous animations.</li>
<li xml:lang="ru">Шикарная анимация.</li>
<li xml:lang="pt">Animações lindas.</li>
<li xml:lang="fr">Magnifiques animations.</li>
<li>Import from OPML, FreeMind, Freeplane, PlainText/Markdown (formatted), Outliner, Portable Minder, filesystem
and XMind formats.</li>
<li>Export to CSV, FreeMind, Freeplane, JPEG, BMP, SVG, WebP, Markdown, Mermaid, Mermaid Mindmap, OPML, Org-Mode,
Outliner, PDF, PNG, PlainText, filesystem, XMind and yEd formats.</li>
<li>Printer support.</li>
<li xml:lang="ru">Используйте функцию вывода на печать.</li>
<li xml:lang="pt">Suporte para impressora.</li>
<li xml:lang="fr">Prise en charge de l'impression.</li>
</ul>
</description>
<launchable type="desktop-id">com.github.phase1geo.minder.desktop</launchable>
<provides>
<binary>com.github.phase1geo.minder</binary>
</provides>
<screenshots>
<screenshot type="default">
<caption>Node/Connection/Group Property Sidebar</caption>
<image>https://raw.githubusercontent.com/phase1geo/Minder/master/data/screenshots/screenshot-current-properties.png</image>
</screenshot>
<screenshot>
<caption>Style Property Sidebar</caption>
<caption xml:lang="pt">Personalizar Propriedades da Barra Lateral</caption>
<caption xml:lang="fr">Barre latérale des propriétés de style</caption>
<image>https://raw.githubusercontent.com/phase1geo/Minder/master/data/screenshots/screenshot-style-properties.png</image>
</screenshot>
<screenshot>
<caption>Tags Property Sidebar</caption>
<image>https://raw.githubusercontent.com/phase1geo/Minder/master/data/screenshots/screenshot-tags-properties.png</image>
</screenshot>
<screenshot>
<caption>Sticker Property Sidebar</caption>
<caption xml:lang="pt">Barra Lateral das Propriedades de Autocolantes</caption>
<image>https://raw.githubusercontent.com/phase1geo/Minder/master/data/screenshots/screenshot-stickers-properties.png</image>
</screenshot>
<screenshot>
<caption>Map Property Sidebar</caption>
<caption xml:lang="pt">Barra Lateral das Propriedades do Mapa</caption>
<caption xml:lang="fr">Barre latérale des propriétés de la carte</caption>
<image>https://raw.githubusercontent.com/phase1geo/Minder/master/data/screenshots/screenshot-map-properties.png</image>
</screenshot>
</screenshots>
<developer id="com.github.phase1geo">
<name>Trevor Williams</name>
<name xml:lang="ru">Trevor Williams</name>
<name xml:lang="pt">Trevor Williams</name>
<name xml:lang="fr">Trevor Williams</name>
</developer>
<url type="homepage">https://github.com/phase1geo/minder/</url>
<url type="bugtracker">https://github.com/phase1geo/minder/issues/</url>
<custom>
<value key="x-appcenter-color-primary">#603461</value>
<value key="x-appcenter-color-primary-text">rgb(255, 255, 255)</value>
<value key="x-appcenter-suggested-price">10</value>
<value key="x-appcenter-stripe">pk_live_Uhb96elhovWNRGkq07m2FRO9008Ia8OtVa</value>
</custom>
<content_rating type="oars-1.1"/>
<releases>
<release version="2.0.3" date="2025-12-21">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Adding support for importing Mermaid mindmap files.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to Albano Battistella).</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спаисбо Albano Battistella).</li>
<li>Adding import and export examples in command-line help output.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue with placing root node on application open.</li>
<li>Fixed issue with Style widgets accidentally scrolling.</li>
<li>Fixed various issues with command-line import/export.</li>
</ul>
</description>
</release>
<release version="2.0.2" date="2025-12-17">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Changed Shift-F keyboard shortcut to toggle the node folding deeply rather than always unfold deeply.</li>
<li>Changed node menu from 'Fold Children' to 'Toggle Folding' submenu where one level or all levels can be selected.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed application crash caused by adding parent node between a root node and a main node.</li>
<li>Attempting to fix UI issue where dark mode is changed by the system, causing some icons to visually disappear.</li>
</ul>
</description>
</release>
<release version="2.0.1" date="2025-12-14">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Removed unnecessary OARS values from appdata.xml.</li>
<li>Allowed window height to be much smaller when sidebar is displayed.</li>
<li>Improved performance of selections when dragging selection box over nodes.</li>
<li>Removed theme value to prefer dark mode, using system setting in window always.</li>
<li>Increased default padding for root nodes to make it more visible.</li>
<li>Improved default position of root node when a new mindmap is created.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue with some style settings not taking immediate effect in the mindmap.</li>
<li>Fixed issue with sequence numbers being obfuscated when multiple nodes selected.</li>
<li>Fixed issue with autopan when dragging out selection box.</li>
<li>Fixed issue with alpha when selection box is dragged over a single node.</li>
<li>Fixed potential issue with releasing selection box causing node changes.</li>
<li>Fixed display of branch corner radius adjustment in styles sidebar.</li>
<li>Fixed issue where panning with middle button continued to pan after button released.</li>
</ul>
</description>
</release>
<release version="2.0.0" date="2025-12-07">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for node text alignment controls in Style sidebar</li>
<li>Added new brainstorming UI for quickly adding ideas without organizing them into the node tree</li>
<li>Added support for configuring shortcuts within preferences.</li>
<li>Added support for exporting as a Mermaid mindmap.</li>
<li>Added support for exporting as a WebP image file.</li>
<li>Added support for exporting most formats to the clipboard.</li>
<li>Added shortcut ability to close current tab.</li>
<li>Added support for node tagging.</li>
<li>Added support for style templates.</li>
<li>Added support for copying/pasting style.</li>
<li>Added support for adjust size of link and connection arrows in style sidebar.</li>
<li>Added support for multi-node selection drag-drop operations.</li>
<li>Added read-only support.</li>
<li>Added support for automatic mindmap panning when dragging nodes.</li>
<li>Added preference option to enable compact sidebar width (useful for Gnome environments).</li>
<li>Added preference option to control the default style settings used in new mindmaps (Minder default, last
used, or a saved style template).</li>
<li>Added preference option to control whether a new node style matches its sibling or parent node.</li>
<li>Added Swedish translation (thanks to Daniel Nylander).</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to Albano Battistella)</li>
<li>Updated Russian translation (thanks to Maksim Syomochkin).</li>
<li>Updated code base from Gtk3 to Gtk4.</li>
<li>Updated text editors from gtksourceview4 to gtksourceview5.</li>
<li>Updated granite to granite-7.</li>
<li>Changed .minder save format to contain mindmap, embedded images, etc. (IMPORTANT NOTES: .minder files
created with previous versions will load in Minder 2.0 but will be converted and saved in the new format
upon opening. New save format is not backward compatible with older versions of Minder).</li>
<li>Saving to the new save format only occurs when Control-S is used by the user or the application is closed
by the user. Reduced number of saves to disk during application usage dramatically.</li>
<li>Updated elementary OS Flatpak runtime version from 6 to 8.2.</li>
<li>Added support for creating Flathub manifests (Flathub flatpaks are now officially supported by the project; Gnome 49 SDK used).</li>
<li>Added more support for tree change animations.</li>
<li>Under the hood code improvements to improve code quality and maintenance issues.</li>
<li>Node trees with only two main branches can still be balanced in horizontal or vertical node layouts.</li>
<li>Moved random link colors switch from Map sidebar to preferences.</li>
<li>Changed automatic task enablement to only adding a node task when a new node is created. New sibling nodes will be enabled if the sibling node was enabled. New child nodes will be enabled if the parent was enabled.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Improved look of icons when dark mode is changed between light and dark.</li>
<li>Improved URL detection to detect URLs that do not contain a period.</li>
<li>Fixed issues with including node groups in copy and paste of node tree containing them.</li>
<li>Fixed issue with all nodes getting selected when a group is selected.</li>
<li>Fixed application crashes when right-clicking on tabs (thanks to Quaylyn Rimer).</li>
<li>Fixed application crashes when resizing nodes with images (thanks to Quaylyn Rimer).</li>
<li>Fixed application crash when adding a child to a folded node.</li>
<li>Fixed location of text cursor when text is selected.</li>
<li>Fixed issues with cutting and pasting or deletion of more than one selected nodes.</li>
<li>Eliminated unnecessary move undo operations.</li>
<li>Fixed issue with selecting a node with a connection (previously the connection was incorrectly selected).</li>
<li>Fixed issue where not was not reporting a resize correctly.</li>
<li>Fixed potential issue when connecting nodes.</li>
<li>Fixed issues with sequence numbers not updating correctly.</li>
<li>Fixed issue with undo-ing a root node deletion.</li>
<li>Fixed potential text selection issue when hitting backspace.</li>
<li>Fixed issues with the location of contextual menus when the mindmap zoom level is not 100%.</li>
<li>Fixed issues with handling potential errors during clipboard paste operation.</li>
<li>Fixed issues with clearing attachment indicator when the cursor leaves the mindmap canvas.</li>
<li>Fixed layout issues caused by tasks being enabled in some nodes.</li>
</ul>
</description>
</release>
<release version="1.17.0" date="2024-10-30">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for removing Markdown syntax highlighting in the note field.</li>
<li>Added support for moving a node to be a sibling of its parent (with Alt+direction-of-parent).</li>
<li>Added support for displaying child nodes as a sequence, including auto-numbering.</li>
<li>Added support for Shift-I keyboard shortcut to add an image to a node.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li xml:lang="pt">Tradução em Italiano atualizada (obrigado a @albanobattistella).</li>
<li>Updated German translation (thanks to Benjamin Weis).</li>
<li>Updated Flatpak platform from 7.2 to 8.</li>
<li>Adjusted blue color used in note field to improve readability in dark themes.</li>
<li>Regrouped node commands in shortcuts cheatsheet to reduce required window height.</li>
<li>Changed keyboard shortcut for moving child nodes of a node to be siblings with that node from Alt+direction-of-parent to Alt+direction-of-children.</li>
<li>Added tooltip to new info icon to Default Theme within preferences to improve user documentation on what this setting does.</li>
<li>Updated gtksourceview location in Flatpak manifest.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed memory leak issue when saving the document.</li>
<li>Fixed issue with inserting root nodes using the quick entry feature.</li>
<li>Fixed potential issue when creating a new tab.</li>
<li>Fixed issue with centering a node with the keyboard shortcut.</li>
<li>Fixed issue with pasting by replacement using the keyboard shortcut.</li>
<li>Fixed issues using up, down, left, right to navigate nodes when selected node is a root node.</li>
<li>Fixed issue with deleting the previous word when editing node text.</li>
<li>Fixed issue where application would crash when hovering over node note icon on systems that installed Discount version >= 3.0.</li>
<li>Fixed issue where Minder process could remain running after application was closed.</li>
<li>Fixed issue related to invoking Minder while application is running.</li>
<li>Fixed issue with installation of application icon in the wrong directory.</li>
<li>Fixed potential issue with tab handling on startup.</li>
</ul>
</description>
</release>
<release version="1.16.4" date="2024-04-07">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added ability to search group notes in search UI.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Removed executable permissions from SVG (thanks to @yangfl).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Removing node summary menu option when a single node is selected (unsupported feature).</li>
</ul>
</description>
</release>
<release version="1.16.3" date="2024-02-11">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added ability to use either Control key for keyboard commands.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li xml:lang="pt">Tradução em Italiano atualizada (obrigado a @albanobattistella).</li>
<li>Removed natural scrolling preference option and just using system setting.</li>
<li>Changed panning with Alt key when dragging on the canvas.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issues with panning when using Alt key or middle mouse button panning (canvas follows mouse cursor).</li>
</ul>
</description>
</release>
<release version="1.16.2" date="2024-01-15">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for Shift-L to change the color of any selected nodes.</li>
<li xml:lang="ru">Добавлена поддержка Shift+L для быстрой смены цвета выбранных узлов.</li>
<li>Added support for natural scrolling preference.</li>
<li xml:lang="ru">Добавлена настраиваемая поддержка естественной прокрутки.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Russian translation (thanks to Alexandre Prokoudine).</li>
<li xml:lang="ru">Обновлена русская локализация (Александр Прокудин)</li>
<li>Updated README.md to change the installation instructions for Arch-based distros to avoid issues with discount library.</li>
</ul>
</description>
<issues>
<issue url="https://github.com/phase1geo/minder/issues/595">TODO status not inherited by all child nodes</issue>
<issue url="https://github.com/phase1geo/minder/issues/598">Favorited stickers are not displayed in favorited section on application restart</issue>
<issue url="https://github.com/phase1geo/minder/issues/599">Missing linked node causes errors with tooltip display</issue>
</issues>
</release>
<release version="1.16.1" date="2024-01-10">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for Shift-Tab to unindent nodes in Quick Entry.</li>
<li xml:lang="ru">Добавлена поддержка Shift+Tab для удаления отступов в быстрой вставке.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobatistella).</li>
<li>Improved Quick Entry auto-formatting to reduce user errors.</li>
</ul>
</description>
<issues>
<issue url="https://github.com/phase1geo/minder/issues/591">Completion status not updated</issue>
<issue url="https://github.com/phase1geo/minder/issues/592">Crash when deleting nodes</issue>
<issue url="https://github.com/phase1geo/minder/issues/593">Crash when inserting nodes with Quick Entry</issue>
</issues>
</release>
<release version="1.16.0" date="2024-01-08">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for adding node links in node, connection or group notes.</li>
<li>Added support for providing custom stickers.</li>
<li xml:lang="ru">Добавлена поддержка пользовательских стикеров.</li>
<li>Added support for callouts that can be applied to nodes.</li>
<li xml:lang="ru">Добавлена поддержка выносок в узлах.</li>
<li>Added node alignment toolbar in map sidebar when manual layout mode is selected.</li>
<li>Added output scaling to PNG/JPEG export options.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobatistella).</li>
<li>Updated Revised Simplified Chinese translation (thanks to @aerowolf).</li>
<li>Updated German translation (thanks to Benjamin Weis).</li>
<li>Updated Russian translation (thanks to Alexandre Prokoudine).</li>
<li xml:lang="ru">Обновлена русская локализация (Александр Прокудин)</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed potential issues with custom themes.</li>
<li>Fixed tab state saving when tabs are closed.</li>
<li>Fixed contextual menu when connection text is editable.</li>
</ul>
</description>
<issues>
<issue url="https://github.com/phase1geo/minder/issues/575">Clicking on files in Minder Flatpak doesn't work</issue>
<issue url="https://github.com/phase1geo/minder/issues/583">Task node colors look bad</issue>
<issue url="https://github.com/phase1geo/minder/issues/587">Crashing while using Quick Entry Issue</issue>
<issue url="https://github.com/phase1geo/minder/issues/589">Crash when pasting into a blank document</issue>
</issues>
</release>
<release version="1.15.6" date="2023-08-25">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Adding auto-adjusting bottom margin in quick entry.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed application crash when root node contains a note/link and node fill style is enabled.</li>
<li>Fixed issue with unfolding all nodes.</li>
<li>Fixing middle mouse drag pan behavior.</li>
</ul>
</description>
</release>
<release version="1.15.5" date="2023-08-22">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Added app script subcommands for building/running flatpaks.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issues with Flatpak</li>
</ul>
</description>
</release>
<release version="1.15.4" date="2023-08-22">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li xml:lang="pt">Tradução em Italiano atualizada (obrigado a @albanobattistella).</li>
<li>Updated Russian translation (thanks to Alexandre Prokoudine).</li>
<li xml:lang="ru">Обновлена русская локализация (Александр Прокудин)</li>
<li>Adjusted codebase to compile on Fedora</li>
</ul>
</description>
</release>
<release version="1.15.3" date="2023-08-20">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added new --import command-line option for importing directly from command-line.</li>
<li xml:lang="ru">Добавлен новый ключ --import command-line для импорта прямо из командной строки.</li>
<li>Added support for importing Markdown.</li>
<li xml:lang="ru">Добавлен импорт Markdown.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Removed --format command-line option in favor of new --import and --export options.</li>
<li>Improved export of Markdown output.</li>
<li>Improved loading of Minder Markdown syntax highlighting to make this an application-only syntax (not user-wide).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed Markdown export issue with root nodes.</li>
<li>Fixed issue with inserting non-printable characters.</li>
<li>Fixed issues with cursor movement for RTL languages.</li>
<li>Fixed issue with using Control-W shortcut when only a single tab is shown.</li>
<li>Fixed potential issue with adding a new tab.</li>
<li>Fixed issues with tab naming of new, unchanged documents.</li>
<li>Fixed cursor/selection issue when the Delete key is used (includes application crash issue).</li>
<li>Fixed issue with Control-Up cursor selection shortcut.</li>
<li>Fixed issue with centering a node with Shift-C.</li>
<li xml:lang="ru">Исправлена ошибка центрирования узлов с помощью Shift+C.</li>
<li>Fixed several issues related to zoom/scaling.</li>
<li>Fixed location of input method entry field (thanks to @aeghn).</li>
</ul>
</description>
</release>
<release version="1.15.2" date="2023-05-20">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for embedding image path in Quick Entry.</li>
<li xml:lang="ru">Добавлено встраивание изображений через указание пути в быстрой вставке.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спасибо @albanobattistella)</li>
<li>Code cleanup</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issues with exported images including selection.</li>
<li>Fixed issue with importing OPML files (thanks to Ygor Mutti).</li>
<li>Fixed issue with undo/redo of Unicode characters.</li>
<li>Fixed issues with exporting to Outliner format.</li>
<li xml:lang="ru">Исправлены ошибки при экспорте в формат Outliner.</li>
</ul>
</description>
</release>
<release version="1.15.1" date="2023-04-25">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спасибо @albanobattistella)</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixing translation issues with Flatpak</li>
</ul>
</description>
</release>
<release version="1.15.0" date="2023-04-20">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added ability to change the size of the node while leaving the embedded image size unchanged.</li>
<li xml:lang="ru">Добавлена воможность поменять размер узлов без смены размера вложенного изображения.</li>
<li>Added tooltip to node resize handle.</li>
<li xml:lang="ru">Добавлена подсказка в регулятор смены размера узла.</li>
<li>Added Flatpak permission for home folder access by default (thanks to @SubhadeepJasu).</li>
<li xml:lang="ru">Добавлено разрешение Flatpak для доступа к домашнему пользовательскому каталогу по умолчанию (спасибо @SubhadeepJasu).</li>
<li>Added header font scaling in notes field.</li>
<li xml:lang="ru">Добавлено масштабирование заголовка шрифта в поле примечаний.</li>
<li>Added support for exporting a mindmap via the command-line.</li>
<li xml:lang="ru">Добавлен экспорт ментальных карт из командной строки.</li>
<li>Added support for importing via the command-line.</li>
<li xml:lang="ru">Добавлен импорт ментальных карт из командной строки.</li>
<li>Added ability to import a given filesystem as a mindmap.</li>
<li xml:lang="ru">Добавлен импорт указанной файловой системы как ментальной карты.</li>
<li>Added ability to export a mindmap as a filesystem.</li>
<li xml:lang="ru">Добавлен экспорт ментальной карты как файловой системы.</li>
<li>Added zh_CN translation (thanks to @potrans).</li>
<li xml:lang="ru">Добавлена китайская (zh_CN) локализация (спасибо @potrans).</li>
<li>Added ability to enable/disable UI animations via gsettings.</li>
<li xml:lang="ru">Добавлена возможность переключать анимацию интерфейса через gsettings.</li>
<li>Added ability to associate a note with a selected group.</li>
<li xml:lang="ru">Добавлена возможность ассоциировать примечание с выделенной группой узлов.</li>
<li>Added ability to copy and cut nodes via shortcuts when multiple nodes are selected.</li>
<li xml:lang="ru">Добавлена возможность копировать и вырезать в буфер обмена горячими клавишами, когда выделено несколько узлов.</li>
<li>Added ability to insert unicode characters in nodes, connections, and notes when a backslash character is entered.</li>
<li xml:lang="ru">Добавлена возможность вставлять символы Unicode в узлы, связи и примечания после ввода обратной косой черты ('\').</li>
<li>Added support to detect read-only mindmap files and handle them appropriately.</li>
<li xml:lang="ru">Добавлено распознавание и корректная обработка файлов ментальных карт, доступных только для чтения.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated German translation (thanks to @hztirf and @bewe)</li>
<li xml:lang="ru">Обновлена немецкая локализация (спасибо @hztirf и @bewe).</li>
<li>Updated Czech translation (thanks to @G020B)</li>
<li xml:lang="ru">Обновлена чешская локализация (спасибо @G020B).</li>
<li>Updated Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спасибо @albanobattistella)</li>
<li>Updated Russian translation (thanks to Alexandre Prokoudine)</li>
<li xml:lang="ru">Обновлена русская локализация (Александр Прокудин).</li>
<li>Updated Portugese translation (thanks to @AncientBlueFrog)</li>
<li xml:lang="ru">Обновлена португальская локализация (спасибо @AncientBlueFrog).</li>
<li>Updated Polish translation (thanks to @pyotr71)</li>
<li xml:lang="ru">Обновлена польская локализация (спасибо @pyotr71).</li>
<li>Updated Flatpak SDK from 6 to 6.1.</li>
<li xml:lang="ru">Flatpak SDK обновлен с версии 6 до 6.1.</li>
<li>Improved sticker search (now case insensitive and uses fuzzy search -- thanks to @sibevin)</li>
<li>Changed node borders to use node padding to control shape.</li>
<li>Changed note popup to display rendered text instead of literal text.</li>
<li>Updated headerbar icons for Gnome environments.</li>
<li>Mindmap root node text is now used for default filename when initially saving mindmap.</li>
<li>Changed image UI in sidebar.</li>
<li>Removed connection sidebar button bar.</li>
<li>Improved Zoom to Selected Node functionality with name change (to better reflect what this feature does) and keyboard shortcut.</li>
<li>Enhanced OrgMode exporter (includes support for indent mode and improved output).</li>
<li>Enhanced image exporting features.</li>
<li>Minder files no longer contain precise positioning information so eliminate file changes on pan and zoom operations.</li>
<li>Removed Control-E (export) from shortcuts documentation.</li>
<li>Improved autosave frequency.</li>
<li xml:lang="ru">Оптимизирована частота автосохранения.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issues with connections being displayed when ancestor node is folded.</li>
<li>Fixed issue with loading an older mindmap.</li>
<li>Fixed syntax highlighting in note fields.</li>
<li>Fixed Edit Text node menu functionality.</li>
<li>Fixed issue with node fonts not following the style inspector.</li>
<li>Fixed application crashes when exporting to Freemind, Freeplane, XMind8 and Yed formats.</li>
<li>Fixed issue with saving the state of export switch values.</li>
<li>Fixed application crash when an image is dropped onto a blank portion of the mindmap canvas.</li>
<li>Fixed issues with URL link and text colors not changing when theme is changed.</li>
<li>Fixed application crash when grouping root nodes.</li>
<li>Fixed issue causing app script to generate a warning message.</li>
<li>Fixed potential issue which caused notes to get deleted when selecting nodes, connections or groups.</li>
<li>Fixed application crash when saving an unsaved document with no root node.</li>
<li>Fixed issues with capitalized keyboard shortcuts.</li>
<li>Fixed issue with loading file via the command-line.</li>
</ul>
</description>
</release>
<release version="1.14.0" date="2022-01-14">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for shallow (one-level folding)</li>
<li>Added import/export support for XMind version 2021.</li>
<li xml:lang="ru">Добавлен импорт и экспорт файлов XMind 2021.</li>
<li>Added support for external mind-map node linking.</li>
<li>Added node link tooltips.</li>
<li>Added support for overriding the color of a root node.</li>
<li>Added support for Markdown strikethrough syntax.</li>
<li xml:lang="ru">Добавлена поддержка зачеркивания в синтаксисе Markdown.</li>
<li>Added support for Control-Backspace/Delete to delete the previous/next word when editing node/connection titles.</li>
<li>Added tooltip to node fill switch in style inspector.</li>
<li>Added keyboard shortcuts for adding and removing URL links from node text.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updates to Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li>Updates to German translation (thanks to Hannes Fritz)</li>
<li xml:lang="ru">Обновлена немецкая локализация (спасибо Hannes Fritz).</li>
<li>Improved accuracy of the list of translatable files.</li>
<li>Removed ability to use keyboard shortcuts when a mouse button is pressed.</li>
<li>Removed Accounts permissions from Flatpak manifest as it is no longer needed.</li>
<li>Improved adding URL link UI to automatically add URL from clipboard if one exists.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed layout issues when pressing keys while animations are in process.</li>
<li>Fixed location of text size help information in the appearances preferences dialog.</li>
<li>Fixed UX issues when the Hide Connections switch is enabled.</li>
<li>Fixed issue with pasting nodes when a node is not selected in a map.</li>
</ul>
</description>
</release>
<release version="1.13.1" date="2021-08-12">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спасибо @albanobattistella)</li>
<li>Updated screenshots for elementary OS 6.</li>
<li xml:lang="ru">Скриншоты обновлены для elementary OS 6.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed command support for non-English keyboard layouts.</li>
</ul>
</description>
</release>
<release version="1.13.0" date="2021-08-07">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for toggling the task indicator when multiple nodes are selected.</li>
<li>Added German translation (thanks to Peter Sonntaga).</li>
<li xml:lang="ru">Добавлена немецкая локализация (спасибо Peter Sonntaga).</li>
<li>Added zoom amount in the zoom button tooltip.</li>
<li>Added support for y command to create/remove node links when multiple nodes are selected.</li>
<li>Added support for x command to create connections when two nodes are selected.</li>
<li>Added support for system dark mode setting.</li>
<li xml:lang="ru">Добавлена поддержка системной темной темы.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li xml:lang="pt">Tradução em Italiano atualizada (obrigado a @albanobattistella).</li>
<li>Updated Russian translation (thanks to Alexandre Prokoudine).</li>
<li xml:lang="ru">Обновлена русская локализация (Александр Прокудин)</li>
<li>Improved task indicator sizes in leaf nodes.</li>
<li>Changed fold indicator from a circle to a square.</li>
<li>Removed zoom in/out menu items and made them buttons instead.</li>
<li>Node/connection is now automatically selected on right click if it is not selected.</li>
<li>Moved node change contextual menu items into their own submenu.</li>
<li>Changed forward slash command to Control-A for selecting all text.</li>
<li>Changed backward slash command to Control-Shift-A for deselecting all text.</li>
<li>Changed F1 command to Control-? for displaying keyboard shortcuts.</li>
<li>Updated keyboard shortcuts cheatsheet.</li>
<li>Updated code base for elementary OS 6 (gtksourceview-4, libhandy-1, Flatpak support, etc.)</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue where sticker tooltips were not displaying translated names.</li>
<li>Fixed node resizing issues when system font is changed in system settings.</li>
<li>Fixed Flatpak issue to allow dark mode system settings to affect application.</li>
<li>Fixed layout issues when root node is resized.</li>
<li>Fixed squared and rounded link display for nodes attached to root node.</li>
<li>Fixed cursor location when End key used.</li>
<li>Fixed potential node identification generation issue that can lead to bad connections on load.</li>
<li>Fixed location of node stickers within the node to improve look.</li>
<li>Fixed issues copying and pasting a single selected node.</li>
</ul>
</description>
</release>
<release version="1.12.5" date="2021-06-14">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спасибо @albanobattistella)</li>
<li>Updated Russian translation (thanks to Alexandre Prokoudine)</li>
<li xml:lang="ru">Обновлена русская локализация (Александр Прокудин).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Added missing translatable strings in various parts of the UI.</li>
<li>Fixed URL parser issues.</li>
<li>Fixed application crash when forward deleting non-Latin text.</li>
</ul>
</description>
</release>
<release version="1.12.4" date="2021-06-02">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Small optimization to Meson build procedure.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed compile and run issue for distros lacking full granite support.</li>
<li>Fixed issue with displaying correct themes when themes are hidden that don't match system theme.</li>
<li>Added missing translatable strings.</li>
<li xml:lang="ru">Добавлены забытые переводимые сообщения.</li>
</ul>
</description>
</release>
<release version="1.12.3" date="2021-05-22">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added rounded branching style.</li>
<li>Added support for drawing clickable folding areas.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella)</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спасибо @albanobattistella)</li>
<li>Changed shape of the unfold indicator.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed application crash on Manjaro.</li>
<li>Fixed link drawing order regression.</li>
<li>Removed error output when XML storage files do not exist.</li>
<li>Fixed parsing issue with filepaths starting with file://.</li>
</ul>
</description>
</release>
<release version="1.12.2" date="2021-04-23">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for Control-Home/End to move the cursor to the beginning/end of the text.</li>
<li>Added support for folded children count tooltip.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue where selected text at beginning of text would not be deleted when the Backspace key was used.</li>
<li>Fixed issue where selected text at end of text would not be deleted when the Delete key was used.</li>
<li>Fixed selection issues after moving the cursor by a word.</li>
<li>Fixed Home/End keys to move the cursor to the beginning/end of the current line.</li>
<li>Fixed node size and layout when system text size changes between Minder sessions.</li>
<li>Fixed issue with application crashing when older Minder file is loaded that used a custom theme.</li>
<li>Fixed issue with node sidebar image not being properly updated when sidebar is hidden.</li>
<li>Fixed square branch link drawing when some links have arrows drawn in them.</li>
<li>Fixed issue with the background border being drawn around link arrows in contexts where it should not.</li>
</ul>
</description>
</release>
<release version="1.12.1" date="2021-04-15">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added Basque translation (thanks to @alexgabi)</li>
<li xml:lang="ru">Добавлен перевод на баскский (спасибо @alexgabi)</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated to Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (@albanobattistella).</li>
<li>Updated to Brazilian Portugese translation (thanks to Felipe Simoes).</li>
<li xml:lang="ru">Обновлена бразильская португальская локализация (Felipe Simoes).</li>
<li>Opening a file will automatically close an existing unsaved, unchanged tab.</li>
<li>Changed color of connection drag handles to yellow.</li>
<li>Making it easier to grab connection drag handle when it is close to connection handles.</li>
<li>Reducing auto-saves when editing node text.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Removed help information from PNG export panel.</li>
<li>Fixed issue with exporting images with connections/stickers which could get cropped out.</li>
<li>Fixed issue with empty tab when file cannot be loaded.</li>
<li>Fixed issues with application crashes on startup in non-elementary environments.</li>
</ul>
</description>
</release>
<release version="1.12.0" date="2021-02-11">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added subscript and superscript support to Markdown parser.</li>
<li xml:lang="ru">В парсер Markdown добавлена поддержка верхнего и нижнего индексов.</li>
<li>Added support for switching tabs with Control-Tab and Shift-Control-Tab.</li>
<li>Added support for remembering last used open/save dialog directories.</li>
<li>Added support for Alt-Left/Right/Up/Down keyboard shortcuts to rearrange sibling nodes.</li>
<li>Added support for searching all tabs (thanks to @Messius58).</li>
<li>Added about window for non-elementary builds.</li>
<li>Added ability to move child nodes to parent via Alt+direction.</li>
<li xml:lang="ru">Добавлена возможность перемещать узлы-потомки в родительские через Alt+направление.</li>
<li>Added support for including images in Markdown export.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Added installation instructions to README.md for Debian (thanks to Robert Hubinak).</li>
<li>Replaced export UI with a new, improved UI with support for export options.</li>
<li>Moved add node menu items to a submenu.</li>
<li>Improved focus mode behavior.</li>
<li xml:lang="ru">Улучшенное поведение режима фокусировки.</li>
<li>Changed property header button to a toggle button and clarified the tooltip.</li>
<li>Changed keyboard shortcut to open sidebar from Control-| to F9.</li>
<li>Changed non-symbolic header bar icons to symbolic icons for non-elementary OS environments.</li>
<li>Improved link drawing algorithm to make link connections easier to see.</li>
<li>Changed Link Color in node inspector to Color to reflect the colors use.</li>
<li>Improved task button drawing.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue where tab background colors were incorrect when changing tabs.</li>
<li>Fixed issue with getting valac pathname from Meson (thanks to paluszak).</li>
<li>Added desktop update call to post_install.py script.</li>
<li>Fixed issue with sidebar sizing.</li>
<li>Fixed issue with remembering the sticker sidebar panel was last opened when restarting.</li>
<li>Fixed layout issues when unfolding a parent with folded children.</li>
<li>Fixed issue with hiding node groups when the main node in group is folded.</li>
<li>Fixed issue with displaying link color in sidebar when root node is selected.</li>
<li>Fixed alpha value used for drawing node grouping when encompassed nodes are not in focus when focus mode is enabled.</li>
<li>Fixed issue with saving manually added embedded links in node text.</li>
<li>Fixed undo/redo text editing support.</li>
<li>Updated keyboard shortcuts in help window.</li>
<li>Fixed issue of tab content flashing when application opens with multiple tabs.</li>
<li>Fixed error when closing a tab.</li>
<li>Fixed issue with undo'ing text modifications.</li>
<li>Fixed issues with style inspector scale widgets not properly reflecting their current value.</li>
<li>Fixed various issues with node layout.</li>
<li>Fixed issue with undo'ing the deletion of a single node.</li>
</ul>
</description>
</release>
<release version="1.11.3" date="2020-10-16">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to Albano Battistella).</li>
<li xml:lang="ru">Обновлен перевод на итальянский (спаисбо Albano Battistella).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed application crash issues due to using custom themes.</li>
<li>Added missing theme colors in custom theme pane.</li>
<li>Fixed issues with application crash when editing a root node.</li>
<li>Fixed issue with filepath parser highlighting normal text that contains slash characters.</li>
</ul>
</description>
</release>
<release version="1.11.1" date="2020-09-25">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added Shift-e keyboard shortcut to edit note text for nodes and connections.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li xml:lang="pt">Tradução em Italiano atualizada (obrigado a @albanobattistella).</li>
<li>Improved automatic layout of node trees when adjacent tree sizes change.</li>
<li xml:lang="ru">Улучшено автоматическое перепозиционирование деревьев узлов при изменениях в соседнем дереве.</li>
<li>Changed node and connection contextual menus to show (Edit Note) instead of (Add Note) and (Remove Note) options.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixing compilation issues.</li>
<li>Fixing behavior of 't' command when node is selected.</li>
<li>Fixing support for undo/redo of root node insertion.</li>
</ul>
</description>
</release>
<release version="1.11.0" date="2020-09-16">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added Preferences dialog.</li>
<li xml:lang="ru">Добавлен диалог настройки программы.</li>
<li>Added Portuguese translation (thanks to Andre Barata).</li>
<li xml:lang="ru">Добавлен перевод на португальский (спасибо Andre Barata).</li>
<li>Added keyboard shortcut (Menu or Shift-F10) to display contextual menus in mindmap.</li>
<li>Added default theme preference option.</li>
<li>Added preference option to select map items on cursor hover.</li>
<li>Added Shift+Home/End support for selecting all text from current cursor to beginning/end of node or connection titles when editing.</li>
<li>Added support for PlantUML import/export.</li>
<li>Added support for displaying notifications on completion of export operation.</li>
<li>Added keyboard shortcuts for displaying tabs in sidebar.</li>
<li>Added support for making filepath URIs clickable in nodes, connections and notes (displays the files in the file manager application).</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>When nodes are copied to clipboard, pasting them as text in an external application will be displayed as in text export format.</li>
<li>When text is copied to the clipboard from an external application, pasting as nodes in Minder will parse in text import format.</li>
<li>Improved look of menu accelerators and added missing accelerators.</li>
<li>Changed 't' command to transition task status from disabled to enabled to done and back to disabled.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issues with undo/redo of node/connection title changes.</li>
<li>Fixed issue with undoing a connection add operation.</li>
<li>Fixed issue with connection titles being clear when connection is moved to a different node.</li>
<li>Fixed UI issue with changing window width by dragging right side of window when sidebar is hidden.</li>
<li>Fixed issues with inputting special characters with US international keyboard.</li>
<li>Fixed issue where images in resized nodes were not displaying properly on application restart.</li>
<li>Fixed issue where copying a filename in a file manager and pasting in Minder would attempt to past the icon image instead of the filename when editing text.</li>
</ul>
</description>
</release>
<release version="1.10.0" date="2020-08-27">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added Markdown highlighting support to node titles.</li>
<li xml:lang="pt">Adicionado o suporte para destaque em Markdown para os títulos de nós.</li>
<li>Added ability to set the maximum node size in style inspector.</li>
<li xml:lang="pt">Adicionada a possibilidade de definir um tamanho máximo ao nó no inspetor de estilo.</li>
<li>Added ability to set the maximum connection title size in style inspector.</li>
<li xml:lang="pt">Adicionada a possibilidade de definir um tamanho máximo ao título de conexão no inspetor de estilo.</li>
<li>Added ability to set text field font size via gsetting.</li>
<li xml:lang="pt">Adicionada a possibilidade de definir o tamanho da fonte num campo de texto via o gsetting.</li>
<li>Added ability to set branch margin in the style inspector.</li>
<li xml:lang="pt">Adicionada a possibilidade de definir a margem da ramificação no inspetor de estilo.</li>
<li>Added ability to add stickers to nodes, connections and anywhere else in the mind map.</li>
<li xml:lang="pt">Adicionada a possibilidade de adicionar autocolantes a nós, conexões e em qualquer lado dentro do mapa de mente.</li>
<li>Added ability to visually create and display node groupings.</li>
<li xml:lang="pt">Adicionada a possibilidade de criar visualmente e exibir grupos de nós.</li>
<li>Added import/export support for XMind.</li>
<li xml:lang="ru">Добавлен импорт и экспорт файлов XMind.</li>
<li xml:lang="pt">Suporte adicionado para importar/exportar ao XMind.</li>
<li>Added support for specifying if connection titles should be added immediately after creating a connection.</li>
<li xml:lang="pt">Suporte adicionado para especificar se os títulos de conexões devem ser adicionados imediatamente depois de criar uma conexão.</li>
<li>Added support for middle-click-and-drag to pan the canvas (Alt + mouse movement still supported).</li>
<li xml:lang="pt">Suporte adicionado para o clique no botão do meio do rato + arrastar para mover a tela (Alt + movimento do rato ainda é suportado).</li>
<li>Added keyboard shortcut for the Zoom to Fit option (Control-1).</li>
<li xml:lang="pt">Atalho de teclado adicionado para a opção Ampliar até preencher (Control-1).</li>
<li>Added new Mouse Events shortcut panel in shortcut cheatsheet.</li>
<li xml:lang="pt">Painel de atalhos de eventos do rato adicionado na cábula de atalhos.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Removed the sidebar style affects selector and using the status of the current selection instead.</li>
<li xml:lang="pt">Estilo da barra lateral que afeta o seletor removido, passa a usar o estado corrente da seleção atual.</li>
<li>Lowered the minimum node margin from 5 pixels to 1 pixel to allow for greater node density.</li>
<li xml:lang="pt">Margem mínima do nó reduzida de 5 pixeis para 1 pixel para permitir uma maior densidade de nós.</li>
<li>Removed connection title editing field in sidebar for better UI consistency.</li>
<li xml:lang="pt">Campo de edição do título da conexão removida da barra lateral para uma melhor consistência da interface do utilizador.</li>
<li>Removed bold and italicized fonts from the style inspector font selectors.</li>
<li xml:lang="pt">Fontes a negrito e em itálico removidas do inspetor de fontes no selecionador de fontes.</li>
<li>If connection title is empty, the title will be automatically removed.</li>
<li xml:lang="pt">Se o título da conexão estiver vazio, o título é removido automaticamente.</li>
<li>Updated application icon (thanks to Fatih20).</li>
<li xml:lang="ru">Обновлена иконка приложения (спасибо Fatih20).</li>
<li xml:lang="pt">Ícone da aplicação atualizado (obrigado a Fatih20).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue with importing Freemind notes.</li>
<li xml:lang="pt">Problema ao importar notas Freemind corrigido.</li>
<li>Fixed display of right-to-left text within nodes.</li>
<li xml:lang="pt">Corrigida a exibição de texto da direita para a esquerda no interior de nós.</li>
<li>Fixed issues with loading a .minder file that contains errant information.</li>
<li xml:lang="pt">Problemas com o carregamento de ficheiros .minder que contenham informação errada corrigidos.</li>
<li>Fixed issues with the layout of connection titles.</li>
<li xml:lang="pt">Problemas com o layout de títulos de conexão corrigidos.</li>
<li>Fixed input method support when editing connection titles.</li>
<li xml:lang="pt">Correção do suporte para o método de entrada quando editar títulos de conexão.</li>
<li>Fixed position of fold indicator when tree layout is Upwards.</li>
<li xml:lang="pt">Correção da posição do indicador de dobra quando o layout da árvore estiver para cima.</li>
<li>Fixed node display issue when a node link is clicked to a node that is folded.</li>
<li xml:lang="pt">Correção do problema de exibição de nós ao clicar numa ligação de um nó que por sua vez está dobrado.</li>
<li>Fixed error when connection title is double clicked when no text is present.</li>
<li xml:lang="pt">Correção de um erro quando o título da conexão é clicado duas vezes quando não está presente nenhum texto.</li>
<li>Fixed issue with opening the same document twice (only one tab will now exist per file).</li>
<li xml:lang="pt">Correção de um problema ao abrir o mesmo documento duas vezes (só vai existir agora uma guia por ficheiro).</li>
<li>Fixed Shift-Control-s keyboard shortcut to display the 'Save As' dialog instead of the 'Open' dialog.</li>
<li xml:lang="pt">Correção do atalho de teclado Shift-Control-s que mostra agora o dialogo "Gravar Como" em vez de o dialogo "Abrir".</li>
<li>Fixed issue that allows you to click on or drag onto a hidden node.</li>
<li xml:lang="pt">Corrigido um problema em que era permitido clicar ou arrastar uma nota escondida.</li>
</ul>
</description>
</release>
<release version="1.9.2" date="2020-08-07">
<description>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue with setting cursor position with mouse when zoom factor is not 100 percent.</li>
<li xml:lang="pt">Corrigido um problema com a configuração da posição do cursor com o rato quando o fator de Ampliação não é 100 por cento.</li>
<li>Fixed issue with reading in Minder files that exceed the XML parser size limitations.</li>
<li xml:lang="pt">Corrigido um problema com a leitura de ficheiros de Minder que excediam as limitações do tamanho do analisador de XML.</li>
</ul>
</description>
</release>
<release version="1.9.1" date="2020-07-12">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated Italian translation (thanks to @albanobattistella).</li>
<li xml:lang="ru">Обновлена итальянская локализация (спасибо @albanobattistella).</li>
<li xml:lang="pt">Tradução em Italiano atualizada (obrigado a @albanobattistella).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue with setting cursor position with mouse when zoom factor is not 100 percent.</li>
<li xml:lang="pt">Corrigido um problema com a configuração da posição do cursor com o rato quando o fator de Ampliação não é 100 por cento.</li>
<li>Fixed issue with reading in Minder files that exceed the XML parser size limitations.</li>
<li xml:lang="pt">Corrigido um problema com a leitura de ficheiros de Minder que excediam as limitações do tamanho do analisador de XML.</li>
</ul>
</description>
</release>
<release version="1.9.0" date="2020-06-26">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for selecting nodes by dragging out a selection box.</li>
<li xml:lang="pt">Suporte adicionado para selecionar nós ao arrastar uma caixa de seleção.</li>
<li>Added ability to configure the color used in connection titles.</li>
<li xml:lang="ru">Добавлена возможность настроить цвет в подписях к соединительным линиям.</li>
<li xml:lang="pt">Adicionada a possibilidade de configurar a cor usada nos títulos de conexão.</li>
<li>Added Italian translation (thanks to albanobattistella on GitHub).</li>
<li xml:lang="ru">Добавлена итальянская локализация (спасибо albanobattistella на GitHub).</li>
<li xml:lang="pt">Tradução em Italiano adicionada (obrigado a albanobattistella no GitHub).</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Refined and pixel fitted the application icon (thanks to Fatih20 on GitHub).</li>
<li xml:lang="pt">Ícone da aplicação mais refinado e com pixeis ajustados (obrigado a Fatih20 no GitHub).</li>
<li>Changed panning with mouse from left-click with motion to Alt with motion.</li>
<li xml:lang="pt">Movimento com o rato alterado, de clique no botão esquerdo com movimento para Alt com movimento.</li>
<li>Changed select parent to work with multiple selected nodes.</li>
<li xml:lang="pt">Alteração do pai selecionado para funcionar com múltiplos nós selecionados.</li>
<li>Updated keyboard shortcuts cheatsheet for task commands.</li>
<li xml:lang="pt">Cábula de atalhos de teclado atualizada para comandos de tarefa.</li>
<li>Updated Spanish translation (thanks to febrezo on GitHub).</li>
<li xml:lang="ru">Обновлена испанская локализация (febrezo на GutHub).</li>
<li xml:lang="pt">Tradução em Espanhol atualizada (obrigado a febrezo no GitHub).</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issues with changing connection styles.</li>
<li xml:lang="pt">Correção de problemas ao alterar os estilos de conexões.</li>
<li>Fixed application crashes associated with changing layout to a balanceable layout with animations enabled.</li>
<li xml:lang="pt">Correção de falhas da aplicação associadas à alteração do layout para um layout equilibrável com animações ativadas.</li>
<li>Fixed display of cursor when it is over a clickable feature in the mind map.</li>
<li xml:lang="pt">Corrigida a exibição do cursor do rato quando esta está por cima de um funcionalidade que é clicável no mapa da mente.</li>
<li>Fixed issues with creating custom themes.</li>
<li xml:lang="pt">Problemas corrigidos com a criação de temas personalizáveis.</li>
<li>Fixed cursor in note editor when Control key is held over a URL link.</li>
<li xml:lang="pt">Correção do cursor do rato no editor de nota quando a tecla Ctrl é pressionada numa Ligação URL.</li>
<li>Fixed meson.build issue when comparing valac version.</li>
<li xml:lang="pt">Correção de um problema com o meson.build ao comparar a versão do valac.</li>
<li>Fixed connection colors in dark themes to help them be more visible.</li>
<li xml:lang="pt">Correção de cores de conexão no tema escuro para ajudar a torna-las mais visíveis.</li>
<li>Fixed issue where connection colors don't follow theme if they have not been manually changed.</li>
<li xml:lang="pt">Corrigido um problema em que as cores de conexão não seguiam o tema se estas não tivessem sido alteradas manualmente.</li>
<li>Fixed application crash when animation is disabled, a node is moved, animation is enabled and a node is moved.</li>
<li xml:lang="pt">Correção de uma falha da aplicação quando as animações são desativadas, um nó é movido, animação está ativada e um nó é movido.</li>
<li>Fixed various issues with quick entry.</li>
<li xml:lang="pt">Correção de vários problemas com a entrada rápida.</li>
<li>Fixed ability to open one or more files from the command-line or from a file browser.</li>
<li xml:lang="pt">Corrigida a possibilidade de abrir um ou mais ficheiros da linha de comandos ou de um explorador de ficheiros.</li>
<li>Fixed issues with connection coloring.</li>
<li xml:lang="pt">Problemas corrigidos com a coloração de conexões.</li>
<li>Fixed issue with pasting UTF8 strings from clipboard.</li>
<li xml:lang="pt">Corrigido um problema ao colar strings UTF8 da área de transferência.</li>
</ul>
</description>
</release>
<release version="1.8.0" date="2020-05-17">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for pasting an image or text as a new node.</li>
<li xml:lang="pt">Suporte adicionado para colar uma imagem ou texto como um nó novo.</li>
<li>Added support for pasting an image or text, replacing the current node content.</li>
<li xml:lang="pt">Suporte adicionado para colar uma imagem ou texto, substituindo o conteúdo do nó atual.</li>
<li>Added support for pasting text, replacing the current connection content.</li>
<li xml:lang="pt">Suporte adicionado para colar texto, substituindo o conteúdo da conexão atual.</li>
<li>Added task support to Outliner import/export.</li>
<li xml:lang="ru">Добавлена поддержка задач при импорте/экспорте файлов Outliner.</li>
<li xml:lang="pt">Suporte de tarefa adicionado para o importar/exportar do Outliner.</li>
<li>Added keyboard shortcut (Control-E) to display export interface.</li>
<li xml:lang="pt">Atalho de teclado (Control-E) adicionado para exibir a interface de exportar.</li>
<li>Added support for creating a new root node hitting the Return key when no node is selected.</li>
<li xml:lang="pt">Suporte adicionado para criar um novo nó de raiz ao pressionar a tecla Return quando não estiver nenhum nó selecionado.</li>
<li>Added ability to add a new root node via the contextual menu when no node is selected.</li>
<li xml:lang="pt">Adicionada a possibilidade de adicionar um novo nó de raiz através do menu contextual quando não estiver nenhum nó selecionado.</li>
<li>Added ability to launch quick entry dialog via the contextual menu when no node is selected.</li>
<li xml:lang="pt">Adicionada a possibilidade de abrir o dialogo de entrada rápida através do menu contextual quando não estiver nenhum nó selecionado.</li>
<li>Added node alignment support for manual node layouts.</li>
<li xml:lang="pt">Suporte adicionado para o alinhamento de nós para layouts manuais de nós.</li>
<li>Added ability to create a connected root node.</li>
<li xml:lang="pt">Adicionada a possibilidade de criar um nó raiz conectado.</li>
<li>Added ability to replace/edit nodes via the Quick Entry feature.</li>
<li xml:lang="ru">Добавлена возможность заменять и изменять узлы через функцию быстрой вставки.</li>
<li xml:lang="pt">Adicionada a possibilidade de substituir/editar nós através da funcionalidade Entrada Rápida.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated image editor dialog button bar to include support for clipboard operations.</li>
<li xml:lang="pt">Barra do botão de dialogo do editor de imagem atualizado para incluir suporte para operações da área de transferência.</li>
<li>Improved display of buttons in image area of the node inspector sidebar.</li>
<li xml:lang="pt">Melhorada a exibição de botões na área de imagem da barra do inspetor de nós.</li>
<li>Updated keyboard shortcut cheatsheet.</li>
<li xml:lang="pt">Cábula de atalhos de teclado atualizada.</li>
<li>Changed quick text entry keyboard shortcut from Control-E to Control-Shift-E.</li>
<li xml:lang="pt">Atalho de teclado alterado para entrada rápida de texto de Ctrl-E para Ctrl-Shift-E.</li>
<li>Changed the paste text in contextual menu to indicate what will be pasted.</li>
<li xml:lang="pt">Alteração do texto copiado no menu de contexto para indicar o que vai ser colado.</li>
<li>Updated Outliner import/export support for tasks.</li>
<li xml:lang="pt">O Importar/Exportar do Outliner foi atualizado para suportar tarefas.</li>
<li>Added tooltip and changed cursor when cursor is over a link and the Control key is held down.</li>
<li xml:lang="pt">Ferramenta de dicas adicionado e o cursor do rato foi alterado para quando este se sobrepor a uma ligação e a tecla Ctrl estiver pressionada.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Removed empty Outliner rows from being added when Outliner file is imported.</li>
<li xml:lang="pt">Filas vazias do Outline removidas para não serem adicionadas quando um ficheiro Outliner for importado.</li>
<li>Fixed loss of selection when shift key is held down and the background is clicked.</li>
<li xml:lang="pt">Perca de seleção corrigida quando a tecla shift é pressionada e o fundo é clicado.</li>
<li>Added themed background color to exported PDF format.</li>
<li xml:lang="pt">Cor de fundo do tema adicionada ao formato exportado PDF.</li>
<li>Fixed exports to allow existing files to be overwritten.</li>
<li xml:lang="pt">Correção da exportação de ficheiros para permitir que ficheiros existentes sejam substituídos.</li>
<li>Fixed Org-Mode export syntax errors.</li>
<li xml:lang="pt">Correção de erros de sintaxe para exportações em Modo Org.</li>
</ul>
</description>
</release>
<release version="1.7.3" date="2020-04-20">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for using input methods.</li>
<li xml:lang="pt">Suporte adicionado para usar métodos de entrada.</li>
<li>Added Dutch translation (thanks to Heimen Stoffels).</li>
<li xml:lang="ru">Добавлен перевод на нидерландский (спасибо Heimen Stoffels).</li>
<li xml:lang="pt">Tradução em Holandês adicionada (obrigado a Heimen Stoffels).</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated README.md to indicate which version of valac should be used if building from source.</li>
<li xml:lang="pt">README.md atualizado para indicar qual a versão do valac que deve ser usada s construir a partir da fonte.</li>
<li>Changed unnamed default filename to use translated value.</li>
<li xml:lang="pt">Alteração do nome do ficheiro padrão sem nome para usar o valor traduzido.</li>
<li>Updated French translations (thanks to Nathan Bonnemains).</li>
<li xml:lang="pt">Tradução em Francês atualizada (obrigado a Nathan Bonnemains).</li>
<li>Changed tab colors to match current document background.</li>
<li xml:lang="pt">Alteração das cores das guias para combinar com o fundo do documento atual.</li>
<li>Adjusted dark theme to help with current tab contrast.</li>
<li xml:lang="pt">Tema escuro ajustado para ajudar com o contraste da guia atual.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue with New Document plank command to load application data before opening new tab.</li>
<li xml:lang="pt">Correção de um problema com o comando plank do Novo Documento para carregar os dados da aplicação antes de abrir uma nova guia.</li>
<li>Fixed build issues with compiling libarchive code using newer versions of libarchive and valac.</li>
<li xml:lang="pt">Correção de problemas de compilação com a compilação de código libarchive ao usar novas versões do libarchive e valac.</li>
<li>Fixed issues with translating shortcut cheetsheat strings.</li>
<li xml:lang="pt">Correção de problemas com a tradução de strings de atalhos na cábula.</li>
<li>Fixed issue with exporting images when manual layout mode is selected.</li>
<li xml:lang="pt">Correção de um problema ao exportar imagens quando o modo de layout manual está selecionado.</li>
</ul>
</description>
</release>
<release version="1.7.2" date="2020-03-26">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for importing/exporting Outliner files (new app in AppCenter!).</li>
<li xml:lang="pt">Suporte adicionado para importar/exportar ficheiros Outliner (nova aplicação no Centro de Aplicações!).</li>
<li xml:lang="fr">Ajout de la prise en charge de l'importation/exportation au format Outliner (nouvelle application dans le Centre d'Applications !).</li>
<li>Added map inspector switch to enable/disable automatic rotation of main branch link color selection.</li>
<li xml:lang="pt">Interruptor para o Inspetor de mapa adicionado para ativar/desativar a rotação automática da seleção de cor da ligação do ramo principal.</li>
<li xml:lang="fr">Ajout d'un inspecteur de carte pour activer/désactiver la rotation automatique de la couleur de sélection du lien de la branche principale.</li>
<li>Added ability to set all selected nodes to a specific color.</li>
<li xml:lang="pt">Adicionada a possibilidade de definir todos os nós selecionados para uma cor específica.</li>
<li xml:lang="fr">Ajout de la possibilité de définir une couleur spécifique pour tous les nœuds sélectionnés.</li>
<li>Added ability to set all selected nodes to a randomly selected link color.</li>
<li xml:lang="pt">Adicionada a possibilidade de definir todos os nós selecionados para uma cor de ligação aleatória.</li>
<li xml:lang="fr">Ajout de la possibilité de définir une couleur de lien sélectionné aléatoire pour tous les nœuds sélectionnés</li>
<li>Added ability to allow descendant nodes to have different link colors than ancestor nodes.</li>
<li xml:lang="pt">Adicionada a possibilidade de permitir que nós descendentes tenham cores de ligação diferentes dos nós ancestrais.</li>
<li xml:lang="fr">Ajout de la possibilité aux nœuds enfants d'avoir une couleur de lien différente des nœuds parents.</li>
<li>Added ability to cause a descendant node with a different color than its parent to re-use the parent color.</li>
<li xml:lang="pt">Adicionada a possibilidade de fazer com que um nó descendente com uma cor diferente de seu pai reutilize a cor do mesmo.</li>
<li xml:lang="fr">Ajout de la possibilité de créer un nœud enfant avec une couleur diffénte de son parent pour réutiliser la couleur du parent.</li>
<li>Added ability to select children nodes using Control-click.</li>
<li xml:lang="ru">Добавлена возможность выбирать узлы-потомки через Ctrl+щелчок.</li>
<li xml:lang="pt">Adicionada a possibilidade de selecionar nós filhos usando o Ctrl-clique.</li>
<li>Added ability to export a mind-map as a new Portable Minder filetype which will allow Minder files to be copied between different users/filesystems.</li>
<li xml:lang="pt">Adicionada a possibilidade de exportar um mapa mental como um novo tipo de ficheiro do Portable Minder, que permitirá que os ficheiros do Minder sejam copiados entre diferentes utilizadores/sistemas de ficheiros.</li>
<li>Added ability to export to Org-Mode format.</li>
<li xml:lang="ru">Добавлен экспорт в формат Org-Mode.</li>
<li xml:lang="pt">Adicionada a possibilidade de exportar para o formato Modo Org.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated French translation (thanks to Nathan Bonnemains).</li>
<li xml:lang="pt">Tradução Francesa adicionada (obrigado a Nathan Bonnemains).</li>
<li xml:lang="fr">Ajout des traductions en français (grâce à Nathan Bonnemains).</li>
<li>Improved OPML import support.</li>
<li xml:lang="ru">Улучшен импорт OPML.</li>
<li xml:lang="pt">Suporte para importar OPML melhorado.</li>
<li xml:lang="fr">Amélioration de l'import de fichiers OPML.</li>
<li>Changed ability to select a subtree by Control + double-click.</li>
<li xml:lang="pt">Alterada a possibilidade de selecionar uma sub árvore pressionado em Ctrl + cliq.</li>
<li xml:lang="fr">Modification de la sélection des sous-arbres avec Control + Double clic.</li>
<li>Changed ability to select all nodes of the current level by Control + triple-click.</li>
<li xml:lang="pt">Alterada a possibilidade de selecionar todos os nós do nível atual pressionado em Ctrl + clique triplo.</li>
<li xml:lang="fr">Modification de la sélection de tous les nœuds du niveau courant avec Control + Triple clic.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed NodeJS version for Travis CI.</li>
<li xml:lang="pt">Correção da versão do NodeJS para o Travis CI.</li>
<li xml:lang="fr">Correction de la version de NodeJS dans Travis CI.</li>
<li>Fixed issue with adding a new child node that doesn't cause other descendant nodes to unfold.</li>
<li xml:lang="pt">Corrigido um problema com a adição de um novo nó filho que não fazia com que outros nós descendentes se desdobrassem.</li>
<li xml:lang="fr">Correction du problème lors de l'ajout d'un nœud enfant qui empêchait les autres nœuds enfants d'être dépliés.</li>
<li>Fixed issue with showing/hiding sidebar.</li>
<li xml:lang="pt">Corrigido o problema de mostrar/esconder a barra lateral.</li>
<li xml:lang="fr">Correction d'un problème avec l'action d'afficher/masquer la barre latérale.</li>
<li>Fixed segmentation faults when loading a theme.</li>
<li xml:lang="pt">Falhas de segmentação corrigidas ao carregar um tema.</li>
<li xml:lang="fr">Correction d'une erreur de segmentation lors du chargement d'un thème.</li>
<li>Fixed issue with the style inspector Change Affect value when selection changes (thanks to Viliam K.).</li>
<li xml:lang="pt">Corrigido um problema com o valor do inspetor de estilo Alterar Afeto ao alterar a seleção (obrigado a Viliam K.).</li>
<li>Fixed issue with node markup within the node text (thanks to Viliam K).</li>
<li xml:lang="pt">Corrigido um problema com o markup de um nó no texto do nó (obrigado a Viliam K).</li>
<li xml:lang="fr">Correction d'un problème avec le style de nœud dans le texte (grâce à Viliam K.).</li>
<li>Fixed issue with tab state not being properly saved when a new tab is added.</li>
<li xml:lang="pt">Corrigido um problema com o estado da guia que não era gravado corretamente quando uma nova guia é adicionada.</li>
<li xml:lang="fr">Correction d'un problème avec l'état des onglets qui n'étaient pas correctement enregistré lors de l'ajout d'un nouvel onglet.</li>
<li>Fixed bug with updating tab tooltip and saving tab state when filename is changed.</li>
<li xml:lang="pt">Corrigido um problema com a atualização da ferramenta de dica da guia e o gravar do estado da guia quando o nome do ficheiro é alterado.</li>
<li xml:lang="fr">Correction d'un bug lors de la mise à jour de l'infobulle de l'onglet et l'enregistrement de l'état de l'onglet lorsque le nom de fichier est différent.</li>
</ul>
</description>
</release>
<release version="1.6.0" date="2019-12-26">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added ability to delete a single node (instead of the node and its subtree) in the contextual menu.</li>
<li xml:lang="pt">Adicionada a possibilidade de excluir um único nó (em vez do nó e sua sub árvore) no menu contextual.</li>
<li xml:lang="fr">Ajout de la possibilité de supprimer un nœud seul (au lieu du nœud et de ses enfants) dans le menu contextuel.</li>
<li>When a new document is first saved, the first root node text is used as the default filename.</li>
<li xml:lang="pt">Quando um novo documento é gravado pela primeira vez, o texto do primeiro nó raiz é usado como o nome do ficheiro padrão.</li>
<li xml:lang="fr">Lorsqu'un document est enregistré pour la première fois, le nom du premier nœud racine est utilisé comme nom de fichier par défaut.</li>
<li>Added multi-select support which includes: Changing styles; Copy, cut, paste and delete support; Connect two selected nodes;
Create node links between two or more selected nodes; and Fold/unfold selected nodes.</li>
<li>Added support for URLs in node titles.</li>
<li xml:lang="ru">Добавлена поддержка URL в заголовках узлов.</li>
<li xml:lang="pt">Suporte adicionado para URLs nos títulos de nós.</li>
<li xml:lang="fr">Ajout de la prise en charge des URL dans le titre des nœuds.</li>
<li>Added support for Markdown within a note: Notes are syntax highlighted; and Embedded URLs can be opened by Control-Clicking on them.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Updated application icon and other recently improved icons for improved readability (thanks to Nararyans R.I.).</li>
<li xml:lang="pt">Ícone da aplicação atualizado e outros ícones aprimorados recentemente para facilitar a sua leitura (obrigado a Nararyans R.I.).</li>
<li xml:lang="fr">Mise à jour de l'icône de l'application et des autres icônes pour plus de lisibilité (grâce à Nararyans R.I.).</li>
<li>Improved look and readability of theme icons in the sidebar.</li>
<li xml:lang="pt">Aparência e legibilidade melhorada dos ícones do tema na barra lateral.</li>
<li xml:lang="fr">Meilleure apparence et lisibilité des icônes de thème dans la barre latérale.</li>
<li>Changed sidebar to display theme icons in a grid layout.</li>
<li xml:lang="pt">Barra lateral alterada para exibir ícones de tema num layout de grelha.</li>
<li xml:lang="fr">Modification de la barre latérale pour afficher les icônes de thème dans une grille.</li>
<li>Improved various export format output.</li>
<li xml:lang="pt">Melhoria na saída de vários formatos de formatação.</li>
<li xml:lang="fr">Amélioration des différents formats d'exportation.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed various compiler warnings/errors after compiling with latest version of Vala compiler.</li>
<li xml:lang="pt">Vários avisos/erros do compilador corrigidos após a compilação com a versão mais recente do compilador Vala.</li>
<li xml:lang="fr">Correction de divers avertissements/erreurs après compilation avec la dernière version du compilateur Vala.</li>
</ul>
</description>
</release>
<release version="1.5.1" date="2019-11-23">
<description>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Improved various icons (thanks to Nararyans R.I.)</li>
<li xml:lang="pt">Vários ícones melhorados (obrigado a Nararyans R.I.)</li>
<li xml:lang="fr">Amélioration de diverses icônes (grâce à Nararyans R.I.)</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Downgraded Node.js to fix Travis CI builds</li>
<li xml:lang="pt">Versão anterior do Node.js para corrigir construções do Travis CI</li>
<li xml:lang="fr">Rétrogradation de Node.js pour corriger les problèmes d'intégration continue avec Travis CI</li>
<li>Fixed various compiler errors/warnings</li>
<li xml:lang="pt">Correção de vários erros/avisos do compilador</li>
<li xml:lang="fr">Correction de diverses erreurs/avertissements lors de la compilation</li>
</ul>
</description>
</release>
<release version="1.5.0" date="2019-09-07">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added export to yEd.</li>
<li xml:lang="ru">Добавлен экспорт в yEd.</li>
<li xml:lang="pt">Exportar em yEd adicionado.</li>
<li xml:lang="fr">Ajout de l'exportation au format yEd.</li>
<li>Added ability to create, edit and delete custom themes.</li>
<li xml:lang="ru">Добавлена возможность создавать, редактировать и удалять свои темы.</li>
<li xml:lang="pt">Adicionada a possibilidade de criar, editar e apagar temas personalizados.</li>
<li xml:lang="fr">Ajout de la possibilité de créer, modifier et supprimer des thèmes personnalisés</li>
<li>Added new quick entry mode, allowing node trees to be input within a text editor.</li>
<li xml:lang="pt">Modo de entrada rápida adicionada, permitindo que árvores de nós sejam entradas dentro de um editor de texto.</li>
<li xml:lang="fr">Ajout d'un nouveau mode d'entrée rapide, permettant aux arbres de nœuds d'être saisis depuis l'éditeur de texte.</li>
<li>Added Control-W keyboard shortcut to close the current tab.</li>
<li xml:lang="pt">Atalho de teclado Ctrl-W adicionado para fechar a guia atual.</li>
<li xml:lang="fr">Ajout du raccourci clavier Ctrl + W pour fermer l'onglet actif.</li>
<li>Added shortcut exploration help window (use F1 key to display).</li>
<li xml:lang="pt">Adicionada janela de ajuda para exploração de atalhos (use a tecla F1 para exibir).</li>
<li xml:lang="fr">Ajouter du raccourci pour parcourir la fenêtre d'aide (utilisez la touche F1 pour l'afficher).</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>New search icon which has better contrast for Minder's themed header bar (thanks to Nararyans R.I.).</li>
<li xml:lang="pt">Novo ícone de pesquisa que tem um melhor contraste para a barra de cabeçalho temática do Minder (obrigado a Nararyans R.I.).</li>
<li xml:lang="fr">Nouvelle icône de recherche avec un meilleur contraste pour le thème de l'entête de Minder(grâce à Nararyans R.I.).</li>
<li>New non-symbolic sidebar icon in header bar (thanks to Nararyans R.I.).</li>
<li xml:lang="pt">Novo ícone não simbólico da barra lateral na barra de cabeçalho (obrigado a Nararyans R.I.).</li>
<li xml:lang="fr">Nouvelle icône non symbolique pour la barre latérale dans l'entête (grâce à Nararyans R.I.).</li>
<li>New Minder application icon which fits in with the elementary OS color scheme better (thansk to Nararyans R.I.).</li>
<li xml:lang="pt">Novo ícone da aplicação Minder que se encaixa melhor no esquema de cores do sistema operativo elementary (obrigado a Nararyans R.I.).</li>
<li xml:lang="fr">Nouvelle icône de l'application Minder qui correspond mieux au schéma de couleurs d'elementary OS (grâce à Nararyans R.I.).</li>
<li>New focus icon in header bar (thanks to Nararyans R.I.).</li>
<li xml:lang="pt">Novo ícone de concentração na barra do cabeçalho (obrigado a Nararyans R.I.).</li>
<li xml:lang="fr">Nouvelle icône de mode concentration dans l'entête (grâce à Nararyans R.I.).</li>
<li>Improved styling when creating a new node/connection.</li>
<li xml:lang="pt">Estilo melhorado ao criar um novo nó/conexão.</li>
<li xml:lang="fr">Amélioration du style lors de la création d'un nouveau nœud/connexion.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed issue where separate trees in same mind-map where allowed to overlap.</li>
<li xml:lang="pt">Correção de um problema em que as árvores separadas no mesmo mapa mental podiam-se sobrepor.</li>
<li xml:lang="fr">Correction d'un problème ou les arbres séparés dans la même carte mentale pouvaient déborder.</li>
<li>Fixed node link drawing issue when using manual layout mode.</li>
<li xml:lang="pt">Corrigido um problema de desenho de link de nó ao usar o modo de layout manual.</li>
<li xml:lang="fr">Correction d'un problème de dessin des liens de nœud lors de l'utilisation du mode de disposition manuelle.</li>
<li>Fixed issues drawing arrows properly when straight node links were being used.</li>
<li xml:lang="pt">Correção de problemas ao desenhar setas corretamente quando as ligações de nós retos estavam a ser usadas.</li>
<li xml:lang="fr">Correction de problèmes de dessin correct des flèches lors de l'utilisation de liens de nœuds droits.</li>
<li>Fixed display issues with the node fill switch in the style inspector.</li>
<li xml:lang="pt">Correção de problemas de exibição com a opção de preenchimento de nó no inspetor de estilo.</li>
<li xml:lang="fr">Correction de problèmes d'affichage avec le bouton de remplissage de nœud dans l'inspecteur de style.</li>
<li>Fixed support for cut, copy and pasting connection title text.</li>
<li xml:lang="pt">Correção do suporte para cortar, copiar e colar texto do título de conexão.</li>
<li xml:lang="fr">Correction de la prise en charge des fonctions couper, copier et coller du titre des connexions.</li>
<li>Fixed keyboard shortcut for toggling focus mode.</li>
<li xml:lang="pt">Correção do atalho de teclado para alternar o modo de concentração.</li>
<li xml:lang="fr">Correction du raccourci clavier pour activer/désactiver le mode concentration.</li>
</ul>
</description>
</release>
<release version="1.4.1" date="2019-07-14">
<description>
<ul>
<li>Fixed issue with automatic layout that was introduced in 1.4.0.</li>
<li xml:lang="pt">Correção de um problema com o layout automático que foi introduzido na versão 1.4.0.</li>
<li xml:lang="fr">Correction d'un problème avec la disposition automatique introduite en 1.4.0.</li>
</ul>
</description>
</release>
<release version="1.4.0" date="2019-07-03">
<description>
<p>New</p>
<p xml:lang="pt">Novo</p>
<p xml:lang="fr">Nouveau</p>
<ul>
<li>Added support for focus mode.</li>
<li xml:lang="ru">Добавлен режим фокусировки.</li>
<li xml:lang="pt">Suporte adicionado para o modo de concentração.</li>
<li xml:lang="fr">Ajout de la prise en charge du mode concentration.</li>
<li>Added support for multiple documents with tabs.</li>
<li xml:lang="pt">Suporte adicionado para múltiplos documentos com guias.</li>
<li xml:lang="fr">Ajout de la prise en charge de documents multiples avec onglets.</li>
<li>Added support for resizing the inspector sidebar.</li>
<li xml:lang="pt">Suporte adicionado para redimensionar a barra lateral do inspetor.</li>
<li xml:lang="fr">Ajout de la prise en charge du redimensionnement de la barre latérale de l'inspecteur.</li>
<li>Added support for creating a new node directly from editing an existing node presssing Return or Tab.</li>
<li xml:lang="pt">Suporte adicionado para criar um novo nó diretamente da edição de um nó existente pressionando a tecla Return ou Tab.</li>
<li xml:lang="fr">Ajout de la prise en charge pour la création d'un nouveau nœud directement à partir de l'édition d'un nœud existant en appuyant sur Entrée ou Tab.</li>
<li>Added support for adding a new parent node to an existing node.</li>
<li xml:lang="pt">Suporte adicionado para adicionar um novo nó pai a um já existente.</li>
<li xml:lang="fr">Ajout de la prise en charge pour ajouter un nouveau nœud parent à un nœud existant.</li>
<li>Added support for importing/exporting to FreeMind and Freeplane formats.</li>
<li xml:lang="pt">Suporte adicionado para importar/exportar para os formatos FreeMind e Freeplane.</li>
<li xml:lang="fr">Ajout de la prise en charge de l'importation/exportation aux formats FreeMind et Freeplane.</li>
<li>Added support for sorting children either alphabetically or randomly.</li>
<li xml:lang="pt">Suporte adicionado para ordenar filhos em ordem alfabética ou aleatória.</li>
<li xml:lang="fr">Ajout de la prise en charge du tri des enfants alphabétiquement ou aléatoirement.</li>
<li>Added support for creating a link from one node to another node in the same map.</li>
<li xml:lang="pt">Suporte adicionado para criar uma ligação de um nó para outro nó no mesmo mapa.</li>
<li xml:lang="fr">Ajout de la prise en charge pour la création d'un lien d'un nœud à un autre dans la même carte.</li>
<li>Added support for building a Flatpak.</li>
<li xml:lang="pt">Suporte adicionado para construir um Flatpack.</li>
<li xml:lang="fr">Ajout de la prise en charge pour Flatpak.</li>
</ul>
<p>Changes</p>
<p xml:lang="ru">Изменения</p>
<p xml:lang="pt">Alterações</p>
<p xml:lang="fr">Modifications</p>
<ul>
<li>Removed markup from translated strings.</li>
<li xml:lang="ru">Убрана разметка из переводимых сообщений.</li>
<li xml:lang="pt">Markup removido de strings traduzidas.</li>
<li xml:lang="fr">Suppression des balises des chaînes de caractères traduites.</li>
<li>Standardized tooltips that display accelerator information.</li>
<li xml:lang="pt">Ferramenta de dicas padrão para exibir informações do acelerador.</li>
<li xml:lang="fr">Indications standard pour afficher les informations des raccourcis clavier.</li>
<li>Changed the way that node/connection titles are displayed in inspector.</li>
<li xml:lang="pt">Alterada a forma como os títulos dos nós/conexões são exibidos no inspetor.</li>
<li xml:lang="fr">Modification de la façon dont les titres de nœud/connexion sont affichés dans l'inspecteur.</li>
<li>Changed app terminal script to allow command-line arguments to be passed to debug subcommand.</li>
<li xml:lang="pt">Alteração do script do terminal da aplicação para permitir que argumentos da linha de comandos sejam passados para o sub comando de depuração.</li>
<li xml:lang="fr">Modification du script du terminal de l'application pour autoriser les arguments en ligne de commande a être passés en sous-commandes de débogage.</li>
<li>Changed header bar and widget colors to match Minder brand color.</li>
<li xml:lang="pt">Barra de cabeçalho e cores do widget alterados para corresponder à cor da marca Minder.</li>
<li xml:lang="fr">Modification des couleurs de la barre d'en-tête et des widgets pour correspondre à la couleur symbolique de Minder.</li>
<li>Changed search icon in header bar to a symbolic icon to improve readability.</li>
<li xml:lang="pt">Ícone de pesquisa alterado na barra de cabeçalho para um ícone simbólico para melhorar a legibilidade.</li>
<li xml:lang="fr">Modification de l'icône de recherche dans la barre d'en-tête en icône symbolique pour améliorer la lisibilité.</li>
<li>When note tooltip is displayed, markup text is rendered for improved readability.</li>
<li xml:lang="pt">Quando a ferramenta de dicas da nota é exibida, o texto em markup é renderizado para facilitar a leitura.</li>
<li xml:lang="fr">Lorsque l'indicateur des notes est affiché, le marquage du texte est restitué pour une meilleure lisibilité.</li>
<li>Enhanced app script to allow command-line arguments to be passed to debug subcommand.</li>
<li xml:lang="pt">Script da aplicação melhorado para permitir que os argumentos de linha de comandos sejam passados para o sub comando de depuração.</li>
<li xml:lang="fr">Amélioration du script de l'application pour autoriser les arguments en ligne de commande à être passés en sous-commandes de débogage.</li>
</ul>
<p>Bug Fixes</p>
<p xml:lang="ru">Исправления ошибок</p>
<p xml:lang="pt">Correções</p>
<p xml:lang="fr">Corrections de bugs</p>
<ul>
<li>Fixed an issue with calculating connection endpoints when a portion of the node is not visible.</li>
<li xml:lang="pt">Corrigido um problema com o cálculo de pontos de extremidade de conexão quando uma parte do nó não está visível.</li>
<li xml:lang="fr">Correction d'un problème avec le calcul des point de fin de connexion lorsqu'un bout du nœud n'est pas visible.</li>
<li>Fixed file naming issue when a file is imported.</li>
<li xml:lang="pt">Correção de um problema de nomenclatura de ficheiro quando este é importado.</li>
<li xml:lang="fr">Correction des problèmes de nommage du fichier lors de l'importation d'un fichier.</li>
<li>Fixed issue with displaying resized nodes on open or application startup.</li>
<li xml:lang="pt">Corrigido um problema com a exibição de nós redimensionados na abertura ou inicialização da aplicação.</li>
<li xml:lang="fr">Correction d'un problème lors de l'affichage des nœuds redimensionnés à l'ouverture ou au démarrage de l'application.</li>
</ul>
</description>
</release>
<release version="1.3.1" date="2019-06-02">
<description>
<ul>
<li>Fixing issue with export functions.</li>
<li xml:lang="pt">Correção de um problema com as funções de exportar.</li>
<li xml:lang="fr">Correction des problèmes avec les fonctions d'export.</li>
</ul>
</description>
</release>
<release version="1.3.0" date="2019-05-20">
<description>
<p>Let's stay connected!</p>
<p xml:lang="pt">Vamos ficar conectados!</p>
<p xml:lang="fr">Restons connectés !</p>
<ul>
<li>Added support for creating a visual connection between any two nodes.</li>
<li xml:lang="pt">Suporte adicionado para a criação de uma conexão visual entre quaisquer dois nós.</li>
<li xml:lang="fr">Ajout de la prise en charge de la création d'une connexion visuelle entre deux nœuds quelconques.</li>
<li>Added ability to show/hide all connections in the map.</li>
<li xml:lang="pt">Adicionada a possibilidade de mostrar/esconder todas as conexões no mapa.</li>
<li xml:lang="fr">Ajout de la possibilité d'afficher/masquer toutes les connexions dans la carte.</li>
<li>Added support for remembering the last selected child of a node when navigating the map with the keyboard.</li>
<li xml:lang="pt">Suporte adicionado para lembrar o último filho selecionado de um nó ao navegar no mapa com o teclado.</li>
<li xml:lang="fr">Ajout de la prise en charge de la mémorisation du dernier enfant sélectionné d'un nœud lors de la navigation sur la carte à l'aide du clavier.</li>
<li>When escape key is used when editing text, editing mode is ended without reverting text.</li>
<li xml:lang="pt">Quando a tecla de Escape é usada ao editar texto, o modo de edição é encerrado sem reverter o texto.</li>
<li xml:lang="fr">Lorsque la touche d'échappement est utilisée lors de l'édition de texte, le mode d'édition est interrompu sans que le texte ne soit réinitialisé.</li>
<li>Created unique contextual menus depending on what is selected in the mind map.</li>
<li xml:lang="pt">Criados menus contextuais exclusivos, dependendo do que é selecionado no mapa mental.</li>
<li xml:lang="fr">Création de menus contextuels uniques en fonction de ce qui est sélectionné dans la carte mentale.</li>
<li>Changed Node sidebar tab to Current which shows either the currently selected node or connection.</li>
<li xml:lang="pt">Alteração da guia da barra lateral do nó para Atual, que mostra o nó ou a conexão atualmente selecionada.</li>
<li xml:lang="fr">Changement de l'onglet Nœud de la barre latérale à Courant qui affiche soit le nœud ou la connexion actuellement sélectionné(e).</li>
<li>Improved link drawing when a node tree is being moved.</li>
<li xml:lang="pt">Desenho da ligação melhorado quando uma árvore de nó está a ser movida.</li>
<li xml:lang="fr">Amélioration du dessin des liens lorsqu'une arborescence de nœuds est déplacée.</li>
<li>Switched from using GtkFileChooserDialog to GtkFileChooserNative.</li>
<li xml:lang="pt">Alteração do uso de GtkFileChooserDialog para GtkFileChooserNative.</li>
<li xml:lang="fr">Passage de GtkFileChooserDialog à GtkFileChooserNative.</li>
<li>Added support for inserting emoji when editing text in the mind map (use Control-period).</li>
<li xml:lang="pt">Suporte adicionado para inserir um emoji enquanto se edita texto no mapa mental (use Ctrl-ponto).</li>
<li xml:lang="fr">Ajout du support pour l'insertion d'emojis lors de l'édition de texte dans la carte mentale (utilisez la combinaison CTRL + .).</li>
<li>Improved readability of theme name when the theme is selected.</li>
<li xml:lang="pt">Legibilidade melhorada do nome do tema quando o tema é selecionado.</li>
<li xml:lang="fr">Meilleure lisibilité du nom du thème lorsque le thème est sélectionné.</li>
<li>Fixed issue where changing a global style was not saved/applied to new nodes.</li>
<li xml:lang="pt">Corrigido um problema em que a alteração de um estilo global não era gravada/aplicada a novos nós.</li>
<li xml:lang="fr">Correction d'un problème où le changement d'un style global n'était pas sauvegardé/appliqué aux nouveaux nœuds.</li>
<li>Improved copy/paste support of nodes so that copied items can be pasted in other mind maps.</li>
<li xml:lang="pt">Suporte melhorado para o copiar/colar de nós para que os itens copiados possam ser colados em outros mapas mentais.</li>
<li xml:lang="fr">Amélioration du copier/coller des nœuds pour que les éléments copiés puissent être collés dans d'autres cartes mentales.</li>
<li>Added support for dynamically changing to dark mode in the UI if the prefer-dark desktop gsetting is set.</li>
<li xml:lang="pt">Suporte adicionado para alterar dinamicamente para o modo escuro na interface do utilizador se a definição preferir escuro no gsetting da área de trabalho estiver definido.</li>
<li xml:lang="fr">Ajout de la prise en charge du passage dynamique en thème sombre dans l'interface utilisateur si l'option de thème sombre est activée.</li>
<li>Added ability to show/hide each panel within the style inspector.</li>
<li xml:lang="pt">Adicionada a possibilidade de mostrar/esconder cada painel no inspetor de estilo.</li>
<li xml:lang="fr">Ajout de la possibilité d'afficher/masquer chaque panneau dans l'inspecteur de style.</li>
<li>Removed support for Loki builds.</li>
<li xml:lang="ru">Удалена поддержка сборок на Loki.</li>
<li xml:lang="pt">Suporte para Loki removido.</li>
<li xml:lang="fr">Arrêt de la prise en charge pour Loki.</li>
</ul>
</description>
</release>
<release version="1.2.1" date="2019-04-10">
<description>
<ul>
<li>Fixing appdata.xml file omission.</li>
<li xml:lang="pt">Correção da omissão do ficheiro appdata.xml.</li>
<li xml:lang="fr">Correction d'une omission dans le fichier appdata.xml.</li>
<li>Removing automatic style apply when the affects is set to certain values.</li>
<li xml:lang="pt">A remoção do estilo automático aplica-se quando os efeitos são definidos para determinados valores.</li>
<li xml:lang="fr">La suppression du style automatique s'applique lorsque l'effet est réglé sur certaines valeurs.</li>
</ul>
</description>
</release>
<release version="1.2" date="2019-04-09">
<description>
<ul>
<li>Added Spanish translation.</li>
<li xml:lang="ru">Добавлен перевод на испанский.</li>
<li xml:lang="pt">Tradução em Espanhol adicionada.</li>
<li xml:lang="fr">Ajout des traductions en espagnol.</li>
<li>Added support for Control-Return/Tab to support adding newlines/tabs in a node's title.</li>
<li xml:lang="pt">Suporte adicionado para Ctrl-Return/Tab para o suporte de novas linhas/guias num título de nó.</li>
<li xml:lang="fr">Ajout de la prise en charge du raccourci CTRL + Entrée/TAB pour ajouter des nouvelles lignes/tabulations dans le titre d'un nœud.</li>
<li>Improved node title editing support for selection and cursor movement.</li>
<li xml:lang="pt">Suporte de edição de título de nó melhorado para seleção e movimento do cursor.</li>
<li xml:lang="fr">Amélioration de la prise en charge de l'édition du titre des nœuds pour la sélection et le déplacement du curseur.</li>
<li>Added support for automatically opening Minder files from Files.</li>
<li xml:lang="pt">Suporte adicionado para abrir ficheiros Minder automaticamente a partir de Ficheiros.</li>
<li xml:lang="fr">Ajout de la prise en charge de l'ouverture automatique des fichiers Minder à partir de Fichiers.</li>
<li>Added ability to modify styles of nodes and links.</li>
<li xml:lang="ru">Добавлена возможность менять стили узлов и ссылок.</li>
<li xml:lang="pt">Adicionada a possibilidade de modificar estilos de nós e ligações.</li>
<li xml:lang="fr">Ajout de la possibilité de modifier les styles des nœuds et des liens.</li>
<li>Changed layouts to be stored on a per tree basis instead of a per document basis.</li>
<li xml:lang="pt">Layouts alterados para serem armazenados por árvore em vez de por documento.</li>
<li xml:lang="fr">Modification de la disposition pour l'enregistrement par arbre au lieu de l'enregistrement par document.</li>
<li>Added support for exporting to the Mermaid format.</li>
<li xml:lang="ru">Добавлен экспорт в формат Mermaid.</li>
<li xml:lang="pt">Suporte adicionado para exportar para o formato Mermaid.</li>
<li xml:lang="fr">Ajout de la prise en charge de l'exportation au format Mermaid.</li>
<li>Added support for disabling/enabling displaying markup in node title.</li>
<li xml:lang="pt">Suporte adicionado para desativar/ativar a exibição de markup no título de um nó.</li>
<li xml:lang="fr">Ajout de la prise en charge de la désactivation/activation de l'affichage du balisage dans le titre du nœud.</li>
<li>Improved the look of the fold indicators.</li>
<li xml:lang="pt">Aparência melhorada dos indicadores de dobra.</li>
<li xml:lang="fr">Amélioration de l'apparence des indicateurs de pli.</li>
<li>Lots of bug fixes.</li>
<li xml:lang="ru">Множество исправлений ошибок.</li>
<li xml:lang="pt">Muitas correções.</li>
<li xml:lang="fr">Nombreuses corrections de bugs.</li>
</ul>
</description>
</release>
<release version="1.1.3" date="2018-10-13">
<description>
<ul>
<li>Adding Spanish translation (thanks to Adolfo Jayme-Barrientos).</li>
<li xml:lang="ru">Добавлен перевод на испанский (спасибо Adolfo Jayme-Barrientos).</li>
<li xml:lang="pt">Tradução em Espanhol adicionada (obrigado a Adolfo Jayme-Barrientos).</li>
<li xml:lang="fr">Ajout des traductions en espagnol (grâce à Adolfo Jayme-Barrientos).</li>
<li>Adding support for special character insertion via the Compose key.</li>
<li xml:lang="pt">Suporte adicionado para a inserção de caracteres especiais por meio da tecla Compor.</li>
<li xml:lang="fr">Ajout du support pour l'insertion de caractères spéciaux avec la touche Compose.</li>
</ul>
</description>
</release>
<release version="1.1.2" date="2018-10-09">
<description>
<p>Updating French translation.</p>
<p xml:lang="ru">Обновлен перевод на французский.</p>
<p xml:lang="pt">Tradução em Francês atualizada.</p>
<p xml:lang="fr">Mises à jour des traductions en français.</p>
</description>
</release>
<release version="1.1.1" date="2018-09-27">
<description>
<p>Bug fix release</p>
<p xml:lang="pt">Lançamento com correções</p>
<p xml:lang="fr">Version corrective</p>
<ul>
<li>Fixed bugs related to editing unicode characters in map area.</li>
<li xml:lang="pt">Erros corrigidos relacionados com a edição de caracteres Unicode na área do mapa.</li>
<li xml:lang="fr">Correction de bugs liés à l'édition de caractères unicode dans la zone de la carte.</li>
<li>Reduced height of node textbox in sidebar to help alleviate window sizing problems.</li>
<li xml:lang="pt">Altura reduzida da caixa de texto do nó na barra lateral para ajudar a aliviar os problemas de dimensionamento da janela.</li>
<li xml:lang="fr">Réduction de la hauteur de la zone de texte du nœud dans la barre latérale pour aider à diminuer les problèmes de dimensionnement de la fenêtre.</li>
<li>Fixed issue with moving a node to a different position within a parent node.</li>
<li xml:lang="pt">Corrigido um problema com o mover um nó para uma posição diferente dentro de um nó pai.</li>
<li xml:lang="fr">Correction d'un problème avec le déplacement d'un nœud vers une position différente au sein d'un nœud parent.</li>
<li>Fixed issue connecting a root node to another node.</li>
<li xml:lang="pt">Corrigido problema ao conectar um nó raiz a outro nó.</li>
<li xml:lang="fr">Correction d'un problème de connexion d'un nœud racine à un autre nœud.</li>
</ul>
</description>
</release>
<release version="1.1" date="2018-09-18">
<description>
<p>Images now supported!</p>
<p xml:lang="ru">Добавлена поддержка изображений!</p>
<p xml:lang="pt">Imagens são agora suportadas!</p>
<p xml:lang="fr">Les images sont désormais prises en charge !</p>
<ul>
<li>Added support for images within nodes.</li>
<li xml:lang="ru">Добавлена поддержка изображений внутри узлов.</li>
<li xml:lang="pt">Suporte adicionado para imagens dentro de nós.</li>
<li xml:lang="fr">Ajout de la prise en charge des images à l'intérieur des nœuds.</li>
<li>Added basic image editing support.</li>
<li xml:lang="ru">Добавлены простые функции редактирования изображений.</li>
<li xml:lang="pt">Suporte adicionado para edição básica de imagem.</li>
<li xml:lang="fr">Ajout de la prise en charge mimimale de la modification d'image.</li>
<li>Added support for dragging and dropping local and web images.</li>
<li xml:lang="pt">Suporte adicionado para arrastar e largar imagens locais ou da Internet.</li>
<li xml:lang="fr">Ajout de la prise en charge du glisser-déposer d'images locales ou web.</li>
<li>Added support for resizing node width.</li>
<li xml:lang="pt">Suporte adicionado para redimensionar a largura de um nó.</li>
<li xml:lang="fr">Ajout de la prise en charge du redimensionnement de la largeur des nœuds.</li>
<li>Changed cursors when over a task button.</li>
<li xml:lang="pt">Cursores de rato alterados quando se sobrepõe a um botão de tarefa.</li>
<li xml:lang="fr">Modification du curseur au survol d'un bouton de tâche.</li>
<li>Changed location of task and note elements in a node.</li>
<li xml:lang="pt">Alteração da localização da tarefa e dos elementos de nota num nó.</li>
<li xml:lang="fr">Modification de l'emplacement des éléments de tâche et de note dans un nœud.</li>
<li>Added support for keeping the map from scrolling off screen.</li>
<li xml:lang="pt">Suporte adicionado para impedir que o mapa saía para fora do ecrã ao deslizar.</li>
<li xml:lang="fr">Ajout de la prise en charge du maintien du défilement de la carte de l'écran.</li>
<li>Added support for shift-mousewheel to scroll horizontally.</li>
<li xml:lang="ru">Добавлена поддержка Shift+колеса мыши для горизонтальной прокрутки.</li>
<li xml:lang="pt">Suporte adicionado para deslizar na horizontal com a tecla Shift-roda do rato.</li>
<li xml:lang="fr">Ajout de la prise en charge de la molette de la souris avec shift pour le défilement horizontal.</li>
<li>Added support for control-mousewheel to zoom in/out.</li>
<li xml:lang="pt">Suporte adicionado para ampliar mais/ampliar menos com a tecla Ctrl-roda do rado.</li>
<li xml:lang="fr">Ajout de la prise en charge de la molette de la souris pour effectuer un zoom avant/arrière.</li>
<li>Fixed issue with drawing background when zoom factor was small.</li>
<li xml:lang="pt">Corrigido um problema com o desenho do fundo quando o fator de ampliação era pequeno.</li>
<li xml:lang="fr">Correction d'un problème avec l'arrière-plan du graphique lorsque le facteur de zoom était faible.</li>
<li>Custom icons are now stored as a gresource rather than in the file system.</li>
<li xml:lang="pt">Os ícones personalizados agora são armazenados como uma fonte em vez de no sistema de ficheiros.</li>
<li xml:lang="fr">Les icônes personnalisées sont maintenant stockées en tant que ressource gresource plutôt que dans le système de fichiers.</li>
<li>Other minor bug fixes.</li>
<li xml:lang="pt">Outras pequenas correções.</li>
<li xml:lang="fr">Autres corrections de bugs mineures.</li>
</ul>
</description>
</release>
<release version="1.0.8" date="2018-08-06">
<description>
<p>Support for more export types and bug fixes.</p>
<p xml:lang="pt">Suporte para mais tipos de formatos de exportação e correções.</p>
<p xml:lang="fr">Prise en charge de plus de types d'exportation et corrections de bugs.</p>
<ul>
<li>Added support for exporting to SVG, JPEG, BMP, Markdown, PlainText and CSV formats.</li>
<li xml:lang="ru">Добавлен экспорт в форматы SVG, JPEG, BMP, Markdown, PlainText и CSV.</li>
<li xml:lang="pt">Suporte adicionado para exportar formatos em SVG, JPEG, BMP, Markdown, Texto Simples e CSV.</li>
<li xml:lang="fr">Ajout de la prise en charge pour l'exportation vers les formats SVG, JPEG, BMP, Mardown, Texte brut et CSV.</li>
<li>Added support for folding all completed tasks in map inspector.</li>
<li xml:lang="pt">Suporte adicionado para dobrar todas as tarefas completadas no inspetor do mapa.</li>
<li xml:lang="fr">Ajout de la prise en charge pour plier toutes les tâches complétées dans l'inspecteur de carte.</li>
<li>Added support for unfolding all folded nodes in map inspector.</li>
<li xml:lang="pt">Suporte adicionado para desdobrar todas as notas dobradas no inspetor do mapa.</li>
<li xml:lang="fr">Ajout de la prise en charge pour déplier tous les nœuds pliés dans l'inspecteur de carte.</li>
<li>Added Solarized Dark and Solarized Light themes.</li>
<li xml:lang="ru">Добавлены темы Solarized Dark и Solarized Light.</li>
<li xml:lang="pt">Tema Escuro e Tema Claro adicionados.</li>
<li xml:lang="fr">AJout des thèmes Solarized Dark et Solarized Light.</li>
<li>Changing button display in map inspector.</li>
<li xml:lang="pt">Alterada a exibição do botão no inspetor de mapa.</li>
<li xml:lang="fr">Modification de l'affichage du bouton dans l'inspecteur de carte.</li>
<li>Cleaning up Export menu to include a single "Export" option.</li>
<li xml:lang="pt">Menu Exportar limpo para incluir uma única opção "Exportar".</li>
<li>Fixing issue where modified node title in node inspector was lost when input focus was changed.</li>
<li xml:lang="pt">Corrigido um problema em que o título do nó modificado no inspetor de nó era perdido quando o foco de entrada era alterado.</li>
<li xml:lang="fr">Correction d'un problème où le titre de nœud modifié dans l'inspecteur de nœud était perdu lorsque le point focalisé en entrée était modifié.</li>
<li>Fixing issue where an entire tree is attached to another tree.</li>
<li xml:lang="pt">Corrigido um problema em que uma árvore inteira é anexada a outra árvore.</li>
<li xml:lang="fr">Correction d'un problème où un arbre entier est attaché à un autre arbre.</li>
<li>Added Czech translation (thanks to Jan Marek!).</li>
<li xml:lang="ru">Добавлена чешская локализация (спасибо Jan Marek!).</li>
<li xml:lang="pt">Tradução em Checo adicionada (obrigado a Jan Marek!).</li>
<li xml:lang="fr">Ajout des traductions en tchèque (grâce à Jan Marek !).</li>
<li>Added French translation (thanks to Yannick A.!).</li>
<li xml:lang="ru">Добавлена французская локализация (спасибо Yannick A.!).</li>
<li xml:lang="pt">Tradução em Francês adicionada (obrigado a Yannick A.!).</li>
<li xml:lang="fr">Ajout des traductions en français (grâce à Yannick A. !).</li>
<li>Added Brazilian Portuguese translation (thanks to btd1337!)</li>
<li xml:lang="ru">Добавлен перевод на бразильский португальский (спасибо btd1337!)</li>
<li xml:lang="pt">Tradução em Português do Brasil adicionada (obrigado a btd1337!)</li>
<li xml:lang="fr">Ajout des traductions en portugais brésilien (grâce à btd1337 !)</li>
</ul>
</description>
</release>
<release version="1.0.7" date="2018-07-13">
<description>
<p>Initial startup bug fix.</p>
<p xml:lang="pt">Correções iniciais.</p>
<p xml:lang="fr">Correction de bug au premier démarrage.</p>
</description>
</release>
<release version="1.0.4" date="2018-07-11">
<description>
<p>Search improvements and bug fixes</p>
<p xml:lang="ru">Улучшения в поиске и исправления ошибок.</p>
<p xml:lang="pt">Melhorias na procura e correções</p>
<p xml:lang="fr">Amélioration de la recherche et corrections de bugs</p>
<ul>
<li>Added ability to search within notes.</li>
<li xml:lang="ru">Добавлена возможность искать по тексту примечаний.</li>
<li xml:lang="pt">Adicionada a possibilidade de pesquisar dentro de notas.</li>
<li xml:lang="fr">Ajout de la possibilité de chercher parmi les notes.</li>
<li>Added ability to optionally control search criteria within search popover.</li>
<li xml:lang="ru">Добавлена возможность по выбору менять критерии поиска.</li>
<li xml:lang="pt">Adicionada a possibilidade de controlar opcionalmente os critérios de pesquisa no menu flutuante de pesquisa.</li>
<li xml:lang="fr">Ajout de la possibilité pour optionnellement contrôler les critères de recherche dans le volet de recherche.</li>
<li>Fixed screenshots.</li>
<li xml:lang="ru">Исправлены скриншоты.</li>
<li xml:lang="pt">Correção das capturas de ecrã.</li>
<li xml:lang="fr">Correction des captures d'écran.</li>
<li>Changed properties header bar icon to a sidebar hide/show icon for clarity.</li>
<li xml:lang="pt">Alteração do ícone da barra de cabeçalho de propriedades para um ícone esconder/mostrar da barra lateral para maior clareza.</li>
<li xml:lang="fr">L'icône de la barre supérieure des propriétés a été changée en icône de masquage/affichage dans la barre latérale pour plus de clarté.</li>
<li>Several minor UI improvements.</li>
<li xml:lang="ru">Несколько несущественных улучшений в интерфейсе.</li>
<li xml:lang="pt">Algumas pequenass melhorias na interface do utilizador.</li>
<li xml:lang="fr">Améliorations mineures diverses de l'interface.</li>
<li>Removing deprecated GTK calls.</li>
<li xml:lang="pt">Chamadas de GTK descontinuadas removidas.</li>
<li xml:lang="fr">Suprresion des éléments GTK dépréciés.</li>
<li>Added ability to double-click on a node to make it editable.</li>
<li xml:lang="ru">Добавлено переключение на редактирование узла по двойному щелчку.</li>
<li xml:lang="pt">Adicionada a possibilidade de clicar duas vezes num nó para o tornar editável.</li>
<li xml:lang="fr">Ajout de la possibilité de double-cliquer sur un nœud pour le rendre éditable.</li>
<li>Bug fixes.</li>
<li xml:lang="ru">Исправления ошибок.</li>
<li xml:lang="pt">Correções.</li>
<li xml:lang="fr">Corrections de bugs.</li>
</ul>
</description>
</release>
<release version="1.0.2" date="2018-06-29">
<description>
<p>Initial release</p>
<p xml:lang="ru">Первая версия программы</p>
<p xml:lang="pt">Lançamento inicial</p>
<p xml:lang="fr">Version initiale</p>
</description>
</release>
</releases>
</component>
|