Seth Hillbrand
2c7da5e2bd
Handle deleting segment
...
Edited point needs to clear to allow us to use the click timer for
left-click after the drawing is deleted.
Fixes https://gitlab.com/kicad/code/kicad/issues/9320
2021-10-06 10:21:04 -07:00
Ian McInerney
eb5f5a71a5
Add www and more keywords to Linux appdata
...
Make the user-facing URLs have the www.kicad.org site, and add some more
keywords describing the software.
2021-10-06 14:12:28 +01:00
Ian McInerney
1caaa4231c
Use the www.kicad.org url for the linux appdata screenshots
...
The non-www https URL appears to redirect through a non-https URL before
reaching the www https URL, which triggers a warning in some appstream
validation tools. Instead, just go to the www https URL directly so
there are no redirects needed.
2021-10-06 14:00:49 +01:00
Jeff Young
1bb5fc3fd6
Work around EnsureVisible bug in wxWidgets during DRC cross-probe.
...
Also adds double-click-marker to open DRC dialog and select marker
in list.
Fixes https://gitlab.com/kicad/code/kicad/issues/7246
2021-10-06 11:17:03 +01:00
Jeff Young
95f841a037
A more nuanced method of making Board & Schematic Setup read-only.
...
This one still allows you to scroll to see all contents.
Fixes https://gitlab.com/kicad/code/kicad/issues/9302
2021-10-06 11:16:46 +01:00
Jeff Young
935a307674
Formatting and iterator safety.
2021-10-06 11:13:16 +01:00
Ian McInerney
5d5b09a555
Mark standalone linux launchers as not having appstream data
...
The X-AppStream-Ignore=true will signal to appstream generators that
these programs won't have their own appstream information, since we
provide these programs under the main KiCad appstream file.
2021-10-06 10:49:56 +01:00
Seth Hillbrand
bb5c58b3cf
Set default force cursor off in auto-lines
...
Leaving the forced position on results in the auto-line linking to a pin
for far longer than we intend if there are other hits in the area of the
cursor
Fixes https://gitlab.com/kicad/code/kicad/issues/9321
2021-10-05 20:28:05 -07:00
Seth Hillbrand
854472d550
Prevent automatic RTree recaching
...
Calling UpdateItem() may be performed by in a common loop, e.g. for(
SCH_ITEM* item : GetScreen()->Items() ) or similar. We cannot call
GetScreen()->Update( SCH_ITEM* ) in this routine as it will remove and
re-add the item to the RTree, invalidating iterators. If needed, the
items need to be cached to an external container before updating
Fixes https://gitlab.com/kicad/code/kicad/issues/9318
2021-10-05 20:13:15 -07:00
Seth Hillbrand
9a8d1246cc
We don't keep a CHANGELOG.TXT
...
Direct interested readers to AUTHORS.TXT instead.
2021-10-05 19:46:53 -07:00
Seth Hillbrand
9066165792
Fix compile error on Mac
2021-10-05 19:44:35 -07:00
Augusto Fraga Giachero
d39127bbcb
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 66.4% (4755 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pt_BR/
2021-10-05 19:11:16 +02:00
boonchai k
a7c7ba3331
Translated using Weblate (Thai)
...
Currently translated at 94.8% (6793 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/th/
2021-10-05 19:11:16 +02:00
Eric
3669d25077
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 99.9% (7158 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/zh_Hans/
2021-10-05 19:11:16 +02:00
ZbeeGin
cf5c7e225d
Translated using Weblate (Polish)
...
Currently translated at 100.0% (7159 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pl/
2021-10-05 19:11:16 +02:00
Ji Yoon Choi
db3d09b650
Translated using Weblate (Korean)
...
Currently translated at 100.0% (7159 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2021-10-05 19:11:16 +02:00
Mark Hämmerling
06d660e838
Translated using Weblate (German)
...
Currently translated at 97.3% (6966 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/de/
2021-10-05 19:11:16 +02:00
Ji Yoon Choi
074c07aeef
Translated using Weblate (Korean)
...
Currently translated at 99.9% (7152 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2021-10-05 19:11:16 +02:00
Ji Yoon Choi
f60b28115e
Translated using Weblate (Korean)
...
Currently translated at 99.8% (7148 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2021-10-05 19:11:16 +02:00
Ji Yoon Choi
e9ad042282
Translated using Weblate (Korean)
...
Currently translated at 99.8% (7145 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2021-10-05 19:11:16 +02:00
Ji Yoon Choi
a176bc25d8
Translated using Weblate (Korean)
...
Currently translated at 99.7% (7144 of 7159 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ko/
2021-10-05 19:11:15 +02:00
Seth Hillbrand
548e5f49bd
Clean up unused variable usage
...
Unused variables in function calls can be commented out. Unused
return variables get a new routine `ignore_unused()` that silences the
warnings with zero overhead.
2021-10-05 10:00:30 -07:00
Seth Hillbrand
043c326278
Add Boonchai K as Thai translator
2021-10-05 10:00:30 -07:00
Ian McInerney
2a932c238d
Allow bitmap2component to open a file through linux launcher
2021-10-05 17:57:58 +01:00
jean-pierre charras
a74851bb5d
pcb_calculator rework: move transline panel to its own files panel_transline_xx
...
also a small code cleanup
2021-10-05 18:43:07 +02:00
jean-pierre charras
813fd8ee0a
try to fix a compil issue on Linux that does not happen on my computer, round 2.
2021-10-05 17:30:22 +02:00
jean-pierre charras
a04ae6f13e
try to fix a compil issue on Linux that does not happen on my computer.
2021-10-05 17:17:29 +02:00
jean-pierre charras
d161d7431e
pcb_calculator rework: move eseries panel to its own files panel_eserie_xx
2021-10-05 13:48:37 +02:00
jean-pierre charras
187c685c64
pcb_calculator rework: move board class panel to its own files panel_board_class_xx
2021-10-05 11:00:11 +02:00
jean-pierre charras
c7faeeabea
pcb_calculator rework: move electrical spacing panel to its own files panel_electrical_spacing_xx
2021-10-05 10:20:44 +02:00
jean-pierre charras
839957c4e2
French translation update.
2021-10-05 08:53:22 +02:00
jean-pierre charras
f446d23deb
pcb_calculator rework: move track width panel to its own files panel_track_width_xx
2021-10-05 08:41:22 +02:00
Seth Hillbrand
eb819a3b25
Update translations
2021-10-04 08:54:11 -07:00
Seth Hillbrand
9a9cd65416
Update LINGUAS to include Thai
2021-10-04 08:53:39 -07:00
Augusto Fraga Giachero
35830c7e61
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 66.3% (4748 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pt_BR/
2021-10-04 17:52:05 +02:00
Eric
eada605ef9
Translated using Weblate (Chinese (Simplified))
...
Currently translated at 99.9% (7150 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/zh_Hans/
2021-10-04 17:52:04 +02:00
ZbeeGin
a6c44443a4
Translated using Weblate (Russian)
...
Currently translated at 99.4% (7115 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ru/
2021-10-04 17:52:03 +02:00
ZbeeGin
8fd488e2bf
Translated using Weblate (Polish)
...
Currently translated at 100.0% (7151 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/pl/
2021-10-04 17:52:01 +02:00
ZbeeGin
0b2bf8bde1
Translated using Weblate (Dutch)
...
Currently translated at 99.4% (7112 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/nl/
2021-10-04 17:52:00 +02:00
Mark Hämmerling
5eb0f2439a
Translated using Weblate (German)
...
Currently translated at 97.5% (6975 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/de/
2021-10-04 17:51:58 +02:00
Arnau Llovet Vidal
1e7f95ff19
Translated using Weblate (Catalan)
...
Currently translated at 42.5% (3041 of 7151 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ca/
2021-10-04 17:51:57 +02:00
Jeff Young
92008a089a
Disable Board & Schematic Setup controls when project is locked.
...
(or missing).
Fixes https://gitlab.com/kicad/code/kicad/issues/9302
2021-10-04 16:47:27 +01:00
jean-pierre charras
3ac0b46798
pcb_calculator rework: move via size panel to its own files panel_via_size_xx
2021-10-04 16:32:38 +02:00
jean-pierre charras
5b5e9102bb
pcb_calculator rework: move color code panel to its own files panel_color_code_xx
2021-10-04 15:02:57 +02:00
Jeff Young
ffd6fde700
Improve consistency and hotkey access in Appearances.
...
Added hotkey for cycling through net & netclass color modes.
Added hotkey for cycling through ratsnest layer visibilities.
Added code to display hotkey (if set) on the above and on high-contrast
cycle.
Fixes https://gitlab.com/kicad/code/kicad/issues/9312
2021-10-04 13:44:43 +01:00
jean-pierre charras
78ddb1408f
pcb_calculator/eserie.*: fix some coding style issues.
...
No actual code change (I hope...)
2021-10-04 13:09:28 +02:00
jean-pierre charras
21d3662ed3
pcb_calculator rework: move attenuators panel to its own files panel_attenuators_xx
2021-10-04 10:25:33 +02:00
Seth Hillbrand
bf8a020501
Update translations
2021-10-03 16:56:14 -07:00
Ulices
9d0efe91b9
Translated using Weblate (Spanish (Mexico))
...
Currently translated at 97.8% (7002 of 7155 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/es_MX/
2021-10-04 01:55:27 +02:00
Tokita, Hiroshi
d35d630e3f
Translated using Weblate (Japanese)
...
Currently translated at 99.9% (7149 of 7155 strings)
Translation: KiCad EDA/master source
Translate-URL: https://hosted.weblate.org/projects/kicad/master-source/ja/
2021-10-04 01:55:27 +02:00