<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dehesselle</id>
	<title>Inkscape Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.inkscape.org/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dehesselle"/>
	<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/Special:Contributions/Dehesselle"/>
	<updated>2026-05-01T09:48:41Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=122977</id>
		<title>CompilingMacOsX</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=122977"/>
		<updated>2024-07-09T10:10:11Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: Add warning about outdated/unmaintained status&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__TOC__&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:darkred;font-weight:bold&amp;quot;&amp;gt;THIS PAGE IS OUTDATED AND UNMAINTAINED!&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Using MacPorts =&lt;br /&gt;
&lt;br /&gt;
If you can build successfully with MacPorts, please update this file and remove above comment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Download and install [http://www.macports.org/ MacPorts]&lt;br /&gt;
&amp;lt;li&amp;gt;Edit the MacPorts variants config (optional).&lt;br /&gt;
&amp;lt;br&amp;gt;Add this line to &amp;lt;code&amp;gt;/opt/local/etc/macports/variants.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;-x11 +quartz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal (Applications&amp;gt;Utilities&amp;gt;Terminal) type&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo port install \&lt;br /&gt;
     adwaita-icon-theme \&lt;br /&gt;
     boehmgc \&lt;br /&gt;
     boost \&lt;br /&gt;
     cairo \&lt;br /&gt;
     ccache \&lt;br /&gt;
     cmake \&lt;br /&gt;
     double-conversion \&lt;br /&gt;
     gdl3 \&lt;br /&gt;
     gettext \&lt;br /&gt;
     gsl \&lt;br /&gt;
     gtkmm3 \&lt;br /&gt;
     gtk-osx-application-gtk3 \&lt;br /&gt;
     lcms2 \&lt;br /&gt;
     libsoup \&lt;br /&gt;
     libxslt \&lt;br /&gt;
     ninja \&lt;br /&gt;
     poppler \&lt;br /&gt;
     potrace \&lt;br /&gt;
     py-lxml \&lt;br /&gt;
     py-numpy \&lt;br /&gt;
     -x11 +quartz&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal, get Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;git clone --recurse-submodules https://gitlab.com/inkscape/inkscape.git&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;And build inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# use a clean MacPorts environment (optional)&lt;br /&gt;
LIBPREFIX=&amp;quot;/opt/local&amp;quot;&lt;br /&gt;
export PATH=&amp;quot;$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to install&lt;br /&gt;
PREFIX=&amp;quot;$PWD/install-prefix&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to build&lt;br /&gt;
mkdir build&lt;br /&gt;
cd build&lt;br /&gt;
&lt;br /&gt;
cmake \&lt;br /&gt;
    -G Ninja \&lt;br /&gt;
    -DCMAKE_PREFIX_PATH=&amp;quot;$LIBPREFIX&amp;quot; \&lt;br /&gt;
    -DCMAKE_INSTALL_PREFIX=&amp;quot;$PREFIX&amp;quot; \&lt;br /&gt;
    -DCMAKE_C_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
    -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
    -DWITH_OPENMP=OFF \&lt;br /&gt;
    ../inkscape&lt;br /&gt;
&lt;br /&gt;
ninja&lt;br /&gt;
ninja install&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
''Note: Using [https://en.wikipedia.org/wiki/Ccache ccache] and [https://ninja-build.org/ ninja] is not required, but very common because it speeds up compilation.''&lt;br /&gt;
&amp;lt;li&amp;gt;Run Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$PREFIX/bin/inkscape&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Using Homebrew =&lt;br /&gt;
&lt;br /&gt;
If you are using [https://brew.sh/ Homebrew] instead, you can still use the above guidelines with small modifications.&lt;br /&gt;
(Make sure you don't have any MacPorts stuff in your PATH.)&lt;br /&gt;
&lt;br /&gt;
List of '''packages''' to install with brew&lt;br /&gt;
(for Inkscape 1.4):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
brew install \&lt;br /&gt;
    adwaita-icon-theme \&lt;br /&gt;
    bdw-gc \&lt;br /&gt;
    boost \&lt;br /&gt;
    cairomm \&lt;br /&gt;
    ccache \&lt;br /&gt;
    cmake \&lt;br /&gt;
    double-conversion \&lt;br /&gt;
    gettext \&lt;br /&gt;
    gsl \&lt;br /&gt;
    gspell \&lt;br /&gt;
    gtk-mac-integration \&lt;br /&gt;
    gtkmm3 \&lt;br /&gt;
    imagemagick \&lt;br /&gt;
    intltool \&lt;br /&gt;
    lcms2 \&lt;br /&gt;
    libomp \&lt;br /&gt;
    libsoup@2 \&lt;br /&gt;
    libxslt \&lt;br /&gt;
    ninja \&lt;br /&gt;
    pkg-config \&lt;br /&gt;
    poppler \&lt;br /&gt;
    potrace&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may substitute &amp;lt;code&amp;gt;imagemagick&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;graphicsmagick&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;gtk-mac-integration&amp;lt;/code&amp;gt; is not needed with latest &amp;lt;code&amp;gt;1.2-dev&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Some keg-only libraries need to be added to &amp;lt;code&amp;gt;$PKG_CONFIG_PATH&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some libraries can cause trouble if they are picked up from the SDK instead of Homebrew (observed with &amp;lt;code&amp;gt;libxslt&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;libxml2&amp;lt;/code&amp;gt;). Adding them to &amp;lt;code&amp;gt;$PKG_CONFIG_PATH&amp;lt;/code&amp;gt; should fix this.&lt;br /&gt;
&lt;br /&gt;
Check out the source if you haven't already:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;git clone --recurse-submodules https://gitlab.com/inkscape/inkscape.git&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then &amp;lt;code&amp;gt;cd inkscape&amp;lt;/code&amp;gt; and follow the steps below.&lt;br /&gt;
&lt;br /&gt;
Tested with:&lt;br /&gt;
* M1 MacBook Air with macOS 11.6 and Inkscape 1.2-dev&lt;br /&gt;
* M2 MacBook Air with macOS 13.0.1 and Inkscape 1.2.1, 1.2.x from git.&lt;br /&gt;
* M2 Mac Mini with macOS 14.2 and Inkscape 1.4-dev. (After adding pkg-config.)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# use a clean Homebrew environment (optional)&lt;br /&gt;
LIBPREFIX=&amp;quot;/opt/homebrew&amp;quot;&lt;br /&gt;
export PATH=&amp;quot;$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# keg-only libraries&lt;br /&gt;
export PKG_CONFIG_PATH=&amp;quot;$LIBPREFIX/opt/icu4c/lib/pkgconfig&amp;quot;&lt;br /&gt;
export PKG_CONFIG_PATH=&amp;quot;$PKG_CONFIG_PATH:$LIBPREFIX/opt/libsoup@2/lib/pkgconfig&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# prevent picking up libxslt and libxml2 from the (wrong) SDK&lt;br /&gt;
export PKG_CONFIG_PATH=&amp;quot;$PKG_CONFIG_PATH:$LIBPREFIX/opt/libxslt/lib/pkgconfig&amp;quot;&lt;br /&gt;
export PKG_CONFIG_PATH=&amp;quot;$PKG_CONFIG_PATH:$LIBPREFIX/opt/libxml2/lib/pkgconfig&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to install&lt;br /&gt;
PREFIX=&amp;quot;$PWD/install-prefix&amp;quot;&lt;br /&gt;
&lt;br /&gt;
mkdir -p build&lt;br /&gt;
cd build&lt;br /&gt;
&lt;br /&gt;
cmake \&lt;br /&gt;
    -G Ninja \&lt;br /&gt;
    -DCMAKE_SHARED_LINKER_FLAGS=&amp;quot;-L$LIBPREFIX/lib&amp;quot; \&lt;br /&gt;
    -DCMAKE_EXE_LINKER_FLAGS=&amp;quot;-L$LIBPREFIX/lib&amp;quot; \&lt;br /&gt;
    -DCMAKE_INSTALL_PREFIX=$PREFIX \&lt;br /&gt;
    -DCMAKE_C_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
    -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
    -DWITH_DBUS=OFF \&lt;br /&gt;
    ..&lt;br /&gt;
&lt;br /&gt;
ninja&lt;br /&gt;
ninja install&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Packaging=&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;$PREFIX/bin/inkscape&amp;lt;/code&amp;gt; works when executed and you want to turn it into an app or a DMG, have a look at the files inside the &amp;lt;code&amp;gt;inkscape/packaging/macos&amp;lt;/code&amp;gt; directory. More info can be found on upstream mibap:&lt;br /&gt;
&lt;br /&gt;
* https://github.com/dehesselle/mibap&lt;br /&gt;
&lt;br /&gt;
Follow the steps to install the toolset, package the app, and create a DMG. In case you use upstream mibap, you will get the app under &amp;lt;code&amp;gt;/Users/Shared/work/mibap-*/&amp;lt;/code&amp;gt; and you will get a DMG file in the same place you ran &amp;lt;code&amp;gt;./build_inkscape.sh&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Tracking Dependencies]]&lt;br /&gt;
* [[Extension requirements]]&lt;br /&gt;
*[[Compiling Inkscape]]&lt;br /&gt;
*[[Notes on Packaging for OS X]]&lt;br /&gt;
* https://github.com/valerioa/Inkscape-MacOS-Curated-Build&lt;br /&gt;
* [https://github.com/ipatch/homebrew-us-05/blob/master/inkscape/inkscape-building-for-macOS.md ipatch's collection of notes] about building Inkscape using Homebrew&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Documentation]]&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122221</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122221"/>
		<updated>2023-03-10T12:37:02Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''11 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - all work and no play makes Jack a dull boy! We get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Location, Location, Location!&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Don't starve together&lt;br /&gt;
!&lt;br /&gt;
!time&lt;br /&gt;
!comment&lt;br /&gt;
|-&lt;br /&gt;
|breakfast&lt;br /&gt;
|'''7:00 - 9:00'''&lt;br /&gt;
|buffet&lt;br /&gt;
|-&lt;br /&gt;
|lunch&lt;br /&gt;
|'''12:00'''&lt;br /&gt;
|buffet; vegetarian only&lt;br /&gt;
|-&lt;br /&gt;
|dinner&lt;br /&gt;
|'''18:30'''&lt;br /&gt;
|buffet; meat or fish&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Facilities===&lt;br /&gt;
&lt;br /&gt;
* office hours reception: '''8:00 - 16:00'''&lt;br /&gt;
&lt;br /&gt;
* meeting room available '''9:00 - 22:00'''.&lt;br /&gt;
&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: '''9:00''', RdH is supposed to be the first on site&lt;br /&gt;
** hotel rooms available: '''15:00'''&lt;br /&gt;
* window of departure on Friday: '''17:00-18:00''' (we need to be gone by '''18:00''')&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € &amp;lt;s&amp;gt;and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;/s&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
The meeting room fee is 900 €. Additionally, we have allocated a budget for alcoholic drinks as those are not included in our otherwise &amp;quot;all inclusive package&amp;quot;.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of up to 9,770 €. The fixed part of the total cost (i.e. everything without alcoholic drinks) is 9,270 € and has been payed in full by the SFC by international wire transfer. The total amount for alcoholic drinks - if any - will have to be payed on-site on the last day of our event (RdH will take care of this and do the reimbursement process later).&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|13.03. 12:00 (Bensberg)&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|14.03. between 9 and 11 (13.03 22:30 DUS)&lt;br /&gt;
|19.03 15:45 DUS&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|13.03. between 10 and 12&lt;br /&gt;
|Booked&lt;br /&gt;
|-&lt;br /&gt;
|Pono Takamori&lt;br /&gt;
|@pono1&lt;br /&gt;
|14.03. ~12:00 (Bensberg)&lt;br /&gt;
|tba&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience; improving documentation and/or additional offerings&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122220</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122220"/>
		<updated>2023-03-09T19:44:59Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''11 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - all work and no play makes Jack a dull boy! We get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Location, Location, Location!&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Don't starve together&lt;br /&gt;
!&lt;br /&gt;
!time&lt;br /&gt;
!comment&lt;br /&gt;
|-&lt;br /&gt;
|breakfast&lt;br /&gt;
|'''7:00 - 9:00'''&lt;br /&gt;
|buffet&lt;br /&gt;
|-&lt;br /&gt;
|lunch&lt;br /&gt;
|'''12:00'''&lt;br /&gt;
|buffet; vegetarian only&lt;br /&gt;
|-&lt;br /&gt;
|dinner&lt;br /&gt;
|'''18:30'''&lt;br /&gt;
|buffet; meat or fish&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Facilities===&lt;br /&gt;
&lt;br /&gt;
* office hours reception: '''8:00 - 16:00'''&lt;br /&gt;
&lt;br /&gt;
* meeting room available '''9:00 - 22:00'''.&lt;br /&gt;
&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: '''9:00''', RdH is supposed to be the first on site&lt;br /&gt;
** hotel rooms available: '''15:00'''&lt;br /&gt;
* window of departure on Friday: '''17:00-18:00''' (we need to be gone by '''18:00''')&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € &amp;lt;s&amp;gt;and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;/s&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
The meeting room fee is 900 €. Additionally, we have allocated a budget for alcoholic drinks as those are not included in our otherwise &amp;quot;all inclusive package&amp;quot;.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of up to 9,770 €. The fixed part of the total cost (i.e. everything without alcoholic drinks) is 9,270 € and has been payed in full by the SFC by international wire transfer. The total amount for alcoholic drinks - if any - will have to be payed on-site on the last day of our event (RdH will take care of this and do the reimbursement process later).&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|13.03. 12:00 (Bensberg)&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|13.03 22:30 Dusseldorf Airport (14.03. Bensberg)&lt;br /&gt;
|19.03 15:45 Dusseldorf Airport&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|13.03. between 10 and 12&lt;br /&gt;
|Booked&lt;br /&gt;
|-&lt;br /&gt;
|Pono Takamori&lt;br /&gt;
|@pono1&lt;br /&gt;
|14.03. ~12:00 (Bensberg)&lt;br /&gt;
|tba&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience; improving documentation and/or additional offerings&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122219</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122219"/>
		<updated>2023-03-08T16:45:57Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: /* Facilities */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''11 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - all work and no play makes Jack a dull boy! We get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Location, Location, Location!&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Don't starve together&lt;br /&gt;
!&lt;br /&gt;
!time&lt;br /&gt;
!comment&lt;br /&gt;
|-&lt;br /&gt;
|breakfast&lt;br /&gt;
|'''7:00 - 9:00'''&lt;br /&gt;
|buffet&lt;br /&gt;
|-&lt;br /&gt;
|lunch&lt;br /&gt;
|'''12:00'''&lt;br /&gt;
|buffet; vegetarian only&lt;br /&gt;
|-&lt;br /&gt;
|dinner&lt;br /&gt;
|'''18:30'''&lt;br /&gt;
|buffet; meat or fish&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Facilities===&lt;br /&gt;
&lt;br /&gt;
* office hours reception: '''8:00 - 16:00'''&lt;br /&gt;
&lt;br /&gt;
* meeting room available '''9:00 - 22:00'''.&lt;br /&gt;
&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: '''9:00''', RdH is supposed to be the first on site&lt;br /&gt;
** hotel rooms available: '''15:00'''&lt;br /&gt;
* window of departure on Friday: '''17:00-18:00''' (we need to be gone by '''18:00''')&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € &amp;lt;s&amp;gt;and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;/s&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
The meeting room fee is 900 €. Additionally, we have allocated a budget for alcoholic drinks as those are not included in our otherwise &amp;quot;all inclusive package&amp;quot;.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of up to 9,770 €. The fixed part of the total cost (i.e. everything without alcoholic drinks) is 9,270 € and has been payed in full by the SFC by international wire transfer. The total amount for alcoholic drinks - if any - will have to be payed on-site on the last day of our event (RdH will take care of this and do the reimbursement process later).&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|13.03 22:30 Dusseldorf Airport (14.03. Bensberg)&lt;br /&gt;
|19.03 15:45 Dusseldorf Airport&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|Booked&lt;br /&gt;
|Booked&lt;br /&gt;
|-&lt;br /&gt;
|Pono Takamori&lt;br /&gt;
|@pono1&lt;br /&gt;
|14.03. ~12:00 (Bensberg)&lt;br /&gt;
|tba&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience; improving documentation and/or additional offerings&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122218</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122218"/>
		<updated>2023-03-08T16:23:06Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''11 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - all work and no play makes Jack a dull boy! We get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Location, Location, Location!&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Don't starve together&lt;br /&gt;
!&lt;br /&gt;
!time&lt;br /&gt;
!comment&lt;br /&gt;
|-&lt;br /&gt;
|breakfast&lt;br /&gt;
|'''7:00 - 9:00'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|lunch&lt;br /&gt;
|'''12:00'''&lt;br /&gt;
|vegetarian&lt;br /&gt;
|-&lt;br /&gt;
|dinner&lt;br /&gt;
|'''18:30'''&lt;br /&gt;
|meat or fish&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Facilities===&lt;br /&gt;
&lt;br /&gt;
* office hours reception: '''8:00 - 16:00'''&lt;br /&gt;
&lt;br /&gt;
* meeting room available '''9:00 - 22:00'''.&lt;br /&gt;
&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: '''9:00''', René is supposed to be the first on site&lt;br /&gt;
** hotel rooms available: '''15:00'''&lt;br /&gt;
* window of departure on Friday: '''17:00-18:00''' (we need to be gone by '''18:00''')&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € &amp;lt;s&amp;gt;and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;/s&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
The meeting room fee is 900 €. We have allocated a budget for alcoholic drinks as those are not included in otherwise &amp;quot;all inclusive package&amp;quot;.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of up to 9,770 €. The fixed part of the total cost (i.e. everything without alcoholic drinks) is 9,270 € and has been payed in full by the SFC by international wire transfer. The total amount for alcoholic drinks - if any - will have to be payed on-site on the last day of our event (RdH will take care of this and do the reimbursement process later).&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|13.03 22:30 Dusseldorf Airport (14.03. Bensberg)&lt;br /&gt;
|19.03 15:45 Dusseldorf Airport&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|Booked&lt;br /&gt;
|Booked&lt;br /&gt;
|-&lt;br /&gt;
|Pono Takamori&lt;br /&gt;
|@pono1&lt;br /&gt;
|14.03. ~12:00 (Bensberg)&lt;br /&gt;
|tba&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122217</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122217"/>
		<updated>2023-03-08T13:38:24Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''11 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - all work and no play makes Jack a dull boy! We get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Location, Location, Location!&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Don't starve together&lt;br /&gt;
!&lt;br /&gt;
!time&lt;br /&gt;
!comment&lt;br /&gt;
|-&lt;br /&gt;
|breakfast&lt;br /&gt;
|'''7:00 - 9:00'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|lunch&lt;br /&gt;
|'''12:00'''&lt;br /&gt;
|vegetarian&lt;br /&gt;
|-&lt;br /&gt;
|dinner&lt;br /&gt;
|'''18:30'''&lt;br /&gt;
|meat or fish&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Facilities===&lt;br /&gt;
&lt;br /&gt;
* office hours reception: '''8:00 - 16:00'''&lt;br /&gt;
&lt;br /&gt;
* meeting room available '''9:00 - 22:00'''.&lt;br /&gt;
&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: '''9:00''', René is supposed to be the first on site&lt;br /&gt;
** hotel rooms available: '''15:00'''&lt;br /&gt;
* window of departure on Friday: '''17:00-18:00''' (we need to be gone by '''18:00''')&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € &amp;lt;s&amp;gt;and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;/s&amp;gt;&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
The meeting room fee is 900 €. We have allocated a budget for alcoholic drinks as those are not included in otherwise &amp;quot;all inclusive package&amp;quot;.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of up to 9,770 €. The fixed part of the total cost (i.e. everything without alcoholic drinks) is 9,270 € and has been payed in full by the SFC by international wire transfer. The total amount for alcoholic drinks - if any - will have to be payed on-site on the last day of our event (RdH will take care of this and do the reimbursement process later).&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|13.03 22:30 Dusseldorf Airport (14.03 Bensberg)&lt;br /&gt;
|19.03 15:45 Dusseldorf Airport&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|Booked&lt;br /&gt;
|Booked&lt;br /&gt;
|-&lt;br /&gt;
|Pono Takamori&lt;br /&gt;
|n/a&lt;br /&gt;
|tba&lt;br /&gt;
|tba&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122216</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122216"/>
		<updated>2023-03-08T13:28:08Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: updated times and venue info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''11 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - all work and no play makes Jack a dull boy! We get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Location, Location, Location!&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Don't starve together&lt;br /&gt;
!&lt;br /&gt;
!time&lt;br /&gt;
!comment&lt;br /&gt;
|-&lt;br /&gt;
|breakfast&lt;br /&gt;
|'''7:00 - 9:00'''&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|lunch&lt;br /&gt;
|'''12:00'''&lt;br /&gt;
|vegetarian&lt;br /&gt;
|-&lt;br /&gt;
|dinner&lt;br /&gt;
|'''18:30'''&lt;br /&gt;
|meat or fish&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Facilities===&lt;br /&gt;
&lt;br /&gt;
* office hours reception: '''8:00 - 16:00'''&lt;br /&gt;
&lt;br /&gt;
* Seminar room available '''9:00 - 22:00'''.&lt;br /&gt;
&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: '''9:00''', René is supposed to be the first on site&lt;br /&gt;
** hotel rooms available: '''15:00'''&lt;br /&gt;
* window of departure on Friday: '''17:00-18:00''' (we need to be gone by '''18:00''')&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|13.03 22:30 Dusseldorf Airport (14.03 Bensberg)&lt;br /&gt;
|19.03 15:45 Dusseldorf Airport&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|Booked&lt;br /&gt;
|Booked&lt;br /&gt;
|-&lt;br /&gt;
|Pono Takamori&lt;br /&gt;
|n/a&lt;br /&gt;
|tba&lt;br /&gt;
|tba&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122215</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122215"/>
		<updated>2023-03-07T16:31:04Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: Deleted the &amp;quot;remove boost&amp;quot; idea; what I wanted to do is not possible&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|13.03 22:30 Dusseldorf Airport (14.03 Bensberg)&lt;br /&gt;
|19.03 15:45 Dusseldorf Airport&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|Booked&lt;br /&gt;
|Booked&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122199</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122199"/>
		<updated>2023-02-27T17:00:56Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
**&amp;quot;raising the bar&amp;quot;: beginner friendly vs minimum required experience&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122185</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122185"/>
		<updated>2023-02-25T15:32:37Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
**rework [[Google Summer of Code]] page to give more guidance for first-timers so that Vectors and others don't have to answer the same questions across dozens of channels every year https://chat.inkscape.org/channel/team_vectors?msg=9TPcKXybuSWZNSndw&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122184</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122184"/>
		<updated>2023-02-22T19:19:36Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: /* Add your ideas here! We'll make a tentative agenda at the start */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|13.03. 12:05 Cologne Hbf&lt;br /&gt;
|17.03. 17:55 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
*@speleo3&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122180</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122180"/>
		<updated>2023-02-20T17:22:32Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|12.03 13h15 Cologne Hbf&lt;br /&gt;
|19.03 13h42 Cologne Hbf&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
**App Store&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122177</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122177"/>
		<updated>2023-02-20T16:16:32Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|booked - ok!&lt;br /&gt;
|booked - ok!&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122173</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122173"/>
		<updated>2023-02-20T15:30:14Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Join the Signal phone group to keep in touch with everyone during the event.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|13.03. 9:55 (Bensberg)&lt;br /&gt;
|17.03. 16:08 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|13.03 13:15 Cologne&lt;br /&gt;
|17.03 18:43 Cologne&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|13.03. 9:00 (Bensberg)&lt;br /&gt;
|17.03. 17:00 (Bensberg)&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122150</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122150"/>
		<updated>2023-02-13T20:52:19Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
**advancing C++ standard (depends on change in macOS pipeline)&lt;br /&gt;
***getting rid of boost&lt;br /&gt;
***using newer stuff from std&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122149</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122149"/>
		<updated>2023-02-13T14:53:31Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Hackfest bensberg sticker.png|left|thumb|150x150px]]&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Hackfest_bensberg_sticker.png&amp;diff=122148</id>
		<title>File:Hackfest bensberg sticker.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Hackfest_bensberg_sticker.png&amp;diff=122148"/>
		<updated>2023-02-13T14:48:33Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hackfest 2023 Bensberg&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122147</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122147"/>
		<updated>2023-02-13T14:39:03Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
***Is there interest in merging communities? E.g. our user channel and Discord?&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122146</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122146"/>
		<updated>2023-02-13T10:36:30Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
All times UTC+1.&lt;br /&gt;
&lt;br /&gt;
* earliest arrival on Monday: 8am&lt;br /&gt;
** hotel rooms available: 3pm&lt;br /&gt;
* latest departure on Friday: 5pm&lt;br /&gt;
** We have some flexibility here, but we need to tell our hosts in advance.&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) to central station ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (public transportation) ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station to Bensberg (cab) ===&lt;br /&gt;
Our hosts have special conditions with a local cab service (https://www.transfer-nurdogan.de/). I can't tell if that's cheaper compared to the others or just for a classy look:&lt;br /&gt;
&lt;br /&gt;
* 45 € (standard)&lt;br /&gt;
* 50 € (large cab, suitable for sharing)&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!Inbound&lt;br /&gt;
!Outbound&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|LH423 13T05:15 FRA&lt;br /&gt;
|UA8853 21T10:50 FRA&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
=== Add your ideas here! We'll make a tentative agenda at the start ===&lt;br /&gt;
&lt;br /&gt;
* Organization&lt;br /&gt;
** Community: Vectors, Testers, Translators, etc.&lt;br /&gt;
*** Social video call with Vectors.&lt;br /&gt;
** Board election&lt;br /&gt;
** Financial status&lt;br /&gt;
** Paid development&lt;br /&gt;
* Infrastructure&lt;br /&gt;
** Website, social media&lt;br /&gt;
** Resources for developers&lt;br /&gt;
* GSoC and Outreachy&lt;br /&gt;
* Development discussions&lt;br /&gt;
** Releases&lt;br /&gt;
** Dependencies&lt;br /&gt;
** Bug fixing&lt;br /&gt;
** GTK4&lt;br /&gt;
** Refactoring&lt;br /&gt;
** etc.&lt;br /&gt;
* Hacking&lt;br /&gt;
** Code reviews&lt;br /&gt;
** Critical bugs for 1.3&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122132</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122132"/>
		<updated>2023-02-07T23:26:46Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
Earliest arrival on Monday is TBA&lt;br /&gt;
&lt;br /&gt;
Latest departure on Friday is TBA&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== I want SFC to pay for my flight/train ==&lt;br /&gt;
&lt;br /&gt;
* @doctormo&lt;br /&gt;
* @jabiertxof&lt;br /&gt;
* @niccokunzmann&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
* organize social video call with Vectors during the Hackfest&lt;br /&gt;
* talk about Inkscape's 20th anniversary - any ideas?&lt;br /&gt;
* your idea here!&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122131</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122131"/>
		<updated>2023-02-07T23:00:30Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''. &amp;lt;s&amp;gt;but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&amp;lt;/s&amp;gt;  We are fully booked and the number of participants is final now.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*LCD projector, DVD player, VHS VCR (lol!)&lt;br /&gt;
*swimming pool, whirlpool, sauna&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
Nature. A castle. A small city.&lt;br /&gt;
&lt;br /&gt;
=== Arrival and Departure ===&lt;br /&gt;
Earliest arrival on Monday is TBA&lt;br /&gt;
&lt;br /&gt;
Latest departure on Friday is TBA&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
* organize social video call with Vectors during the Hackfest&lt;br /&gt;
* talk about Inkscape's 20th anniversary - any ideas?&lt;br /&gt;
* your idea here!&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122130</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122130"/>
		<updated>2023-02-07T22:15:52Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
==Travel information==&lt;br /&gt;
Your main destination is Cologne.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne/Bonn airport (CGN) ===&lt;br /&gt;
Take the tram [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_1219_S19.pdf?1671001552 S19] to Cologne central station. Travel time is about 15 minutes. The tram is scheduled every 20 minutes for most of the day.&lt;br /&gt;
&lt;br /&gt;
=== from Cologne central station ===&lt;br /&gt;
Take the bus [https://ekap-download.vrs.de/downloads/linien/mini-fahrplan/2023_40_SB40.pdf?1670826858 Schnellbus SB 40] that directly connects Cologne central station to Bensberg (final stop). Travel time is about 30 minutes. This bus is scheduled every half hour between 6am and 8pm.&lt;br /&gt;
[[File:Central station.png|none|thumb]]&lt;br /&gt;
Once you arrive at the [https://ekap-download.vrs.de/downloads/haltestellen/lageplan/u_Bergisch_Gladbach_Bensberg.pdf?1670243814 bus stop in Bensberg], you can either take a taxi or walk about 900m to our location.&lt;br /&gt;
[[File:Bus stop bensberg.png|none|thumb]]&lt;br /&gt;
&lt;br /&gt;
== Hotels ==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Cost calculation==&lt;br /&gt;
&lt;br /&gt;
=== per attendee ===&lt;br /&gt;
&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== joint event ===&lt;br /&gt;
One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Total ===&lt;br /&gt;
&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Hackfest Agenda ==&lt;br /&gt;
&lt;br /&gt;
* organize social video call with Vectors during the Hackfest&lt;br /&gt;
* talk about Inkscape's 20th anniversary - any ideas?&lt;br /&gt;
* your idea here!&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Bus_stop_bensberg.png&amp;diff=122129</id>
		<title>File:Bus stop bensberg.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Bus_stop_bensberg.png&amp;diff=122129"/>
		<updated>2023-02-07T21:50:55Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;bus stop Bensberg&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Central_station.png&amp;diff=122128</id>
		<title>File:Central station.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Central_station.png&amp;diff=122128"/>
		<updated>2023-02-07T21:34:20Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;take the bus SB 40&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122108</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122108"/>
		<updated>2023-02-04T13:03:55Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee for housing and catering per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard) by each individual themself. A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =    508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =    280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =     49 €&lt;br /&gt;
--------------------------------------------    837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fees for the joint event. This covers the meeting room (900 €) and all the alcoholic drinks (estimated 500 €) that have been consumed during the event. ''(Alcoholic drinks are not included in our otherwise &amp;quot;all inclusive&amp;quot; package and individual payment is not possible.)''&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =    900 €&lt;br /&gt;
alcoholic drinks            500 € x 1      =    500 €&lt;br /&gt;
--------------------------------------------  1,400 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Total ====&lt;br /&gt;
Using the interim results from above, this brings us to a total cost (excl. travel) of 9,770 €.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
participants                    837 € x 10 =  8,370 €&lt;br /&gt;
joint event                    1400 € x  1 =  1,400 €&lt;br /&gt;
--------------------------------------------  9,770 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122068</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122068"/>
		<updated>2023-02-03T19:13:06Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|-&lt;br /&gt;
|Jabier Arraiza&lt;br /&gt;
|@jabiertxof&lt;br /&gt;
|-&lt;br /&gt;
|Thomas Holder&lt;br /&gt;
|@speleo3&lt;br /&gt;
|-&lt;br /&gt;
|Ted Gould&lt;br /&gt;
|@ted.gould&lt;br /&gt;
|-&lt;br /&gt;
|Nicco Kunzmann&lt;br /&gt;
|@niccokunzmann&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122053</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122053"/>
		<updated>2023-01-21T17:13:39Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|René de Hesselle&lt;br /&gt;
|@dehesselle&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122052</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122052"/>
		<updated>2023-01-19T22:44:05Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|Tavmjong Bah&lt;br /&gt;
|@Tavmjong&lt;br /&gt;
|-&lt;br /&gt;
|Marc Jeanmougin&lt;br /&gt;
|@marcjeanmougin&lt;br /&gt;
|-&lt;br /&gt;
|Chris Rogers&lt;br /&gt;
|@CRogers &lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122049</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122049"/>
		<updated>2023-01-15T22:00:14Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone. ''(After the hackfest you can follow the reimbursement procedure.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122048</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122048"/>
		<updated>2023-01-15T21:58:26Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone.&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122047</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122047"/>
		<updated>2023-01-15T21:51:54Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. There is something special about payment methods that we will have to talk about privately, I'll contact everyone.&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
|-&lt;br /&gt;
|John Doe&lt;br /&gt;
|@johndoe&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|-&lt;br /&gt;
|Jonathan Neuhauser&lt;br /&gt;
|@joneuhauser&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122045</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122045"/>
		<updated>2023-01-15T21:45:29Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: add full address&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach/go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!official address&lt;br /&gt;
!for navigation systems&lt;br /&gt;
|-&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Am Schloss 1-3&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|Generali Akademie&lt;br /&gt;
Jan-Wellem-Straße&lt;br /&gt;
&lt;br /&gt;
51429 Bergisch-Gladbach&lt;br /&gt;
&lt;br /&gt;
Germany&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
* &amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
** we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
=== Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
===Travel information===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Cost calculation===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance =&lt;br /&gt;
&lt;br /&gt;
*Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
*deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
==I want to attend!==&lt;br /&gt;
That's great! Be aware of the following: &lt;br /&gt;
&lt;br /&gt;
*You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. For our non-German attendees it is paramount that you own either a VISA or Mastercard as those are the only accepted methods of payment. If you don't own one of these we will have to organize for someone else to pay for you. ''(That's why this question is being asked in the table below.)''&lt;br /&gt;
*You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!I own a VISA or&lt;br /&gt;
Mastercard&lt;br /&gt;
|-&lt;br /&gt;
|John Doe&lt;br /&gt;
|@johndoe&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
|Martin Owens&lt;br /&gt;
|@doctormo&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122043</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122043"/>
		<updated>2023-01-15T20:54:36Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees''', but do not let that number discourage you from throwing your hat in the ring in case we reach or go over it.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Travel information ===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
=== Cost calculation ===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
=Attendance=&lt;br /&gt;
&lt;br /&gt;
* Hackfest Bensberg 2023 takes place on '''March 13-17, 2023'''&lt;br /&gt;
* deadline to apply for attendance is '''February 01, 2023'''&lt;br /&gt;
&lt;br /&gt;
== preface ==&lt;br /&gt;
In an initial poll, 8 people expressed their interest/availability for this hackfest. Based on this number we are planning for 10 attendees. Should more people be interested, we'll try our best to expand - the earlier we know, the better! If we don't reach 10, we will try to scale down our booking. If you are interested, don't hold yourself back!&lt;br /&gt;
&lt;br /&gt;
== I want to attend! ==&lt;br /&gt;
That's great! Be aware of the following:&lt;br /&gt;
&lt;br /&gt;
* You are making a commitment here which will produce expenses for the project. Please make sure that you will be able to honor this commitment! ''(Are you table to take the week off from your day job? Are you able to travel? etc.)''&lt;br /&gt;
* Every attendee will have to pay their fee of 837 € on the last day of the hackfest. For our non-German attendees it is paramount that you own either a VISA or Mastercard as those are the only accepted methods of payment. If you don't own one of these we will have to organize for someone else to pay for you. ''(That's why this question is being asked in the table below.)''&lt;br /&gt;
* You are eligible to apply no matter if you participated in the initial poll/&amp;quot;call for interest&amp;quot;. ''(Only in case we end up being seriously overbooked and cannot accommodate for everybody we will take the initial poll into account.)''&lt;br /&gt;
&lt;br /&gt;
Now go ahead and add yourself to this table (or ask in [https://gitlab.com/inkscape/inbox/-/issues/8109 this issue] and it will be done for you):&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Name&lt;br /&gt;
!GitLab handle&lt;br /&gt;
!I own a VISA or&lt;br /&gt;
Mastercard&lt;br /&gt;
|-&lt;br /&gt;
|John Doe&lt;br /&gt;
|@johndoe&lt;br /&gt;
|yes&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122037</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122037"/>
		<updated>2022-12-28T21:21:11Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: /* Cost calculation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Travel information ===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
=== Cost calculation ===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee (RdH) needs to pay the additional fee for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Attendance==&lt;br /&gt;
An initial poll to collect general interest/availability resulted in 8 potential attendees, therefore we set our target to 10.&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122036</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122036"/>
		<updated>2022-12-28T21:18:27Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
[[File:Bensberg.png|none|thumb|Bensberg (range indicated to Cologne's Cathedral). Screenshot from Google Maps.]]&lt;br /&gt;
&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Travel information ===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
=== Cost calculation ===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee needs to also pay for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Attendance==&lt;br /&gt;
An initial poll to collect general interest/availability resulted in 8 potential attendees, therefore we set our target to 10.&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=File:Bensberg.png&amp;diff=122035</id>
		<title>File:Bensberg.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=File:Bensberg.png&amp;diff=122035"/>
		<updated>2022-12-28T21:10:58Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bensberg - screenshot from Google Maps&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122034</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122034"/>
		<updated>2022-12-28T21:03:48Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Travel information ===&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
=== Cost calculation ===&lt;br /&gt;
The fee per attendee is 837 € and is due on the last day of the event, payable via debit or credit card (VISA, Mastercard). A billing address needs to be provided in advance.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
hotel room incl. breakfast  127 € x 4 days =  508 €&lt;br /&gt;
catering service (days 1-4)  70 € x 4 days =  280 €&lt;br /&gt;
catering service (day 5)     49 € x 1 day  =   49 €&lt;br /&gt;
--------------------------------------------  837 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;One attendee needs to also pay for the meeting room.&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
meeting room (days 1-5)     180 € x 5 days =  900 €&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Hotels==&lt;br /&gt;
Hotel rooms are provided on-site and are part of our conference package, no dedicated booking necessary.&lt;br /&gt;
&lt;br /&gt;
==Attendance==&lt;br /&gt;
An initial poll to collect general interest/availability resulted in 8 potential attendees, therefore we set our target to 10.&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122033</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122033"/>
		<updated>2022-12-28T20:44:49Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. We are looking to bring together a group of '''10 attendees'''.&lt;br /&gt;
&lt;br /&gt;
This hackfest is a standalone event and not organized around any other event or FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Previous events: [[Hackfest2019 Saarbrücken]], [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
It's a hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Travel information ===&lt;br /&gt;
tbd&lt;br /&gt;
==Hotels==&lt;br /&gt;
No dedicated booking necessary - our conference package comes with hotel rooms on-site.&lt;br /&gt;
&lt;br /&gt;
==Attendance==&lt;br /&gt;
An initial poll to collect general interest/availability resulted in 8 potential attendees, therefore we set our target to 10.&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122032</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122032"/>
		<updated>2022-12-28T20:31:07Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page '''&amp;lt;big&amp;gt;IS WORK IN PROGRESS&amp;lt;/big&amp;gt;''' and details the planning of Inkscape's 2023 hackfest in Bensberg, Germany. The hackfest will take place on '''March 13-17, 2023'''. It is a standalone event and not organized around any other even/FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Old: [[Hackfest2019 Saarbrücken]] [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
A hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company). The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Hackfest===&lt;br /&gt;
tbd&lt;br /&gt;
====Finding the office====&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Traveling information ===&lt;br /&gt;
tbd&lt;br /&gt;
==Hotels==&lt;br /&gt;
No dedicated booking necessary - our conference package comes with hotel rooms on-site.&lt;br /&gt;
&lt;br /&gt;
==Attendance==&lt;br /&gt;
tbd -&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122031</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122031"/>
		<updated>2022-12-28T20:06:31Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
This page details the planning of Inkscape's 2023 hackfest in Bensberg, Germany, Monday March x to Friday March y. It is a standalone event and not organized around any other FOSS conference.&lt;br /&gt;
&lt;br /&gt;
Other pages: [[Hackfest2023 Bensberg Topics|Hackfest2019 Saarbrücken Topics]], [[Hackfest2023 Bensberg Attendees|Hackfest2019 Saarbrücken Attendees]].&lt;br /&gt;
&lt;br /&gt;
Old: [[Hackfest2019 Saarbrücken]] [[Hackfest2019 SCALE]], [[Hackfest2018 Kiel]], [[Hackfest2018 LGM]], [[Hackfest2018]], [[Hackfest2017]], [[Hackfest2016]], [[Hackfest2015]].&lt;br /&gt;
=Description=&lt;br /&gt;
A hackfest! We will work on Inkscape bugs, new features, packaging, website issues, ... in fact anything that can benefit from us being physically in the same space. And let's not forget about the social component - we get to hang and talk and laugh in person since we usually only meet virtually :).&lt;br /&gt;
==Bensberg==&lt;br /&gt;
Bensberg is part of Bergisch Gladbach, a city in the western part of Germany, about 15 km east of Cologne. It is beautifully located in the countryside, surrounded by lush forests slightly elevated to give a great view depending on weather conditions. The nearest airport is Cologne Bonn (CGN) which is an international airport. &lt;br /&gt;
*[https://en.wikipedia.org/wiki/Bergisch_Gladbach Bergisch Gladbach on Wikipedia]&lt;br /&gt;
==Venue==&lt;br /&gt;
Our host is the [https://www.akademie-generali.de/en/home Generali Akademie], the dedicated education and conference center of the Generali Group in Germany (it's an insurance company), which is open to bookings outside the Generali as well. The location's special appeal is its all-inclusive package: conference rooms, hotel rooms and full catering service are conveniently provided on-site.&lt;br /&gt;
&lt;br /&gt;
''(full disclosure: as an employee, RdH has been there multiple times)''&lt;br /&gt;
&lt;br /&gt;
===Hackfest===&lt;br /&gt;
tbd&lt;br /&gt;
====Finding the office====&lt;br /&gt;
tbd&lt;br /&gt;
&lt;br /&gt;
===Catering===&lt;br /&gt;
We have full catering on-site, i.e. breakfast, lunch and dinner including non-alcoholic drinks. Our meeting room also comes with coffee and beverages throughout the day.&lt;br /&gt;
===Facilities===&lt;br /&gt;
*Wireless networking (fast broadband), powered by [https://www.m3connect.de/ m3connect]&lt;br /&gt;
*&amp;lt;u&amp;gt;No wired network available&amp;lt;/u&amp;gt;&lt;br /&gt;
*Europlug type F&lt;br /&gt;
**we should bring some power strips&lt;br /&gt;
*(TODO - not sure if we have that) LCD projector&lt;br /&gt;
*flip chart&lt;br /&gt;
*(TODO add additional info e.g. pool)&lt;br /&gt;
===Vicinity===&lt;br /&gt;
tbd (we're not in a city, we're in the country)&lt;br /&gt;
&lt;br /&gt;
=== Traveling information ===&lt;br /&gt;
tbd&lt;br /&gt;
==Hotels==&lt;br /&gt;
No dedicated booking necessary - our conference package comes with hotel rooms on-site.&lt;br /&gt;
&lt;br /&gt;
==Attendance==&lt;br /&gt;
Anybody interested in Inkscape is welcome to attend. Funding support for travel expenses is based on past contributions to Inkscape. See the [[Hackfest2019 Saarbrücken Attendees]] page for more details.&lt;br /&gt;
==Hackfest Topics and Schedule==&lt;br /&gt;
A schedule will be developed based on input from attendees and the Inkscape community. See the [[Hackfest2019 Saarbrücken Topics]] page for further details.&lt;br /&gt;
===May, 27th===&lt;br /&gt;
*9:00 Official Hackfest Begin at k8's offices. Tobias Ellinghaus will be there to greet Inkscapers and k8 staff.&lt;br /&gt;
===May, 28th===&lt;br /&gt;
*hacking at k8&lt;br /&gt;
*Hackfest dinner&lt;br /&gt;
===May, 29th===&lt;br /&gt;
*12:00-18:00: From Code to Community (Pingusson building). Volunteers for booth: Marc, Mihaela&lt;br /&gt;
*18:00: LGM opening&lt;br /&gt;
==Helpers==&lt;br /&gt;
The following folk have offered to assist with organization work, in limited capacities:&lt;br /&gt;
*houz&lt;br /&gt;
*Moini&lt;br /&gt;
*octycs&lt;br /&gt;
*Mc&lt;br /&gt;
*Tav&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122030</id>
		<title>Hackfest2023 Bensberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Hackfest2023_Bensberg&amp;diff=122030"/>
		<updated>2022-12-28T16:56:55Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: Created page with &amp;quot;Category:Hackfest  TBD&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Hackfest]]&lt;br /&gt;
&lt;br /&gt;
TBD&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.2.1&amp;diff=121863</id>
		<title>Release notes/1.2.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.2.1&amp;diff=121863"/>
		<updated>2022-06-27T21:40:18Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: Add macOS packaging fix for crashing extension&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/1.2.x Commit History Main Program (starting from: xxx)]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/1.2.x Commit History Extensions (starting from: xxx)]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/1.2.x Commit History Documentation (starting from: xxx)]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--'''Released on September XX, 2022.'''--&amp;gt;&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
Inkscape 1.2.1 is a maintenance and bugfix release, which brings you an important fix for a bug where a loss of data occurred, that could only be discovered when the file was saved and opened again. &lt;br /&gt;
In addition to this critical bug fix, more than xx bug fixes, xx crash fixes, xx fixes for extension failures, xx improved user interface translations and improved documentation.&lt;br /&gt;
&lt;br /&gt;
== Bug fixes ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&amp;lt;!--([Bug #], [MR #])--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Fixed accented characters in '''context menus for input fields''' in non-English languages on Windows ([https://gitlab.com/inkscape/inkscape/-/issues/3152 Bug #3152], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
* Added back the ability to set a '''keyboard shortcut for swapping fill and stroke paint''' of an object ([https://gitlab.com/inkscape/inkscape/-/issues/3502 Bug #3502], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
* When there are no '''recently used files''' to show, a text tells you about it now instead of the submenu just remaining empty ([https://gitlab.com/inkscape/inkscape/-/issues/2926 Bug #2962], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
* Fixed im- and exporting images failing when using the snap packaging format on Linux ([https://gitlab.com/inkscape/inkscape/-/issues/3624 Bug #3624], [https://gitlab.com/inkscape/inkscape/-/issues/3639 Bug #3639] [https://gitlab.com/inkscape/inkscape/-/merge_requests/4510 MR #4510])&lt;br /&gt;
* Fixed Inkscape freezing when starting with many fonts installed and the Text and Font dialog open ([https://gitlab.com/inkscape/inkscape/-/merge_requests/4491 MR #4491])&lt;br /&gt;
*Fixed '''extensions crashing''' on macOS 10.13-10.15 due to faulty Accelerate backend in NumPy ([https://gitlab.com/inkscape/inkscape/-/issues/3551 Bug #3551] , [https://gitlab.com/inkscape/inkscape/-/merge_requests/4560 MR #4560])&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
* The '''Export''' button is no longer greyed out for the next export, when an export options dialog was canceled while batch exporting ([https://gitlab.com/inkscape/inkscape/-/issues/3605 Bug #3605], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
&lt;br /&gt;
=== Themes ===&lt;br /&gt;
&lt;br /&gt;
* Text that was dark blue on dark background with a dark theme in the Keyboard shortcuts preferences and the Text and Font dialog is now readable (bold instead of different color) ([https://gitlab.com/inkscape/inkscape/-/issues/910 Bug #910], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535]&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
* Fixed the size of the text background for the measurements created by the '''Measurement tool''' when converting a measurement to objects ([https://gitlab.com/inkscape/inkscape/-/issues/3412 Bug #3412], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
* The '''Circle''' and '''3D Box''' tools work again when using Inkscape in Czech language on Linux ([https://gitlab.com/inkscape/inkscape/-/issues/3571 Bug #3571], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
&lt;br /&gt;
== Crash fixes ==&lt;br /&gt;
&lt;br /&gt;
Fixed a crash when …&lt;br /&gt;
&lt;br /&gt;
* … double-clicking on a 3D box and one when panning, then switching to 3D box tool ([https://gitlab.com/inkscape/inkscape/-/issues/3538 Bug #3538], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
* … the option 'Check attributes and style properties on Editing' was enabled and the document was edited while there was additional whitespace inside group items in the SVG code ([https://gitlab.com/inkscape/inkscape/-/issues/2799 Bug #2799], [https://gitlab.com/inkscape/inbox/-/issues/4580 Bug inbox#4580], [https://gitlab.com/inkscape/inbox/-/issues/7148 Bug #7148], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
* … converting an LPE path (e.g. when exporting to PDF) to a normal object when the original path was corrupted ([https://gitlab.com/inkscape/inkscape/-/issues/3599 Bug #3599], [https://gitlab.com/inkscape/inkscape/-/merge_requests/4535 MR #4535])&lt;br /&gt;
&lt;br /&gt;
== Extension bug fixes ==&lt;br /&gt;
&lt;br /&gt;
Complete as of 2022/05/24, see https://gitlab.com/inkscape/extensions/-/network/master for details&lt;br /&gt;
=== Crash fixes === &lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
=== Bugfixes in particular extensions ===&lt;br /&gt;
&lt;br /&gt;
* Parts of a LaTeX formula no longer become invisible when running the '''pdflatex''' extension multiple times ([https://gitlab.com/inkscape/extensions/-/issues/475 Bug extensions#475], [https://gitlab.com/inkscape/extensions/-/merge_requests/477 MR extensions#477])&lt;br /&gt;
* A few typos in the '''pdflatex''' extension  have been fixed ([https://gitlab.com/inkscape/extensions/-/merge_requests/475/diffs MR extensions#475])&lt;br /&gt;
* The help messages and tooltips of the '''Interpolate''', '''Restack''' and '''Extrude''' extensions have been improved ([https://gitlab.com/inkscape/extensions/-/merge_requests/471 MR extensions#471])&lt;br /&gt;
&lt;br /&gt;
=== Improvements that apply to all extensions ===&lt;br /&gt;
&lt;br /&gt;
* Unnecessary deprecation warnings have been addressed ([https://gitlab.com/inkscape/extensions/-/merge_requests/476 MR extensions#476]).&lt;br /&gt;
&lt;br /&gt;
=== Improvements for development / deployment ===&lt;br /&gt;
&lt;br /&gt;
* '''Translation files''' are now always generated automatically and available for download&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Basque&lt;br /&gt;
* Czech&lt;br /&gt;
* Greek&lt;br /&gt;
* Simplified Chinese&lt;br /&gt;
* Slovenian&lt;br /&gt;
* Turkish&lt;br /&gt;
&lt;br /&gt;
The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* … &lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
These issues could not be fixed in time for the 1.2.1 release.&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
&lt;br /&gt;
== Other releases ==&lt;br /&gt;
&lt;br /&gt;
{{:Release notes}}&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1.2&amp;diff=120740</id>
		<title>Release notes/1.1.2</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1.2&amp;diff=120740"/>
		<updated>2022-01-22T23:41:34Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: Undo revision 120739 by Dehesselle (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/1.1.x Commit History Main Program (starting from: xxx)]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/1.1.x Commit History Extensions (starting from: xxx)]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/1.1.x Commit History Documentation (starting from: xxx)]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
c78b9e5ce4 - (Wed, 22 Dec 2021 16:12:35 -0500) Sync extensions in time for 1.1.2  - Martin Owens (HEAD -&amp;gt; 1.1.x, origin/1.1.x)&lt;br /&gt;
([MR #], [Bug #])&lt;br /&gt;
&lt;br /&gt;
+ Documentation updates&lt;br /&gt;
&lt;br /&gt;
c3084ef5ed - (Wed, 22 Sep 2021 14:22:41 +0200) Update gtk-mac-integration  - René de Hesselle&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Bug fixes ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&lt;br /&gt;
* Fixed '''Windows test builds''', so testers can again try out intermediate versions ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3762 MR #3762]&lt;br /&gt;
* Fixed '''building Inkscape with GCC 12 / C++17''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3683 MR #3683])&lt;br /&gt;
* Fixed '''building Inkscape with Poppler 21.11.0''', e.g. on Slackware Linux ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2906 Bug #2906])&lt;br /&gt;
* '''Toolbar fields''' now use the units the user selected as display units (in Document preferences) again ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3716 MR #3716], [https://gitlab.com/inkscape/inkscape/-/issues/1747 Bug #1747])&lt;br /&gt;
* '''Mouse cursors''' for tools are now completely visible, no matter how transparent the currently selected color is ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3640 MR #3640], [https://gitlab.com/inkscape/inkscape/-/issues/2025 Bug #2025])&lt;br /&gt;
* '''Graphic tablet pens''' that have a built-in eraser tip now again automatically switch to the correct tool ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR 3636], [https://gitlab.com/inkscape/inkscape/-/issues/2866 Bug #2866])&lt;br /&gt;
* On '''macOS''', the system menu now uses the correct language and menu decorations look better on systems with non-English locales ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3531 MR #3531])&lt;br /&gt;
* When clicking on the '''color indicator''' in the bottom left corner, the &amp;lt;code&amp;gt;Fill and Stroke&amp;lt;/code&amp;gt; dialog will now open again ([https://gitlab.com/inkscape/inkscape/-/issues/2621 Bug #2621], [https://gitlab.com/inkscape/inkscape/-/merge_requests/3754 MR #3754])&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
* '''Filter editor''': The standard deviation for Gaussian blur can now be 0, if there is no blur ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3640 MR #3650], [https://gitlab.com/inkscape/inkscape/-/issues/2724 Bug #2724])&lt;br /&gt;
&lt;br /&gt;
=== Themes ===&lt;br /&gt;
&lt;br /&gt;
* '''win32 theme''' now contains expand/collapse arrows for expandable lists ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2876 Bug #2876])&lt;br /&gt;
* '''win32 theme''' offers improved contrast when hovering over text ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3550 MR #3550])&lt;br /&gt;
* '''win32 theme''' context menu border looks better now ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3550 MR #3550])&lt;br /&gt;
* '''win32 theme''' offers improved contrast when hovering over text ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3550 MR #3550])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
==== Text tool ==== &lt;br /&gt;
* '''Font dropdown''' now updates when changing font for the same text multiple times through the dropdown menu ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3717 MR #3731], [https://gitlab.com/inkscape/inkscape/-/issues/2056 Bug #2056])&lt;br /&gt;
* '''Line spacing''' works again with current Pango versions (e.g. 1.49) as used on Fedora Linux ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3717 MR #3717], [https://gitlab.com/inkscape/inkscape/-/issues/2864 Bug #2864])&lt;br /&gt;
* '''Line spacing''' now always stays the same when only changing the line height units ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3640 MR #3640], [https://gitlab.com/inkscape/inkscape/-/issues/2465 Bug #2465])&lt;br /&gt;
* '''Unicode mode''' now accepts numbers entered with numpad keys (a bug with a long beard, reported in 2014! [https://gitlab.com/inkscape/inkscape/-/merge_requests/3716 MR #3716], [https://bugs.launchpad.net/inkscape/+bug/1394559 Launchpad Bug #1394559]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Crash fixes ==&lt;br /&gt;
&lt;br /&gt;
Fixed a crash when …&lt;br /&gt;
&lt;br /&gt;
* … grouping / ungrouping / importing / pasting a '''3D box''' or after doing so and editing it ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3717 MR #3731], [https://gitlab.com/inkscape/inkscape/-/issues/2833 Bug #2833])&lt;br /&gt;
* … trying to add the '''&amp;quot;Measure segments&amp;quot; Live Path Effect''' to a path with empty / one-node subpaths ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2725 Bug #2725])&lt;br /&gt;
* … when running &amp;lt;code&amp;gt;inkscape --actions=action-list&amp;lt;/code&amp;gt; on the command line if Inkscape has been built with DBUS support ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2813 Bug #2813])&lt;br /&gt;
* … when exporting to a raster image file with a file name that contains non-ASCII characters ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3784 MR #3784], [https://gitlab.com/inkscape/inkscape/-/issues/2548 Bug #2548])&lt;br /&gt;
* … when importing an SVG file that contains a '''3D box''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3592 MR #3592], [https://gitlab.com/inkscape/inkscape/-/issues/2881 Bug #2881])&lt;br /&gt;
* … when pressing Backspace while using the '''Bézier tool''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3715 MR #3715], [https://gitlab.com/inkscape/inkscape/-/issues/2764 Bug #2764])&lt;br /&gt;
* … when selecting &amp;lt;code&amp;gt;Other locations&amp;lt;/code&amp;gt; in the '''Open/Save/Import dialog''', with the preview active ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3786 MR #3786], []https://gitlab.com/inkscape/inkscape/-/issues/2549 Bug #2549)&lt;br /&gt;
&lt;br /&gt;
== Extension bug fixes ==&lt;br /&gt;
* The '''file chooser''' in extensions can no longer accidentally choose a directory instead of a file ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3716 MR #3716], [https://gitlab.com/inkscape/inkscape/-/issues/2822 Bug #2822])&lt;br /&gt;
* '''Help texts''' in 'Scatter' and 'Pattern along Path' extensions simplified ([https://gitlab.com/inkscape/extensions/-/merge_requests/378 MR extensions#378])&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Brazilian Portuguese&lt;br /&gt;
* Catalan&lt;br /&gt;
* Croatian&lt;br /&gt;
* Czech&lt;br /&gt;
* German&lt;br /&gt;
* Lithuanian&lt;br /&gt;
* Russian&lt;br /&gt;
* Simplified Chinese&lt;br /&gt;
* Slovenian&lt;br /&gt;
* Spanish&lt;br /&gt;
* Ukrainian&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* … --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Documentation is now built with current Inkscape and Python 3. The tutorial files make use of SVG2 flowed text ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3531 MR docs#3531])&lt;br /&gt;
* Translation statistics show correct version number ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/4eb6a4f710d815c4d580ac0938fe694da654649a Commit 4eb6a4])&lt;br /&gt;
* Documentation for how to generate and write documentation updated ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/069f692e9b350a888127006d591c9ddea611ee43 Commit docs-069f69]; [https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/53f93cc0d7036401852cd4b691d3133e8c4435cf Commit docs-53f93c])&lt;br /&gt;
* Man page export area description improved ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/72b2a8756238817c819f454e8791268897723617 Commit docs-72b2a8])&lt;br /&gt;
* Added two XML editor shortcuts to keyboard shortcut reference ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/a4700890efa2e8a8127496d05944133d7b843b1b Commit docs-a47008], [https://gitlab.com/inkscape/inkscape-docs/documentation/-/issues/55 Bug docs#55])&lt;br /&gt;
* Broken translation files now cause the documentation generation to abort ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/f3f16d9efe0989ff8c19b43a370caf91fe530c52 Commit docs-f3f16d], [https://gitlab.com/inkscape/inkscape-docs/documentation/-/issues/37 Bug docs#37])&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
These issues could not be fixed in time for the 1.1.2 release.&lt;br /&gt;
&lt;br /&gt;
* The unit conversions for circles and rectangles is incorrect, which leads to displaced elements for some extensions ([https://gitlab.com/inkscape/extensions/-/issues/437 extensions#437], [https://gitlab.com/inkscape/extensions/-/issues/438 extensions#438]). Workaround: Convert circles and rectangles to paths before calling the extension.&lt;br /&gt;
&lt;br /&gt;
== Other releases ==&lt;br /&gt;
&lt;br /&gt;
{{:Release notes}}&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1.2&amp;diff=120739</id>
		<title>Release notes/1.1.2</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1.2&amp;diff=120739"/>
		<updated>2022-01-22T22:49:25Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: add raised system requirements for macOS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/1.1.x Commit History Main Program (starting from: xxx)]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/1.1.x Commit History Extensions (starting from: xxx)]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/1.1.x Commit History Documentation (starting from: xxx)]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* …&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
c78b9e5ce4 - (Wed, 22 Dec 2021 16:12:35 -0500) Sync extensions in time for 1.1.2  - Martin Owens (HEAD -&amp;gt; 1.1.x, origin/1.1.x)&lt;br /&gt;
([MR #], [Bug #])&lt;br /&gt;
&lt;br /&gt;
+ Documentation updates&lt;br /&gt;
&lt;br /&gt;
c3084ef5ed - (Wed, 22 Sep 2021 14:22:41 +0200) Update gtk-mac-integration  - René de Hesselle&lt;br /&gt;
&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
* '''macOS''': new minimum supported OS is '''macOS High Sierra 10.13'''&lt;br /&gt;
&lt;br /&gt;
== Bug fixes ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&lt;br /&gt;
* Fixed '''Windows test builds''', so testers can again try out intermediate versions ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3762 MR #3762]&lt;br /&gt;
* Fixed '''building Inkscape with GCC 12 / C++17''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3683 MR #3683])&lt;br /&gt;
* Fixed '''building Inkscape with Poppler 21.11.0''', e.g. on Slackware Linux ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2906 Bug #2906])&lt;br /&gt;
* '''Toolbar fields''' now use the units the user selected as display units (in Document preferences) again ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3716 MR #3716], [https://gitlab.com/inkscape/inkscape/-/issues/1747 Bug #1747])&lt;br /&gt;
* '''Mouse cursors''' for tools are now completely visible, no matter how transparent the currently selected color is ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3640 MR #3640], [https://gitlab.com/inkscape/inkscape/-/issues/2025 Bug #2025])&lt;br /&gt;
* '''Graphic tablet pens''' that have a built-in eraser tip now again automatically switch to the correct tool ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR 3636], [https://gitlab.com/inkscape/inkscape/-/issues/2866 Bug #2866])&lt;br /&gt;
* On '''macOS''', the system menu now uses the correct language and menu decorations look better on systems with non-English locales ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3531 MR #3531])&lt;br /&gt;
* When clicking on the '''color indicator''' in the bottom left corner, the &amp;lt;code&amp;gt;Fill and Stroke&amp;lt;/code&amp;gt; dialog will now open again ([https://gitlab.com/inkscape/inkscape/-/issues/2621 Bug #2621], [https://gitlab.com/inkscape/inkscape/-/merge_requests/3754 MR #3754])&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
* '''Filter editor''': The standard deviation for Gaussian blur can now be 0, if there is no blur ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3640 MR #3650], [https://gitlab.com/inkscape/inkscape/-/issues/2724 Bug #2724])&lt;br /&gt;
&lt;br /&gt;
=== Themes ===&lt;br /&gt;
&lt;br /&gt;
* '''win32 theme''' now contains expand/collapse arrows for expandable lists ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2876 Bug #2876])&lt;br /&gt;
* '''win32 theme''' offers improved contrast when hovering over text ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3550 MR #3550])&lt;br /&gt;
* '''win32 theme''' context menu border looks better now ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3550 MR #3550])&lt;br /&gt;
* '''win32 theme''' offers improved contrast when hovering over text ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3550 MR #3550])&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
==== Text tool ==== &lt;br /&gt;
* '''Font dropdown''' now updates when changing font for the same text multiple times through the dropdown menu ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3717 MR #3731], [https://gitlab.com/inkscape/inkscape/-/issues/2056 Bug #2056])&lt;br /&gt;
* '''Line spacing''' works again with current Pango versions (e.g. 1.49) as used on Fedora Linux ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3717 MR #3717], [https://gitlab.com/inkscape/inkscape/-/issues/2864 Bug #2864])&lt;br /&gt;
* '''Line spacing''' now always stays the same when only changing the line height units ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3640 MR #3640], [https://gitlab.com/inkscape/inkscape/-/issues/2465 Bug #2465])&lt;br /&gt;
* '''Unicode mode''' now accepts numbers entered with numpad keys (a bug with a long beard, reported in 2014! [https://gitlab.com/inkscape/inkscape/-/merge_requests/3716 MR #3716], [https://bugs.launchpad.net/inkscape/+bug/1394559 Launchpad Bug #1394559]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Crash fixes ==&lt;br /&gt;
&lt;br /&gt;
Fixed a crash when …&lt;br /&gt;
&lt;br /&gt;
* … grouping / ungrouping / importing / pasting a '''3D box''' or after doing so and editing it ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3717 MR #3731], [https://gitlab.com/inkscape/inkscape/-/issues/2833 Bug #2833])&lt;br /&gt;
* … trying to add the '''&amp;quot;Measure segments&amp;quot; Live Path Effect''' to a path with empty / one-node subpaths ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2725 Bug #2725])&lt;br /&gt;
* … when running &amp;lt;code&amp;gt;inkscape --actions=action-list&amp;lt;/code&amp;gt; on the command line if Inkscape has been built with DBUS support ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3636 MR #3636], [https://gitlab.com/inkscape/inkscape/-/issues/2813 Bug #2813])&lt;br /&gt;
* … when exporting to a raster image file with a file name that contains non-ASCII characters ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3784 MR #3784], [https://gitlab.com/inkscape/inkscape/-/issues/2548 Bug #2548])&lt;br /&gt;
* … when importing an SVG file that contains a '''3D box''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3592 MR #3592], [https://gitlab.com/inkscape/inkscape/-/issues/2881 Bug #2881])&lt;br /&gt;
* … when pressing Backspace while using the '''Bézier tool''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3715 MR #3715], [https://gitlab.com/inkscape/inkscape/-/issues/2764 Bug #2764])&lt;br /&gt;
* … when selecting &amp;lt;code&amp;gt;Other locations&amp;lt;/code&amp;gt; in the '''Open/Save/Import dialog''', with the preview active ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3786 MR #3786], []https://gitlab.com/inkscape/inkscape/-/issues/2549 Bug #2549)&lt;br /&gt;
&lt;br /&gt;
== Extension bug fixes ==&lt;br /&gt;
* The '''file chooser''' in extensions can no longer accidentally choose a directory instead of a file ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3716 MR #3716], [https://gitlab.com/inkscape/inkscape/-/issues/2822 Bug #2822])&lt;br /&gt;
* '''Help texts''' in 'Scatter' and 'Pattern along Path' extensions simplified ([https://gitlab.com/inkscape/extensions/-/merge_requests/378 MR extensions#378])&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Brazilian Portuguese&lt;br /&gt;
* Catalan&lt;br /&gt;
* Croatian&lt;br /&gt;
* Czech&lt;br /&gt;
* German&lt;br /&gt;
* Lithuanian&lt;br /&gt;
* Russian&lt;br /&gt;
* Simplified Chinese&lt;br /&gt;
* Slovenian&lt;br /&gt;
* Spanish&lt;br /&gt;
* Ukrainian&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* … --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Documentation is now built with current Inkscape and Python 3. The tutorial files make use of SVG2 flowed text ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3531 MR docs#3531])&lt;br /&gt;
* Translation statistics show correct version number ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/4eb6a4f710d815c4d580ac0938fe694da654649a Commit 4eb6a4])&lt;br /&gt;
* Documentation for how to generate and write documentation updated ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/069f692e9b350a888127006d591c9ddea611ee43 Commit docs-069f69]; [https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/53f93cc0d7036401852cd4b691d3133e8c4435cf Commit docs-53f93c])&lt;br /&gt;
* Man page export area description improved ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/72b2a8756238817c819f454e8791268897723617 Commit docs-72b2a8])&lt;br /&gt;
* Added two XML editor shortcuts to keyboard shortcut reference ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/a4700890efa2e8a8127496d05944133d7b843b1b Commit docs-a47008], [https://gitlab.com/inkscape/inkscape-docs/documentation/-/issues/55 Bug docs#55])&lt;br /&gt;
* Broken translation files now cause the documentation generation to abort ([https://gitlab.com/inkscape/inkscape-docs/documentation/-/commit/f3f16d9efe0989ff8c19b43a370caf91fe530c52 Commit docs-f3f16d], [https://gitlab.com/inkscape/inkscape-docs/documentation/-/issues/37 Bug docs#37])&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
These issues could not be fixed in time for the 1.1.2 release.&lt;br /&gt;
&lt;br /&gt;
* The unit conversions for circles and rectangles is incorrect, which leads to displaced elements for some extensions ([https://gitlab.com/inkscape/extensions/-/issues/437 extensions#437], [https://gitlab.com/inkscape/extensions/-/issues/438 extensions#438]). Workaround: Convert circles and rectangles to paths before calling the extension.&lt;br /&gt;
&lt;br /&gt;
== Other releases ==&lt;br /&gt;
&lt;br /&gt;
{{:Release notes}}&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119748</id>
		<title>Release notes/1.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119748"/>
		<updated>2021-05-15T12:11:06Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: Remove announcement to raise system requirements&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/master Commit History Main Program (starting from: 2b71d25 (Tue Dec 3 15:29:50 2019 +0100))]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/master Commit History Extensions (starting from: fe0fe398 (October 28, 2019))]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/master Commit History Documentation (starting from: cc619d14 (December 15 2019))]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|Notes:&lt;br /&gt;
&lt;br /&gt;
For changes made even before the 1.0 release that aren't in 1.0, try to find out if the checked and not stroked ones here: https://gitlab.com/inkscape/inkscape/-/issues/1030 have really not been cherrypicked&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* https://gitlab.com/inkscape/inkscape/-/commit/eead83eecce642c90a9727e1890d5fd367d8df3a&lt;br /&gt;
* https://gitlab.com/inkscape/inkscape/-/commit/a99dcaa31c0605ca8e0f3d2bf2dde526bc79b6b7&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
Inkscape 1.1 is the latest major Inkscape release that brings users many fresh new features and new functionality. &lt;br /&gt;
The most notable changes include:&lt;br /&gt;
&lt;br /&gt;
* A '''[[#welcome|Welcome dialog]]''', where the look of Inkscape can be selected, and some choices for the new document's size or file to open are available&lt;br /&gt;
* A '''[[#command_palette|Command palette]]''' that opens when the &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; key is pressed and that allows to search and use many functions without having to use a keyboard shortcut or going through the menus&lt;br /&gt;
* It is now possible to '''[[#paste_nodes|copy, cut and paste parts of paths]]''' with the Node tool&lt;br /&gt;
* The dialog '''[[#docking|docking system has been rewritten]]''', which resolves many issues with Inkscape's docked dialogs and allows you to dock dialogs on either side of the screen&lt;br /&gt;
* New '''[[#outline_overlay|Outline Overlay mode]]''' that displays object outlines while also showing their real colors&lt;br /&gt;
* Preferences options are now easier to find by using the '''[[#pref_search|new search field]]'''&lt;br /&gt;
* It is '''[[#png_export|no longer necessary to remember to click on 'Export']]''' in the PNG Export dialog, as the exporting will already happen after the click on 'Save' in the file selection dialog.&lt;br /&gt;
* Export as '''[[#raster_export|JPG, TIFF, optimized PNG and WebP]]''' directly from Inkscape&lt;br /&gt;
* When pasting a copied object, Inkscape now '''[[#pot|pastes it directly on top of the currently selected object]]''' by default&lt;br /&gt;
* An extension for updating extensions and installing additional extensions, called the '''[[#extman|Extension Manager]]''' (currently in beta stage)&lt;br /&gt;
&lt;br /&gt;
== Important changes for packagers ==&lt;br /&gt;
&lt;br /&gt;
* Inkscape no longer depends on GtkSpell and ASpell but on GSpell for spell checking.&lt;br /&gt;
* lib2geom has been moved [https://gitlab.com/inkscape/lib2geom into its own git submodule] (like the extensions), a new release is available.&lt;br /&gt;
* lcms2 is a mandatory dependency now, librevenge has been common for years, dropped checks for its use with libwpg, libvisio and libcdr, checks for very old versions of libwpg, libvisio, libcdr removed, gc, double-conv, readline, and lcms2 are detected with pkg-config, iconv, intl detected with cmake system ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2475 MR #2475])&lt;br /&gt;
* Inkscape now ships a /share/themes folder with two custom themes that are only suitable for use with Inkscape (as a git submodule)&lt;br /&gt;
* Support for Python 2 has been dropped for Inkscape extensions&lt;br /&gt;
* &amp;lt;code&amp;gt;INKSCAPE_DATADIR&amp;lt;/code&amp;gt; can be set to a different default value at build time ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2276 MR #2276])&lt;br /&gt;
* Support local lib2geom in install directory ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2327 MR #2327], [https://gitlab.com/inkscape/inkscape/-/merge_requests/2379 #2379])&lt;br /&gt;
&lt;br /&gt;
== General user interface ==&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;span id=&amp;quot;command_palette&amp;quot;&amp;gt;Command palette&amp;lt;/span&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
* Pressing &amp;lt;kbd&amp;gt;'''?'''&amp;lt;/kbd&amp;gt; will open the new Command palette.&lt;br /&gt;
* In the little overlay, a type-forward search allows you to find any available command to execute on the whole drawing or selection. The list of available commands is currently restricted to those commands that have already been converted to 'actions', as part of an ongoing effort. Additionally, it includes the option to import or open files from Inkscape's document usage history.&lt;br /&gt;
** Some commands allow you to indicate parameters. A little keyboard icon will show you when the program expects a parameter (such as an angle for rotation, or a fraction for scaling). Note that the unit that is used for parameters is usually 'px', not the display unit. Some parameters require a specific format (like a comma-separated list of values for moving). The format is often indicated in the description of the command, e.g. to align selected objects to the last selected one's left side, find the 'align objects' command, then type 'left last'.&lt;br /&gt;
** Some commands do nothing visible in the user interface (yet), as either &lt;br /&gt;
*** they only work in conjunction with other commands, such as commands that change how a file is exported, or commands that export the file. These need to be entered in order, e.g. &amp;lt;code&amp;gt;export type&amp;lt;/code&amp;gt; ⯈ type 'png' ⯈ press &amp;lt;kbd&amp;gt;Enter&amp;lt;/kbd&amp;gt; ⯈ press &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; ⯈ &amp;lt;code&amp;gt;export file name&amp;lt;/code&amp;gt; ⯈ type a file name ⯈ press &amp;lt;kbd&amp;gt;Enter&amp;lt;/kbd&amp;gt; ⯈ press &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; ⯈ &amp;lt;code&amp;gt;export do&amp;lt;/code&amp;gt; ⯈ press &amp;lt;kbd&amp;gt;Enter&amp;lt;/kbd&amp;gt;; &amp;lt;code&amp;gt;export do&amp;lt;/code&amp;gt; in this example can also be used repeatedly to export the updated image to the same file name) or&lt;br /&gt;
*** they produce output on the command line (like commands asking for coordinates of objects), which you will only see if you have started Inkscape from the command line.&lt;br /&gt;
* Press &amp;lt;kbd&amp;gt;Enter&amp;lt;/kbd&amp;gt; to execute any command.&lt;br /&gt;
* By pressing the &amp;lt;kbd&amp;gt;↑&amp;lt;/kbd&amp;gt; (upwards arrow key), you enter the history mode, where you can choose between commands that you have already used.&lt;br /&gt;
* To close the palette, if not using any of the commands offered, you can press &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; again, or just click on the canvas.&lt;br /&gt;
&lt;br /&gt;
If a keyboard shortcut is available for the selected command, it will show up in the command palette (in the form that it is saved in the keyboard shortcut file).&lt;br /&gt;
In the settings, at &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Interface: Command palette&amp;lt;/code&amp;gt;, you can select some of the info you would like the palette to display. In addition to the translated action name, it can also show the English names of the commands and the corresponding command line argument name. &lt;br /&gt;
&lt;br /&gt;
This feature was added by Google Summer of Code Student Abhay Raj Singh in 2020. You can learn more about the feature's development [https://gitlab.com/rathod-sahaab/gsoc-2020-inkscape on GitLab] or in [https://dev.to/rathod_sahaab/inkscape-command-palette-merged-15c2 Abhay's blog entry]. ([https://gitlab.com/inkscape/ux/-/issues/31 UX issue #31], [https://gitlab.com/inkscape/inkscape/-/merge_requests/2072  MR #2072])&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=450px&amp;gt;&lt;br /&gt;
File:Command pallet demo.gif|The new Command palette can be opened by pressing &amp;quot;?&amp;quot;&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;span id=&amp;quot;pot&amp;quot;&amp;gt;Paste on top of selection&amp;lt;/span&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
When pasting an object from the clipboard onto the canvas, Inkscape will now by default paste it right above the currently selected object. This feature can be disabled in &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Behavior ⯈ Selecting: Paste on top of selection instead of layer-top&amp;lt;/code&amp;gt; ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2476 MR #2476], [https://gitlab.com/inkscape/ux/-/issues/65 Usability test #65]).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=450px&amp;gt;&lt;br /&gt;
File:Pasting on top of selected + keys.gif| Pasting on top of selection&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Paste text as SVG data ===&lt;br /&gt;
&lt;br /&gt;
Plain text from editors will now be interpreted as an SVG document when pasted into Inkscape (and not currently editing a text object), so you can now open an SVG file in your text editor and copy and paste the whole file into Inkscape ([https://gitlab.com/inkscape/inkscape/-/commit/14f5389926b1a1831ffa8311179d52cc5e8ea134 Commit #14f53899], [https://gitlab.com/inkscape/inbox/-/issues/4845 Known issues]). This only works with complete SVG files, not with parts. This was originally a bug fix for copy-pasting SVG data from applications that do not use the correct mime type when copying their vector contents to the clipboard, but appears to have other potential uses, too.&lt;br /&gt;
&lt;br /&gt;
=== Paste size ===&lt;br /&gt;
&lt;br /&gt;
When the option to use the geometrical bounding box is selected in the preferences, the size of the geometrical bounding box will now be used for copying and pasting an object's size ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2243 MR #2243]).&lt;br /&gt;
&lt;br /&gt;
== Canvas ==&lt;br /&gt;
&lt;br /&gt;
=== New Display mode ===&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;span id=&amp;quot;outline_overlay&amp;quot;&amp;gt;'Outline Overlay' display mode&amp;lt;/span&amp;gt;: In this mode, a toned down view of the drawing (not click-sensitive) is shown behind the (click-sensitive) object outlines. The opacity of the original drawing in this view mode can be set in &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Rendering: Outline overlay opacity&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=450px&amp;gt;&lt;br /&gt;
File:Outline Overlay Preview.png|Outline Overlay Display mode&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Handles ===&lt;br /&gt;
&lt;br /&gt;
* Inkscape now uses vector-based handles, which are currently hardcoded (not SVG) ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2334 MR #2334])&lt;br /&gt;
* The maximum handle size has been increased, so users with HiDPI displays will be able to enlarge them to a more comfortable size from &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Interface: Handle size&amp;lt;/code&amp;gt;&lt;br /&gt;
* Rotation center handles have been made more visible&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=200px&amp;gt;&lt;br /&gt;
File:Handels.png|New handles design&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Guides ===&lt;br /&gt;
&lt;br /&gt;
* Guide positions can now be defined with higher precision (5 digits after the decimal separator instead of 3) ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2951 MR #2951]).&lt;br /&gt;
* Guides can no longer be moved using the Tweak or Spray tool, but only with the Node and Selector tools ([https://gitlab.com/inkscape/inkscape/-/commit/ca7d46a6b0e6cdce01f5e587e4764e177e14e281 Commit #ca7d46a6]).&lt;br /&gt;
&lt;br /&gt;
== Tools ==&lt;br /&gt;
&lt;br /&gt;
=== Calligraphy Tool ===&lt;br /&gt;
&lt;br /&gt;
* The tool now supports units for the width, with a much-increased precision (up to three digits after the decimal separator, e.g. 0.005). The old, zoom-dependent width behavior is accessible with the unit '%' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2449 MR #2449])&lt;br /&gt;
* The entry field for 'Mass' has been moved towards left (for LTR languages) on the tool's tool controls bar, emphasizing its importance ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2816 MR #2816])&lt;br /&gt;
&lt;br /&gt;
=== Connector tool ===&lt;br /&gt;
&lt;br /&gt;
* Connection lines now update in real-time while objects are moved&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:Connections updated while dragging.gif|Connector tool updating while dragging objects&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Node tool===&lt;br /&gt;
&lt;br /&gt;
The node tool &amp;lt;span id=&amp;quot;paste_nodes&amp;quot;&amp;gt;now allows to copy, cut and paste&amp;lt;/span&amp;gt; a selection of nodes. These nodes can be inserted into the original path, into a different path or they can be pasted as a completely new path ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2343 MR #2343]).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=450px&amp;gt;&lt;br /&gt;
File:Copy and past parts of the path.gif| Copy and paste parts of a path&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Pen / Pencil Tool ===&lt;br /&gt;
&lt;br /&gt;
* New 'Scale' option to set the width of paths created with a 'Shape' option other than 'None' numerically (the handle that allows you to adjust the width with the node tool continues to be available).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=300px&amp;gt;&lt;br /&gt;
File:Scale option in pencil tool.gif|Using the scale number entry field to precisely adjust stroke width&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Selector Tool ===&lt;br /&gt;
&lt;br /&gt;
* A new selection mode for the lasso/rubber-band selection was added, which can now select every object that is either within the box or that touches its boundaries. The mode can be activated by pressing the corresponding button in the Selector tool's tool controls bar. On canvas, the mode is visualized by changing the color of the selection box to dashed red line while dragging  ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2520 MR #2520]).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:Touch to select rectangle2.gif|Comparison of the two lasso selection modes&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Star and Polygon Tool ===&lt;br /&gt;
&lt;br /&gt;
* Stars created with the Star/Polygon tool can now have only two corners. This allows the creation of rhomboid/diamond shapes [https://gitlab.com/inkscape/inkscape/-/merge_requests/2044 MR #2044]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:2 side Star tool.gif|A star with only two corners … is a rhomboid&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Text Tool ===&lt;br /&gt;
&lt;br /&gt;
* Text-in-a-shape can now make use of justified text alignment ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1764 MR #1764])&lt;br /&gt;
* Highlight all shapes: When editing text-in-shape or text-on-path, all shapes are highlighted, not only the first ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2468 MR #2468]) and the orientation / position of the shapes is shown correctly (e.g. display rotated rectangle as being rotated).&lt;br /&gt;
&lt;br /&gt;
== Dialogs ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&lt;br /&gt;
==== &amp;lt;span id=&amp;quot;docking&amp;quot;&amp;gt;Docking&amp;lt;/span&amp;gt; ====&lt;br /&gt;
&lt;br /&gt;
Dialogs can now be docked on the left of the Inkscape window. They're now displayed as tabs, with optional label and icon. The dialog tabs can be combined to new floating docks. Tabs can be closed by middle mouse click, right-click and selecting to close, or by clicking on the x icon.&lt;br /&gt;
&lt;br /&gt;
The previous option to minimize dialogs has been superseded by the new feature.&lt;br /&gt;
&lt;br /&gt;
The work for this big code refactoring was undertaken by Google Summer of Code Student Valentin Ionita in 2020. You can learn more about his work [https://gitlab.com/vanntile/inkscape-gsoc-2020 on GitLab] ([https://gitlab.com/vanntile/inkscape-gsoc-2020/-/blob/master/RFC.md technical documentation]).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=450px&amp;gt;&lt;br /&gt;
File:Docking demo.gif|Playing with the new dialog docking system&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Design ====&lt;br /&gt;
&lt;br /&gt;
* Arrows on color sliders now have better visibility ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2427 MR #2427])&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=200px&amp;gt;&lt;br /&gt;
File:Color sliders arrows.png|Updated color sliders&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 'About Inkscape' dialog ===&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;Help ⯈ About Inkscape&amp;lt;/code&amp;gt; dialog has been rebuilt from scratch with a larger window (and image) and a tabbed interface.&lt;br /&gt;
&lt;br /&gt;
* The user-contributed About Screen artwork is now displayed much larger, as it should be!&lt;br /&gt;
* Authors and translators are now featured on separate tabs.&lt;br /&gt;
* A new license tab offers a brief explanation of Inkscape licensing. &lt;br /&gt;
* All the tabs include calls to action or links to the official website for more information.&lt;br /&gt;
* The current version of Inkscape is displayed on a button. When clicked, the full version information is copied to the clipboard, so it can be used in bug reports, for example.&lt;br /&gt;
* In the bottom right corner, there is an additional small button with a little beetle on it. Clicking that button will copy extensive information about available software library versions, in addition to operating system and Inkscape version information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:About dialog 1.1.gif|The updated 'About Inkscape' dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Document Properties dialog ===&lt;br /&gt;
&lt;br /&gt;
Many video formats are now available for selection in the 'Page' tab of the Document Properties dialog ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1314 MR #1314]).&lt;br /&gt;
&lt;br /&gt;
=== Fill and Stroke ===&lt;br /&gt;
&lt;br /&gt;
* The stroke's width can now be set to '''Hairline''' in the dialog at &amp;lt;code&amp;gt;Object ⯈ Fill and stroke ⯈ Stroke Style&amp;lt;/code&amp;gt; (as a unit). This type of stroke is always 1px wide, independent of the zoom level. The feature will hopefully one day be useful for laser cutting and plotting ([https://gitlab.com/inkscape/inkscape/-/merge_requests/846 MR #846])&lt;br /&gt;
** Hairline strokes can be exported to file formats with native hairline support (PDF/PS), but this requires [https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/21 a code change in the Cairo software library], which has not been accepted (yet), so the PS/PDF hairline export feature will not yet be available in any official packages. If unavailable, a very thin line width will be used instead (1px at the &amp;quot;1:1 zoom&amp;quot; level of the output).&lt;br /&gt;
** In other SVG renderers, hairlines will be handled via non-scaling stroke with a stroke width of 1px.&lt;br /&gt;
** Export to PNG and rendering on canvas will use a line width of 1px.&lt;br /&gt;
** Known issue: Copy-pasting hairline strokes currently loses the hairline property (https://gitlab.com/inkscape/inkscape/-/issues/2157), duplicating works as a workaround&lt;br /&gt;
* The '''Miter maximum''' has been increased to 100000 ([https://gitlab.com/inkscape/inkscape/-/issues/1996 Bug #1996])&lt;br /&gt;
* Stock markers use SVG 2.0 context-stroke to automatically take on the stroke color of the object ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2009 MR #2009]). If SVG 1.1 compatibility is needed, the setting for marker colors in &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Input/Output ⯈ SVG export&amp;lt;/code&amp;gt; can be activated and SVG 1.1 compatibility can be activated in the 'Save as' dialog.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:InkscapeHairlines.gif|Hairlines stay the same width, independent of the zoom level&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Filter Editor dialog ===&lt;br /&gt;
&lt;br /&gt;
When right-clicking on a filter in the filter list, there is an option called 'Select' now to select all objects which are using that filter.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:Select objects with this filter.gif|Select all objects with the same filter&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Find/Replace dialog ===&lt;br /&gt;
&lt;br /&gt;
It's now possible to also search in 'desc' and 'title' attributes of objects ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1310 MR #1310])&lt;br /&gt;
&lt;br /&gt;
=== Gradient Editor dialog (removed) ===&lt;br /&gt;
&lt;br /&gt;
* The legacy gradient editor (a dialog that could previously be enabled in the preferences for the gradient tool) has been removed. A replacement may be added in a later version ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2015 MR #2015]).&lt;br /&gt;
&lt;br /&gt;
=== Preferences dialog ===&lt;br /&gt;
&lt;br /&gt;
* The preferences dialog now features &amp;lt;span id=&amp;quot;pref_search&amp;quot;&amp;gt;a search bar&amp;lt;/span&amp;gt;, which performs a recursive search over all the nested categories of settings:&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl + G&amp;lt;/code&amp;gt;''' for next result&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;Shift + F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl + Shift+G&amp;lt;/code&amp;gt;''' for previous result&lt;br /&gt;
* In &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Imported images: Import&amp;lt;/code&amp;gt;, there is a new option that allows you to disable relative paths to linked files (&amp;quot;Store absolute file path for linked images&amp;quot;, deactivated by default).&lt;br /&gt;
* In &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Rendering&amp;lt;/code&amp;gt;, there is a new option to &amp;lt;code&amp;gt;Redraw while editing&amp;lt;/code&amp;gt;, which improves performance of redrawing with some faster CPUs (&amp;quot;Responsive&amp;quot;, active by default, or &amp;quot;Conservative&amp;quot;).&lt;br /&gt;
* In &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Behavior ⯈ Scrolling&amp;lt;/code&amp;gt;, the setting '''Mouse wheel zooms by default''' has been removed. This setting can now be set by disabling the modifier 'Ctrl' for '''Canvas zoom''', and enabling it for '''Vertical pan''' instead (see section about 'Customization' below for more information).&lt;br /&gt;
* The Zoom correction factor in &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Interface&amp;lt;/code&amp;gt; now works correctly for other units than mm and remembers values below 100%. &lt;br /&gt;
* There is an option now to adjust the number shown in the Zoom field in the bottom right corner to match the real world scale. The new option is active by default, so that, after adjusting the factor for your monitor, at 100% zoom, your document page is as large on the screen as it is in reality.&lt;br /&gt;
* In &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Interface: Cursor size&amp;lt;/code&amp;gt;, the option to '''Enable cursor scaling''' allows users to work around too large and unsharp cursors in some cases ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2432 MR #2432])&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:A search bar in the preferences dialogue.gif|Search bar in the Preferences dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Symbols dialog ===&lt;br /&gt;
&lt;br /&gt;
* Symbol search now also takes symbol name translations into account ([https://gitlab.com/inkscape/inkscape/-/issues/1804 Issue #1804])&lt;br /&gt;
&lt;br /&gt;
=== Text and Font dialog ===&lt;br /&gt;
&lt;br /&gt;
* Removed the 'Close' button and the icon on the 'Apply' button ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2523 MR #2523])&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;span id=&amp;quot;welcome&amp;quot;&amp;gt;'Welcome' dialog&amp;lt;/span&amp;gt;===&lt;br /&gt;
&lt;br /&gt;
A new Welcome and onboarding screen was added. &lt;br /&gt;
&lt;br /&gt;
In its first tab, you can set up the theme for Inkscape, in the second tab, you will find links to our website, where you can learn how to support the project. The last tab gives you a choice between various document formats and recently used files.&lt;br /&gt;
&lt;br /&gt;
To select a file to open, click on it and then use the &amp;lt;code&amp;gt;Load&amp;lt;/code&amp;gt; button. You can also double-click on any of the files and file format icons (faster). To open the default template, click on the 'New document' button.&lt;br /&gt;
&lt;br /&gt;
The appearing of the dialog can be deactivated either by a checkbox in its last tab, or in &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Windows: Miscellaneous&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Welcome dialog 1.png|The new Welcome dialog&lt;br /&gt;
File:Welcome dialog 2.png|Help the Inkscape project by contributing&lt;br /&gt;
File:Welcome dialog 3.png|Loading an existing file&lt;br /&gt;
File:Welcome dialog 4.png|Choosing a document size from the 'Screen' category&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XML dialog ===&lt;br /&gt;
&lt;br /&gt;
* When a text span is selected, it can be edited in a proper text entry field now ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1977 MR #1977])&lt;br /&gt;
&lt;br /&gt;
== Filters ==&lt;br /&gt;
* A new &amp;quot;Fast Crop&amp;quot; filter can be found at &amp;lt;code&amp;gt;Filters ⯈ Fill and transparency ⯈ Fast Crop&amp;lt;/code&amp;gt;. Adjust the handles with the node tool to crop to a rectangular region ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2767 MR #2767]).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:Fast Crop.gif|Cropping a screenshot of the About Screen quickly using the new 'Fast Crop' filter&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Live path effects ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&lt;br /&gt;
==== Automatic fill preservation for path effects ====&lt;br /&gt;
&lt;br /&gt;
LPEs which render strokes as fills (&amp;lt;code&amp;gt;Join Type&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Power Stroke&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;Taper Stroke&amp;lt;/code&amp;gt;) have been modified to automatically preserve the previous fill by creating a linked clone with the original fill color when applied to an object ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1969 MR #1969]).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sadchrys original drawing with fill.png|Original drawing&lt;br /&gt;
File:Sadchrys after applying LPE previous versions.png|Previous versions of Inkscape would preserve the stroke settings but remove the fill when applied.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 original path.png|Now, Inkscape will automatically preserve the fill by creating a linked path underneath.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 linked fill.png|LPE options for the linked fill&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Boolean Operations&amp;quot; LPE ===&lt;br /&gt;
&lt;br /&gt;
* The path effect is no longer marked as experimental.&lt;br /&gt;
* Operands can now easily be selected and moved with the mouse. &lt;br /&gt;
* Improved stability&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Fill between many&amp;quot; LPE ===&lt;br /&gt;
&lt;br /&gt;
A new item '''Fill between Paths''' has been added under the &amp;lt;code&amp;gt;Path&amp;lt;/code&amp;gt; menu to automatically create a linked fill path using the '''Fill between many''' path effect. The effect is created beneath the selected paths and automatically selected to faciliate moving the path into the correct z-order and styling it as intended. For greater efficiency, a shortcut can also be assigned, using the '''Preferences''' dialog ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1973 MR #1973]).&lt;br /&gt;
&lt;br /&gt;
This is especially useful for filling variable-width paths created with the PowerStroke option (or other live path effects that use the fill to emulate a stroke).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:Fill between manny - egg.gif|Previously, using this effect required tediously copying every path to the clipboard and pasting it into the parameter list of a new path.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Offset&amp;quot; LPE ===&lt;br /&gt;
&lt;br /&gt;
* The Offset LPE's performance was improved for more complex shapes.&lt;br /&gt;
* Open paths can now have an offset that is not automatically closed [Known issue: when they don't self-intersect].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=390px&amp;gt;&lt;br /&gt;
File:Offset open path.gif|Offsetting an open path&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Slice&amp;quot; LPE (new) ===&lt;br /&gt;
&lt;br /&gt;
This new path effect allows you to split an object into two (or more by stacking multiple LPEs), without destroying the original.&lt;br /&gt;
It works with groups, shapes, and paths. If you want to use it on Text, you need to use the 'Clone' LPE and apply the 'Slice' LPE on this clone. &lt;br /&gt;
It also allows to change styles for the resulting parts, because each part is a separate object ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2372 MR #2372])&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=600px&amp;gt;&lt;br /&gt;
File:Slice LPE 1.gif|Using the new 'Slice' Live Path Effect&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Taper Stroke&amp;quot; LPE ===&lt;br /&gt;
&lt;br /&gt;
The Taper stroke LPE has been updated to include taper direction options (allowing the taper to run to one side of the path, instead of to the middle) and smoothing options for both ends of the path, allowing more interesting paths to be made in the effect. In addition, &amp;lt;code&amp;gt;'''Shift+click'''&amp;lt;/code&amp;gt; ing on the on-canvas handles allows quickly alternating between the different possible taper shapes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:Taper stroke direction control.png|Direction control options&lt;br /&gt;
File:Taper stroke new parameter list.png|New parameter list&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Import / Export ==&lt;br /&gt;
&lt;br /&gt;
=== Import ===&lt;br /&gt;
&lt;br /&gt;
* Inkscape can now recognize layers in SVG files exported from CorelDraw ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2046 MR #2046])&lt;br /&gt;
* When importing a DXF file, a new option for setting the text scale factor is available now ([https://gitlab.com/inkscape/extensions/-/issues/321 Bug extensions#321])&lt;br /&gt;
&lt;br /&gt;
=== Export ===&lt;br /&gt;
==== PNG Export Dialog ====&lt;br /&gt;
&lt;br /&gt;
* The default export area when nothing is selected is now 'Page'. This leads to the 'Custom' tab being initialized with the coordinates of the page, so it should be rarer to accidentally get an invalid export area of 0x0 px size. When deselecting an object, the export area mode is now set back to the one it had before 'Selection', which can be 'Page', 'Drawing' or 'Custom' (and not always 'Drawing')([https://gitlab.com/inkscape/inkscape/-/merge_requests/1587 MR #1587]).&lt;br /&gt;
* The &amp;lt;span id=&amp;quot;png_export&amp;quot;&amp;gt;'''Export PNG Image dialog'''&amp;lt;/span&amp;gt; now exports the PNG as soon as the button &amp;lt;code&amp;gt;Export as&amp;lt;/code&amp;gt; has been clicked and a file name was selected for the file. It's no longer necessary to explicitly click on Export after choosing a file name. Clicking on &amp;lt;code&amp;gt;Export&amp;lt;/code&amp;gt; will still be available to export to the file name that is currently set in the dialog ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2080 MR #2080]).&lt;br /&gt;
* Use the file name extensions &amp;lt;span id=&amp;quot;raster_export&amp;quot;&amp;gt;''''.jpg', '.webp' or '.tiff''''&amp;lt;/span&amp;gt; in the PNG export dialog to open the corresponding export options and export to the selected file format. In the file chooser that opens after clicking on 'Export as', there is also a dropdown menu available to choose the file format. ''''Optimized PNG'''' is available there as an additional option (as it uses the same file name extension, it's not possible to auto-detect). The export functionality is implemented using a Python extension of the new 'Raster Output' type.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=150px&amp;gt;&lt;br /&gt;
File:Jpg export 1.png | A warning about JPEG export&lt;br /&gt;
File:Jpg export 2.png | JPEG export options&lt;br /&gt;
File:Tiff export.png ‎ | TIFF export options&lt;br /&gt;
File:Webp export.png | WebP export options&lt;br /&gt;
File:Optimized png export 1.png | Lossless options for export as Optimized PNG&lt;br /&gt;
File:Optimized png export 2.png | Lossy options for export as Optimized PNG&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Other export formats ====&lt;br /&gt;
&lt;br /&gt;
* HPGL (for plotting): the speed can now be set for each Pen independently, using layer names ([https://gitlab.com/inkscape/extensions/-/issues/277 Bug extensions#277])&lt;br /&gt;
* GPL (Gimp palette): named custom swatch colors' names are now included in the resulting gpl file ([https://gitlab.com/inkscape/extensions/-/commit/2e08b0bde1d16fe32060292dec19135e95b1af8e Commit extensions#2e08b0b])&lt;br /&gt;
&lt;br /&gt;
== Customization ==&lt;br /&gt;
&lt;br /&gt;
=== Cursors ===&lt;br /&gt;
&lt;br /&gt;
A set of SVG-based, themeable mouse cursors with HiDPI support were added. &lt;br /&gt;
These new cursors are coupled with the icon themes. The default set (hicolor theme) is stored in &amp;lt;code&amp;gt;~inkscape\share\inkscape\icons\hicolor\cursors&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
To override them with your personal cursors while keeping the selected theme, your user configuration directory needs to supply the following structure to Inkscape:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
inkscape (this is your user preferences directory, its location depends on your operating system)&lt;br /&gt;
⤷ icons&lt;br /&gt;
  ⤷ &amp;lt;theme_id&amp;gt;&lt;br /&gt;
    ⤷ cursors&lt;br /&gt;
      ⤷ adjust_alpha.svg&lt;br /&gt;
      ⤷ adjust_hue.svg&lt;br /&gt;
      ⤷ adjust_lightness.svg&lt;br /&gt;
      ⤷ …&lt;br /&gt;
⤷ preferences.xml&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
More information can be found on the [[SVG Cursors]] page. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Coursers.png|New cursor theme&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Shortcuts ===&lt;br /&gt;
&lt;br /&gt;
* In &amp;lt;code&amp;gt;Edit ⯈ Preferences ⯈ Interface ⯈ Keyboard&amp;lt;/code&amp;gt;, in the new '''Modifiers''' tab, you can customize keyboard shortcut modifiers for on-canvas mouse actions or disable the shortcut entirely (for example holding &amp;lt;kbd&amp;gt;Ctrl&amp;lt;/kbd&amp;gt; for scaling while keeping the object's aspect ratio can be changed to Shift; [https://gitlab.com/inkscape/inkscape/-/merge_requests/2070 MR #2070])&lt;br /&gt;
* Keyboard shortcut files for Inkscape can now inherit from other keyboard shortcut files by using [https://en.wikipedia.org/wiki/XInclude XInclude] ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1150 MR #1150])&lt;br /&gt;
* Illustrator keyboard shortcut map has been updated to include a few more common shortcuts ([https://gitlab.com/inkscape/inkscape/-/issues/2109 Bug #2109])&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=packed heights=550px&amp;gt;&lt;br /&gt;
File:Modifiers.png|The new shortcut modifiers settings&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Themes ===&lt;br /&gt;
&lt;br /&gt;
* A contrast slider was added for finetuning the selected theme's colors at &amp;lt;code&amp;gt;Preferences ⯈ Interface ⯈ Themeing: Contrast&amp;lt;/code&amp;gt; ([https://gitlab.com/inkscape/inkscape/-/merge_requests/906 MR #906])&lt;br /&gt;
* A more compact Minwaita theme (derived from Adwaita) has been added, with a light and a dark mode&lt;br /&gt;
* The win32 theme has been improved by adding some custom adjustments&lt;br /&gt;
* Many small tweaks and refinements in to Multicolor icon pack&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=packed heights=550px&amp;gt;&lt;br /&gt;
File:Contrast slider.gif|The contrast slider allows to fine-tune the theme's colors&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== macOS-specific Changes ==&lt;br /&gt;
&lt;br /&gt;
* New Inkscape icon ([https://gitlab.com/inkscape/inkscape/-/commit/ee58965003ca1960c20d7da276c3774166c18d42 commit ee589650])&lt;br /&gt;
* Visio files can be imported ([https://gitlab.com/inkscape/inkscape/-/issues/2094 issue #2094])&lt;br /&gt;
* No longer bundle Ghostscript, effectively removing out of the box support for EPS and PS ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2608 MR #2608]), information about workarounds can be found at https://gitlab.com/inkscape/inbox/-/issues/4321&lt;br /&gt;
&lt;br /&gt;
== Extensions ==&lt;br /&gt;
&lt;br /&gt;
=== Features added ===&lt;br /&gt;
&lt;br /&gt;
* Bar code extension now accepts tildes, too ([https://gitlab.com/inkscape/extensions/-/commit/e09622547cc13cce93695c645ce627af5883453a Commit extensions#e096225])&lt;br /&gt;
* The extensions &amp;quot;Function Plotter&amp;quot; and &amp;quot;Parametric Curves&amp;quot; now support more mathematical functions and constants, and can even make use of the random() function ([https://gitlab.com/inkscape/extensions/-/commit/70d53ae7317a6a9ce007ccf3d19787106e8abaaa Commit extensions#70d53ae7]) &lt;br /&gt;
* Lorem ipsum extension can now flow text into selected shapes, so the generated text changes along with any further changes of the shape, instead of only creating a text in the shape of the selection ([https://gitlab.com/inkscape/extensions/-/issues/122 Bug extensions#122])&lt;br /&gt;
&lt;br /&gt;
=== Fixes ===&lt;br /&gt;
&lt;br /&gt;
==== Bugs ====&lt;br /&gt;
&lt;br /&gt;
* Path transformations now work more reliably ([https://gitlab.com/inkscape/extensions/-/merge_requests/230 MR extensions#230], [https://gitlab.com/inkscape/extensions/-/issues/255 Bug extensions#255], [https://gitlab.com/inkscape/extensions/-/issues/299 Bug extensions#299], [https://gitlab.com/inkscape/extensions/-/issues/343 Bug extensions#343])&lt;br /&gt;
* The Envelope extension handles edge cases better now ([https://gitlab.com/inkscape/extensions/-/merge_requests/234 MR extensions#234])&lt;br /&gt;
* The Export Optimized SVG extension no longer accepts invalid values for the number of significant digits ([https://gitlab.com/inkscape/inbox/-/issues/3579 Bug inbox#3579])&lt;br /&gt;
* Some older extensions were greyed out in the menu; now they can be run again (but might not work; [https://gitlab.com/inkscape/extensions/-/commit/e5c1668dbf939f6f7a1645f9e7411048a8ced640 Commit extensions#e5c1668])&lt;br /&gt;
* The effect of the Curve parameter in the Rubberstretch extension is larger again ([https://gitlab.com/inkscape/extensions/-/issues/263 Bug extensions#263])&lt;br /&gt;
* The Randomize Color extension no longer always uses red as a basis for the hue change ([https://gitlab.com/inkscape/extensions/-/issues/234 Bug extensions #234])&lt;br /&gt;
* Lorem ipsum extension supports generating SVG2 text ([https://gitlab.com/inkscape/extensions/-/issues/201 Bug extensions#201])&lt;br /&gt;
* Text generated by Lorem ipsum extension has a more reasonable font size again ([https://gitlab.com/inkscape/extensions/-/issues/201 Bug extensions#201])&lt;br /&gt;
* DXF import now sets the colors correctly ([https://gitlab.com/inkscape/extensions/-/issues/315 Bug extensions#315])&lt;br /&gt;
* Gradient colors are again included in exported .gpl files ([https://gitlab.com/inkscape/extensions/-/commit/2e08b0bde1d16fe32060292dec19135e95b1af8e Commit extensions#2e08b0b])&lt;br /&gt;
* GCodetools no longer duplicate the drawing paths on export with certain cutting order settings ([https://gitlab.com/inkscape/extensions/-/issues/220 Bug extensions#220])&lt;br /&gt;
* Restack extension uses the selected mechanism for changing the stacking order when reversing z-order and when using the 'angle' mode ([https://gitlab.com/inkscape/extensions/-/issues/45 Bug extensions#45])&lt;br /&gt;
* 3D Polyhedrons are rendered now, even when the faces are supposed to be ordered by the location of their centroid ([https://gitlab.com/inkscape/extensions/-/issues/262 Bug extensions#262])&lt;br /&gt;
* The Draw Handles extension draws the handles in the right places again, even if the object they belong to has been rotated or otherwise transformed ([https://gitlab.com/inkscape/extensions/-/issues/335 Bug extensions#335])&lt;br /&gt;
* Extracted images end up in the correct folder again ([https://gitlab.com/inkscape/extensions/-/issues/347 Bug extensions#347])&lt;br /&gt;
&lt;br /&gt;
==== Crashes ====&lt;br /&gt;
&lt;br /&gt;
* Synfig export works again without crashing ([https://gitlab.com/inkscape/extensions/-/issues/278 Bug extensions#278])&lt;br /&gt;
* Embedding linked SVG images works in more cases now ([https://gitlab.com/inkscape/extensions/-/issues/283 Bug extensions#283], [https://gitlab.com/inkscape/extensions/-/issues/325 Bug extensions#325])&lt;br /&gt;
* The Printing Marks extension works again ([https://gitlab.com/inkscape/extensions/-/issues/313 Bug extensions#313])&lt;br /&gt;
* Fixed a crash in the Web &amp;gt; Javascript &amp;gt; Set/Transmit Attribute extensions ([https://gitlab.com/inkscape/extensions/-/issues/270 Bug extensions#270])&lt;br /&gt;
* CSS classes with a dash don't make extensions crash anymore ([https://gitlab.com/inkscape/extensions/-/issues/317 Bug extensions#317])&lt;br /&gt;
* A crash in GCodetools with Graffiti points was fixed ([https://gitlab.com/inkscape/extensions/-/issues/311 Bug extensions#311])&lt;br /&gt;
* The 'Area' tab of the GCodetools can again be used to fill objects with concentric lines ([https://gitlab.com/inkscape/extensions/-/issues/296 Bug extensions#296])&lt;br /&gt;
* Voronoi Diagram creation works again with automatic bounding box creation ([https://gitlab.com/inkscape/extensions/-/issues/242 Bug extensions#242])&lt;br /&gt;
&lt;br /&gt;
=== &amp;lt;span id=&amp;quot;extman&amp;quot;&amp;gt;Extension Manager (Beta)&amp;lt;/span&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
A new extension was added to Inkscape, which allows users to access a repository containing community-vetted Python extensions on the inkscape.org website from inside the Inkscape program.&lt;br /&gt;
&lt;br /&gt;
The feature is considered beta currently, but will improve mid-cycle as it is able to update itself by its own installation mechanism.&lt;br /&gt;
&lt;br /&gt;
It works by creating a virtual Python environment in the extensions subdirectory. Extensions are uploaded by their creators as zip files into the [https://inkscape.org/gallery/=extension/ Extensions gallery] on the website, and then need to undergo a review process by trusted community members who will then sign the uploads with their GPG signature. &lt;br /&gt;
&lt;br /&gt;
To ask for a review, extension developers are supposed to contact [https://chat.inkscape.org/channel/inkscape_extensions Inkscape's extensions team in the chat]. Some wait time is to be expected, so please be patient with your request. &lt;br /&gt;
&lt;br /&gt;
Structure and requirements (beyond that they must comply with the community's [https://inkscape.org/community/coc/ Code of Conduct]) are not defined or documented yet, so be open to having to make changes to your files during the review. Find more information, updates about and known issues with the Extensions Manager [https://gitlab.com/inkscape/extras/extension-manager/ here].&lt;br /&gt;
&lt;br /&gt;
As a user, note that 100% security cannot be guaranteed. Use the new feature with care.&lt;br /&gt;
&lt;br /&gt;
On Windows, the Extensions Manager comes as an optional installable component for the exe and msi packaging formats, so administrators can decide whether they want to allow their users to download user-contributed extensions from the internet.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Ext man 0.png|The Extension Manager is the last item in the Extensions menu&lt;br /&gt;
File:Ext man 2.png|List of current extensions, previously installed custom extensions are listed as 'Orphan extensions'&lt;br /&gt;
File:Ext man 3.png|Installation tab with search field to find installable extensions&lt;br /&gt;
File:Ext man 4.png|Link to a website explaining how to create extensions&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== API changes for extension developers ===&lt;br /&gt;
&lt;br /&gt;
* Breaking change: Python 2 is no longer supported, extensions require at least Python 3.6 ([https://gitlab.com/inkscape/extensions/-/issues/351 Bug exetnsions#351])&lt;br /&gt;
* Breaking change: [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.description &amp;lt;code&amp;gt;Element.description()&amp;lt;/code&amp;gt;] is now [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.desc &amp;lt;code&amp;gt;Element.desc&amp;lt;/code&amp;gt;]. The new form now includes &amp;lt;code&amp;gt;Element.desc = &amp;quot;some value&amp;quot;&amp;lt;/code&amp;gt; for setting the attribute, and [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.title &amp;lt;code&amp;gt;Element.title&amp;lt;/code&amp;gt;], which works the same way as &amp;lt;code&amp;gt;desc&amp;lt;/code&amp;gt; (only for the title/tooltip) and didn't exist before.&lt;br /&gt;
* Element selections API has been improved, the API in 1.0 of using &amp;lt;code&amp;gt;self.svg.selected&amp;lt;/code&amp;gt; is deprecated in favour of the new &amp;lt;code&amp;gt;self.svg.selection&amp;lt;/code&amp;gt; interface. The previous API will continue to work for the time being but should be updated to the new API. Selection is now a type of &amp;lt;code&amp;gt;ElementList&amp;lt;/code&amp;gt; which provides filtering, ordering and other generalised functionality. If you need an element list, for example to make a bounding box, this is the way to do it.&lt;br /&gt;
* New: &lt;br /&gt;
** [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.unit &amp;lt;code&amp;gt;Element.unit&amp;lt;/code&amp;gt;], [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.uutounit &amp;lt;code&amp;gt;Element.unittouu()&amp;lt;/code&amp;gt;], [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.uutounit &amp;lt;code&amp;gt;Element.uutounit()&amp;lt;/code&amp;gt;] and [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.add_unit &amp;lt;code&amp;gt;Element.add_unit()&amp;lt;/code&amp;gt;]&lt;br /&gt;
** [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.is_sensitive &amp;lt;code&amp;gt;Element.is_sensitive()&amp;lt;/code&amp;gt;] and [https://inkscape.gitlab.io/extensions/documentation/inkex.elements._base.html#inkex.elements._base.BaseElement.set_sensitive &amp;lt;code&amp;gt;Element.set_sensitive()&amp;lt;/code&amp;gt;]&lt;br /&gt;
** [https://inkscape.gitlab.io/extensions/documentation/inkex.base.html?highlight=extra_nss#inkex.base.InkscapeExtension.extra_nss &amp;lt;code&amp;gt;ExtensionClass.extra_nss = {}&amp;lt;/code&amp;gt;] can be set to add namespaces, e.g. in jessyInk&lt;br /&gt;
** [https://inkscape.gitlab.io/extensions/documentation/inkex.base.html?highlight=extra_nss#inkex.base.InkscapeExtension.get_resource &amp;lt;code&amp;gt;Extension.get_resource(filename)&amp;lt;/code&amp;gt;] gets files from the extension's own code repository (e.g. an image to include in the dialog, an SVG template, a data file …)&lt;br /&gt;
** [https://inkscape.gitlab.io/extensions/documentation/inkex.base.html?highlight=extra_nss#inkex.base.InkscapeExtension.document_path &amp;lt;code&amp;gt;Extension.document_path()&amp;lt;/code&amp;gt;] and [https://inkscape.gitlab.io/extensions/documentation/inkex.base.html?highlight=extra_nss#inkex.base.InkscapeExtension.absolute_href &amp;lt;code&amp;gt;Extension.absolute_href()&amp;lt;/code&amp;gt;] can get a filename or location relative to the document's location (if it's saved)&lt;br /&gt;
** Multiple functions have been added that make it easier to handle transformations in extensions, so if you've been relying on doing those manually in your extension, you may like to check back to see if inkex supports them now (cross product, easier chaining of transforms, polar coordinates functions,&lt;br /&gt;
&lt;br /&gt;
If you were using [https://inkscape.gitlab.io/extensions/documentation/inkex.command.html#inkex.command.inkscape &amp;lt;code&amp;gt;inkex.command.inkscape()&amp;lt;/code&amp;gt;], there should be no need to update their API for the latest Inkscape, it should just work.&lt;br /&gt;
&lt;br /&gt;
=== Behind the curtains ===&lt;br /&gt;
&lt;br /&gt;
Many new tests have been added to the extensions code, so developers will more easily be able to know whether their code changes introduce bugs in extensions.&lt;br /&gt;
&lt;br /&gt;
== Command line ==&lt;br /&gt;
&lt;br /&gt;
* The color mode of exported PNG files can now be set on the command line with &amp;lt;code&amp;gt;--export-png-color-mode&amp;lt;/code&amp;gt; (options: &amp;lt;code&amp;gt;Gray_1|Gray_2|Gray_4|Gray_8|Gray_16|RGB_8|RGB_16|GrayAlpha_8|GrayAlpha_16|RGBA_8|RGBA_16&amp;lt;/code&amp;gt;; [https://gitlab.com/inkscape/inkscape/-/merge_requests/2339 MR #2339])&lt;br /&gt;
* To export a file using arbitrary export formats provided by an extension of the 'output' type, one can use the new &amp;lt;code&amp;gt;--export-extension&amp;lt;/code&amp;gt; parameter now ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2294 MR #2294 with more details])&lt;br /&gt;
* The options &amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;x y z&amp;lt;/span&amp;gt; have been added back in to preserve compatibility with legacy Inkscape command line scripts (and ImageMagick's SVG conversion)&lt;br /&gt;
* Added actions for aligning and distributing objects ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2472 MR #2472])&lt;br /&gt;
* Interactive shell mode ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1495 MR #1495]): &lt;br /&gt;
** a history of commands is now remembered and can be accessed with the up and down arrow keys&lt;br /&gt;
** auto-completion of actions (at start of line) and filenames&lt;br /&gt;
** command line editing is now possible&lt;br /&gt;
&lt;br /&gt;
== Behind the curtains ==&lt;br /&gt;
&lt;br /&gt;
Inkscape developers have also worked on improving and evolving parts of Inkscape which are not directly visible to the users. Indirectly, these changes will also benefit the users, as they make it easier for developers to work with the project, and help them make fewer mistakes.&lt;br /&gt;
&lt;br /&gt;
* Documentation for developers was updated and improved continuously, helping developers better understand other people's code&lt;br /&gt;
* Outdated code was updated continuously, making it easier to handle the code moving forwards. This includes a continued effort to convert old C code to modern C++, removing dead code and rewriting parts of the code in a more modern way.&lt;br /&gt;
* Code formatting was improved continuously, improving readability of the code&lt;br /&gt;
* Continuous integration was updated and improved continuously, ensuring that each code change will be tested automatically and can be reviewed by bug reporters before it is included into the main line code, also keeping up with changes in GitLab, AppVeyor and other infrastructure that is used by Inkscape&lt;br /&gt;
* Improvements were made to the build system, so Inkscape can be built on more Linux, Windows and macOS versions, keeping up with changes in software libraries that Inkscape depends upon&lt;br /&gt;
* Many tests were added and improved, reducing the risk of accidental loss of functionality&lt;br /&gt;
* Running test versions on Windows was simplified by adding shortcuts to the top level folder: &amp;lt;code&amp;gt;Run Inkscape !.bat&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Run Inkscape and create debug trace.bat&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Run Inkscape with GTK Inspector.bat&amp;lt;/code&amp;gt; ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2884 MR #2884])&lt;br /&gt;
&lt;br /&gt;
== Notable bugfixes ==&lt;br /&gt;
&lt;br /&gt;
=== Crash fixes ===&lt;br /&gt;
&lt;br /&gt;
Fix a crash &amp;amp;hellip;&lt;br /&gt;
&lt;br /&gt;
* when exporting a file containing an object clipped with a filtered object to PDF ([https://gitlab.com/inkscape/inkscape/-/issues/203] Bug #203)&lt;br /&gt;
* when deleting the &amp;lt;code&amp;gt;d&amp;lt;/code&amp;gt; attribute in the XML editor ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2722 MR #2722])&lt;br /&gt;
* when zooming in on a heavily filtered object in large files ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2965 MR #2965])&lt;br /&gt;
* when clipping a raster image with a shape, using the setting to 'Put every clipped/masked object in its own group' ([https://gitlab.com/inkscape/inkscape/-/issues/1912 Bug #1912])&lt;br /&gt;
* when trying to use shapes with various Live Path Effects in Boolean operations ([https://gitlab.com/inkscape/inkscape/-/issues/2321 Bug #2321])&lt;br /&gt;
* when opening a file containing a group that uses a filter with large filter region ([https://gitlab.com/inkscape/inkscape/-/issues/1786 Bug #1786])&lt;br /&gt;
* when trying to link or embed an invalid file ([https://gitlab.com/inkscape/inbox/-/issues/3951 Bug #3951])&lt;br /&gt;
* when importing a PDF file with special characters (like é or ä) in its name ([https://gitlab.com/inkscape/inkscape/-/issues/1622 Bug #1622])&lt;br /&gt;
* when using extensions while an object without id attribute is selected ([https://gitlab.com/inkscape/inbox/-/issues/4756 Bug inbox#4756])&lt;br /&gt;
* when removing a Live Path Effect ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3064 MR #3064])&lt;br /&gt;
* when closing Inkscape while the Connector tool was drawing a connection ([https://gitlab.com/inkscape/inkscape/-/issues/2031 Bug #2031])&lt;br /&gt;
* when closing Inkscape after ungrouping a group that contains items with certain path effects ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2465 MR #2465])&lt;br /&gt;
* and lots of crashes related to various Live Path Effects&lt;br /&gt;
&lt;br /&gt;
=== Other bug fixes ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;!-- UI --&amp;gt;The color selector's color wheel looks better now on HiDPI screens ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2416 MR #2416])&lt;br /&gt;
* Color slider no longer has a thin line going across it on HiDPI screens ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2733 MR #2733])&lt;br /&gt;
* The color indicator field in the bottom left corner of the window now uses a constant width and has been cleaned up a bit ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2400 MR #2400])&lt;br /&gt;
* Improved icon colors, fixing multiple bugs for different Gtk themes and icon themes ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2845 MR #2845])&lt;br /&gt;
* You can now just click in the color wheel to select a color ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2428 MR #2428])&lt;br /&gt;
* Reverse order of z-order buttons to achieve more consistency ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2556 MR #2556])&lt;br /&gt;
* Icon for 'Unset paint' in the Fill &amp;amp; Stroke dialog was improved ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2770 MR #2770])&lt;br /&gt;
* Authors and translators of Inkscape are displayed in the 'About Inkscape' dialog again on Windows ([https://gitlab.com/inkscape/inkscape/-/issues/1592 Bug #1592])&lt;br /&gt;
* Parts of the user interface were empty after starting Inkscape ([https://gitlab.com/inkscape/inkscape/-/issues/1509 Bug #1509])&lt;br /&gt;
* When returning to a minimized Inkscape window from another program, the Inkscape main window is now focused instead of one of the floating dialogs ([https://gitlab.com/inkscape/inkscape/-/issues/1695 Bug #1695])&lt;br /&gt;
* Inkscape no longer asks twice whether you would like to save a file when trying to close it with &amp;lt;kbd&amp;gt;Ctrl+W&amp;lt;/kbd&amp;gt; ([https://gitlab.com/inkscape/inkscape/-/issues/1943 Bug #1943])&lt;br /&gt;
* Number fields that lost the ability to understand unit identifiers entered behind the number (e.g. enter '10cm' in a field that uses mm) now again know what to do with them ([https://gitlab.com/inkscape/inkscape/-/issues/1282 Bug #1282])&lt;br /&gt;
* The Auto palette now shows all custom swatches that exist in a document (not only newly added ones) and should update reliably ([https://gitlab.com/inkscape/inkscape/-/issues/2340 Bug #2340]) &lt;br /&gt;
* The keyboard shortcuts displayed in the menus are now updated instantly when changing the keyboard shortcut map ([https://gitlab.com/inkscape/inkscape/-/issues/741 Bug #741])&lt;br /&gt;
* &amp;lt;!-- Functionality--&amp;gt;@import statements in CSS sheets are now processed in the correct order, so their styles are no longer overwritten unintentionally.&lt;br /&gt;
* Fix of feColorMatrix filter primitive default rendering ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2424 MR #2424])&lt;br /&gt;
* Show color output for feColorMatrix with in=SourceAlpha ([https://gitlab.com/inkscape/inkscape/-/issues/1147 Bug #1147])&lt;br /&gt;
* Blurred objects can now have an additional filter or blend mode again ([https://gitlab.com/inkscape/inkscape/-/issues/2306 Bug #2306])&lt;br /&gt;
* Updating a custom swatch's color value now works again, even if you're not using the color sliders to do that ([https://gitlab.com/inkscape/inkscape/-/issues/188 Bug #188])&lt;br /&gt;
* 'Last used style' now respects style changes caused by swapping fill and stroke ([https://gitlab.com/inkscape/inkscape/-/issues/1937 Bug #1937])&lt;br /&gt;
* Update behavior of 'Selectors and CSS' dialog improved ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3136 MR #3136])&lt;br /&gt;
* Objects using some less common color codes for their fill no longer become black (unset paint) when transforming them in specific ways ([https://gitlab.com/inkscape/inkscape/-/issues/1651 Bug #1651])&lt;br /&gt;
* Fix reversed buttons in Arrange / Polar Coordinates ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2561 MR 2561])&lt;br /&gt;
* Fix z-order rendering issue after ungrouping ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2452 MR #2452])&lt;br /&gt;
* Fix copying mesh gradients to new document ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2362 MR #2362])&lt;br /&gt;
* Fix Ctrl+click &amp;quot;Pop selected object out of group&amp;quot; [https://gitlab.com/inkscape/inkscape/-/merge_requests/2729 MR #2729])&lt;br /&gt;
* The measurement tool's angle is now always displayed on the correct side ([https://gitlab.com/inkscape/inkscape/-/issues/2303 Bug #2303])&lt;br /&gt;
* The 'Polka dots, large' and 'Polka dots, large white' patterns tile seamlessly again ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2772 MR #2772])&lt;br /&gt;
* Fix an issue with the 'Roughen' LPE ([https://gitlab.com/inkscape/inkscape/-/merge_requests/3062 MR #3062])&lt;br /&gt;
* When pasting a color hex code onto any selected object(s) with &amp;lt;kbd&amp;gt;Ctrl&amp;lt;/kbd&amp;gt; + &amp;lt;kbd&amp;gt;V&amp;lt;/kbd&amp;gt;, the fill color will now again change to the color indicated by the hex code ([https://gitlab.com/inkscape/inkscape/-/issues/2046 Bug #2046])&lt;br /&gt;
* Restore performance when selecting an object with the Fill and Stroke dialog open ([https://gitlab.com/inkscape/inkscape/-/issues/1191 Bug #1191])&lt;br /&gt;
* When right-clicking on a number entry field, you'll no longer be able to choose among duplicated or invalid values ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1446 MR #1446])&lt;br /&gt;
* Ellipses are now un-created and re-created (with &amp;lt;kbd&amp;gt;Ctrl&amp;lt;/kbd&amp;gt; + &amp;lt;kbd&amp;gt;Z&amp;lt;/kbd&amp;gt; / &amp;lt;kbd&amp;gt;Ctrl&amp;lt;/kbd&amp;gt; + &amp;lt;kbd&amp;gt;Y&amp;lt;/kbd&amp;gt;) correctly ([https://gitlab.com/inkscape/inkscape/-/issues/1488 Bug #1488])&lt;br /&gt;
* Processing Instructions and comments are no longer auto-deleted ([https://gitlab.com/inkscape/inkscape/-/issues/1050 Bug #1050])&lt;br /&gt;
* The previous measuring results of the measurement tool no longer jump away from their position when switching tools and then switching back to measuring ([https://gitlab.com/inkscape/inkscape/-/issues/2388 Bug #2388])&lt;br /&gt;
* 3D boxes don't jump around and scale unexpectedly when moving them ([https://gitlab.com/inkscape/inkscape/-/issues/2228 Bug #2228])&lt;br /&gt;
* The 'optical size' axis works now for variable fonts ([https://gitlab.com/inkscape/inkscape/-/issues/1986 Bug #1986])&lt;br /&gt;
* Font features (e.g. ligatures) are now applied to the first glyph in a nested &amp;lt;code&amp;gt;tspan&amp;lt;/code&amp;gt;, too ([https://gitlab.com/inkscape/inkscape/-/issues/1987 Bug #1987])&lt;br /&gt;
* Arabic text still looks correct now when parts of it have a different style (e.g. different color; [https://gitlab.com/inkscape/inkscape/-/issues/734 Bug #734])&lt;br /&gt;
* Locked guides can no longer be deleted using &amp;lt;kbd&amp;gt;Del&amp;lt;/kbd&amp;gt; ([https://gitlab.com/inkscape/inkscape/-/issues/1905 Bug #1905])&lt;br /&gt;
* When creating a marker from multiple selected objects, the z-order is now respected in the resulting marker (previously, it was the selection order that determined the z-order; [https://gitlab.com/inkscape/inkscape/-/merge_requests/2274 MR #2274])&lt;br /&gt;
* When rotating the canvas, objects' handles rotate along with it now ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2334 MR #2334])&lt;br /&gt;
* Ungrouping no longer moves / scales various types of objects and styles (e.g. clones, offsets, patterns, gradients ...) ([https://gitlab.com/inkscape/inkscape/-/issues/706 Bug #706], [https://gitlab.com/inkscape/inkscape/-/merge_requests/2464 MR #2464]) &lt;br /&gt;
* Comments in groups in an SVG's source code no longer cause Inkscape to invert z-order ([https://gitlab.com/inkscape/inkscape/-/issues/2011])&lt;br /&gt;
* &amp;lt;!--Export--&amp;gt;PDF/LaTeX export now places SVG2 texts correctly in the exported .tex file ([https://gitlab.com/inkscape/inkscape/-/issues/2300 Bug #2300])&lt;br /&gt;
* Tutorial files now open as templates, so you won't get an error message when trying to save the tutorial (to its installation location), but will instead be asked for the save location (https://gitlab.com/inkscape/inkscape/-/merge_requests/2354 MR #2354)&lt;br /&gt;
* Clipped objects now respect the antialiasing setting on export ([https://gitlab.com/inkscape/inkscape/-/issues/1921 Bug #1921])&lt;br /&gt;
* In embedded JavaScript, Inkscape no longer messes with the contents of &amp;lt;code&amp;gt;xlink:href&amp;lt;/code&amp;gt; ([https://gitlab.com/inkscape/inkscape/-/issues/1958 Bug #1958])&lt;br /&gt;
* Copy-pasting text-on-path no longer displaces or scales the text ([https://gitlab.com/inkscape/inkscape/-/issues/853 Bug #853])&lt;br /&gt;
* &amp;lt;!--Command Line--&amp;gt;On the command line, paths with a dot in their name no longer cause exported files to be saved to the wrong place ([https://gitlab.com/inkscape/inkscape/-/issues/1712 Bug #1712])&lt;br /&gt;
* &amp;lt;!--Unspecific/Multi--&amp;gt;Fix of multiple regressions and bugs with '''Stroke to path''' ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2410 MR #2410])&lt;br /&gt;
* Many improvements to text rendering for non-Latin languages&lt;br /&gt;
* Improvements to font selection and font loading speed&lt;br /&gt;
* Multiple Fixes for Selectors and CSS dialog ([https://gitlab.com/inkscape/inkscape/-/merge_requests/1681 MR #1681])&lt;br /&gt;
* Multiple fixes for command: Stroke to path ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2410 MR #2410])&lt;br /&gt;
* Multiple memory leak fixes&lt;br /&gt;
* Multiple fixes related to various aspects of Live Path Effect transformations and copying&lt;br /&gt;
* Wording and spelling improvements&lt;br /&gt;
&lt;br /&gt;
=== Even more bug fixes ===&lt;br /&gt;
&lt;br /&gt;
There were even more issues fixed than those listed above, but these probably only affect a small portion of users, or are relevant for development and packaging only.&lt;br /&gt;
&lt;br /&gt;
For a complete list, visit [https://gitlab.com/inkscape/inkscape/-/milestones/2 our GitLab issue tracker] and see the [https://gitlab.com/inkscape/inkscape/-/commits/1.0.x commit history] (all changes since DATE until release date).&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates [2021-03-03]:&lt;br /&gt;
&lt;br /&gt;
* Basque&lt;br /&gt;
* Brazilian Portuguese&lt;br /&gt;
* Bulgarian&lt;br /&gt;
* Catalan&lt;br /&gt;
* Croatian&lt;br /&gt;
* Czech&lt;br /&gt;
* Danish&lt;br /&gt;
* Dutch&lt;br /&gt;
* French&lt;br /&gt;
* German&lt;br /&gt;
* Hungarian&lt;br /&gt;
* Icelandic&lt;br /&gt;
* Italian&lt;br /&gt;
* Irish&lt;br /&gt;
* Korean&lt;br /&gt;
* Latvian&lt;br /&gt;
* Polish&lt;br /&gt;
* Simplified Chinese&lt;br /&gt;
* Spanish&lt;br /&gt;
* Traditional Chinese&lt;br /&gt;
* Turkish&lt;br /&gt;
* Ukrainian&lt;br /&gt;
&lt;br /&gt;
The Windows installer translation was updated for [2021-03-03]:&lt;br /&gt;
&lt;br /&gt;
* Czech&lt;br /&gt;
&lt;br /&gt;
The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
Additionally, time has been spent on improving translatability and adding hints for translators in various places.&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Some missing options were added to the man page (command line help)&lt;br /&gt;
* Some missing keyboard shortcuts were added to the keyboard shortcut reference&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
* To undock a dialog on Windows, it is currently necessary to drag it out of the Inkscape window ([https://gitlab.com/inkscape/inkscape/-/issues/2216 Bug #2216])&lt;br /&gt;
* The option to quickly collapse a set of dialogs is currently not yet available. As a workaround, pressing F12 can be used to gain space on the canvas quickly. (https://gitlab.com/inkscape/inbox/-/issues/4676 Bug inbox#4676)&lt;br /&gt;
* New docked notebooks can not be added on the canvas-facing side of another docked notebook ([https://gitlab.com/inkscape/inbox/-/issues/4915 Bug inbox#4915])&lt;br /&gt;
* Many of Inkscape's old bug reports still need to be [https://alpha.inkscape.org/bug-migration/ tested and migrated to the new bug and feature request reporting page]. While some progress has already been made, we still need your help with that task.&lt;br /&gt;
* All (migrated and new) open issues for the project are listed on [https://gitlab.com/groups/inkscape/-/issues GitLab]. If you have some time on your hands and can help fixing them, [https://chat.inkscape.org/channel/team_devel join us in the development chat] and let us tackle them together.&lt;br /&gt;
* Spellchecking is currently broken on macOS. ([https://gitlab.com/inkscape/inkscape/-/issues/1496 issue #1496])&lt;br /&gt;
&lt;br /&gt;
== Other releases ==&lt;br /&gt;
&lt;br /&gt;
{{:Release notes}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=119459</id>
		<title>CompilingMacOsX</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=CompilingMacOsX&amp;diff=119459"/>
		<updated>2021-03-30T21:18:39Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Using MacPorts =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Download and install [http://www.macports.org/ MacPorts]&lt;br /&gt;
&amp;lt;li&amp;gt;Edit the MacPorts variants config (optional).&lt;br /&gt;
&amp;lt;br&amp;gt;Add this line to &amp;lt;code&amp;gt;/opt/local/etc/macports/variants.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;-x11 +quartz&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal (Applications&amp;gt;Utilities&amp;gt;Terminal) type&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;sudo port install \&lt;br /&gt;
     adwaita-icon-theme \&lt;br /&gt;
     boehmgc \&lt;br /&gt;
     boost \&lt;br /&gt;
     cairo \&lt;br /&gt;
     ccache \&lt;br /&gt;
     cmake \&lt;br /&gt;
     double-conversion \&lt;br /&gt;
     gdl3 \&lt;br /&gt;
     gettext \&lt;br /&gt;
     gsl \&lt;br /&gt;
     gtkmm3 \&lt;br /&gt;
     gtk-osx-application-gtk3 \&lt;br /&gt;
     lcms2 \&lt;br /&gt;
     libsoup \&lt;br /&gt;
     libxslt \&lt;br /&gt;
     ninja \&lt;br /&gt;
     poppler \&lt;br /&gt;
     potrace \&lt;br /&gt;
     py-lxml \&lt;br /&gt;
     py-numpy \&lt;br /&gt;
     -x11 +quartz&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;In Terminal, get Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;git clone --recurse-submodules https://gitlab.com/inkscape/inkscape.git&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;And build inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
# use a clean MacPorts environment (optional)&lt;br /&gt;
LIBPREFIX=&amp;quot;/opt/local&amp;quot;&lt;br /&gt;
export PATH=&amp;quot;$LIBPREFIX/bin:/usr/bin:/bin:/usr/sbin:/sbin&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to install&lt;br /&gt;
PREFIX=&amp;quot;$PWD/install-prefix&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# where to build&lt;br /&gt;
mkdir build&lt;br /&gt;
cd build&lt;br /&gt;
&lt;br /&gt;
cmake \&lt;br /&gt;
    -G Ninja \&lt;br /&gt;
    -DCMAKE_PREFIX_PATH=&amp;quot;$LIBPREFIX&amp;quot; \&lt;br /&gt;
    -DCMAKE_INSTALL_PREFIX=&amp;quot;$PREFIX&amp;quot; \&lt;br /&gt;
    -DCMAKE_C_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
    -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \&lt;br /&gt;
    -DWITH_OPENMP=OFF \&lt;br /&gt;
    ../inkscape&lt;br /&gt;
&lt;br /&gt;
ninja&lt;br /&gt;
ninja install&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
''Note: Using [https://en.wikipedia.org/wiki/Ccache ccache] and [https://ninja-build.org/ ninja] is not required, but very common because it speeds up compilation.''&lt;br /&gt;
&amp;lt;li&amp;gt;Run Inkscape&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$PREFIX/bin/inkscape&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Using Homebrew =&lt;br /&gt;
&lt;br /&gt;
If you are using [https://brew.sh/ Homebrew] instead, you can still use the above guidelines with small modifications.&lt;br /&gt;
&lt;br /&gt;
List of '''packages''' to install with brew&lt;br /&gt;
(for Inkscape 1.1):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
brew install \&lt;br /&gt;
    adwaita-icon-theme \&lt;br /&gt;
    bdw-gc \&lt;br /&gt;
    boost \&lt;br /&gt;
    cairomm \&lt;br /&gt;
    ccache \&lt;br /&gt;
    cmake \&lt;br /&gt;
    double-conversion \&lt;br /&gt;
    gettext \&lt;br /&gt;
    gsl \&lt;br /&gt;
    gspell \&lt;br /&gt;
    gtk-mac-integration \&lt;br /&gt;
    gtkmm3 \&lt;br /&gt;
    imagemagick \&lt;br /&gt;
    intltool \&lt;br /&gt;
    lcms2 \&lt;br /&gt;
    libomp \&lt;br /&gt;
    libsoup \&lt;br /&gt;
    libxslt \&lt;br /&gt;
    ninja \&lt;br /&gt;
    poppler \&lt;br /&gt;
    potrace&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You may substitute &amp;lt;code&amp;gt;imagemagick&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;graphicsmagick&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Since '''Homebrew''' only offers &amp;lt;code&amp;gt;gettext&amp;lt;/code&amp;gt; as a keg (not linked to &amp;lt;code&amp;gt;/usr/local&amp;lt;/code&amp;gt;) an extra option needs to be passed on to &amp;lt;code&amp;gt;cmake&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Modify the script in step 5 by changing &amp;lt;code&amp;gt;LIBPREFIX=&amp;quot;/usr/local&amp;quot;&amp;lt;/code&amp;gt; and adding the following line to the cmake arguments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
    -DIntl_INCLUDE_DIR=&amp;quot;$LIBPREFIX/opt/gettext/include&amp;quot; \&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=See also=&lt;br /&gt;
* [[Tracking Dependencies]]&lt;br /&gt;
* [[Extension requirements]]&lt;br /&gt;
*[[Compiling Inkscape]]&lt;br /&gt;
*[[Notes on Packaging for OS X]]&lt;br /&gt;
* https://github.com/valerioa/Inkscape-MacOS-Curated-Build&lt;br /&gt;
* [https://github.com/ipatch/homebrew-us-05/blob/master/inkscape/inkscape-building-for-macOS.md ipatch's collection of notes] about building Inkscape using Homebrew&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Documentation]]&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119211</id>
		<title>Release notes/1.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119211"/>
		<updated>2021-01-17T12:19:32Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: update due to feedback from upstream&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/master Commit History Main Program (starting from: 2b71d25 (Tue Dec 3 15:29:50 2019 +0100))]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/master Commit History Extensions (starting from: fe0fe398 (October 28, 2019))]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/master Commit History Documentation (starting from: cc619d14 (December 15 2019))]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|Notes:&lt;br /&gt;
&lt;br /&gt;
For changes made even before the 1.0 release that aren't in 1.0, try to find out if the checked and not stroked ones here: https://gitlab.com/inkscape/inkscape/-/issues/1030 have really not been cherrypicked&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* https://gitlab.com/inkscape/inkscape/-/commit/64a343e585463dab76e1e9d3698e52394fb637b9#note_481514761&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
Inkscape 1.1 is the latest major Inkscape release that brings users many fresh new features and new functionality. &lt;br /&gt;
The most notable changes include:&lt;br /&gt;
&lt;br /&gt;
* A Welcome dialog, where the theme and the new document's size or file to open can be selected&lt;br /&gt;
* A Commands palette that opens when the &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; key is pressed and that allows to search and use many functions without having to use a keyboard shortcut or going through the menus&lt;br /&gt;
* It is now possible to copy, cut and paste parts of paths with the Node tool&lt;br /&gt;
* The dialog docking system has been rewritten, which resolves many issues with Inkscape's docked dialogs and allows you to dock dialogs on either side of the screen&lt;br /&gt;
* New Outline overlay mode that displays object outlines while also showing their real colors&lt;br /&gt;
* Preferences options are now easier to find by using the new search field&lt;br /&gt;
* It is no longer necessary to remember to click on 'Export' in the PNG Export dialog, as the exporting will already happen after the click on 'Save' in the file selection dialog.&lt;br /&gt;
&lt;br /&gt;
== Important changes ==&lt;br /&gt;
&lt;br /&gt;
=== For packagers ===&lt;br /&gt;
&lt;br /&gt;
* Inkscape no longer depends on GtkSpell and ASpell but on GSpell for spell checking.&lt;br /&gt;
* lib2geom has been moved [https://gitlab.com/inkscape/lib2geom into its own git submodule] (like the extensions), a new release is available.&lt;br /&gt;
&lt;br /&gt;
== Improvements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/XInclude XInclude] support (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/1150 !1150]) ''TODO: Move to a &amp;quot;technical&amp;quot; or &amp;quot;advanced&amp;quot; section?''&lt;br /&gt;
* Shell mode: a history of commands is now remembered and can be accessed with the up and down arrow keys. [Tab ... autocompletion?]&lt;br /&gt;
* Recognize layers in SVG files exported from CorelDraw (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/2046 !2046])&lt;br /&gt;
* @import statements in CSS sheets are now processed in the correct order, so their styles are no longer overwritten unintentionally.&lt;br /&gt;
&lt;br /&gt;
=== General user interface ===&lt;br /&gt;
&lt;br /&gt;
==== Commands palette ====&lt;br /&gt;
&lt;br /&gt;
This feature was added by Google Summer of Code Student Abhay Raj Singh in 2020. Learn more about the feature's development [https://gitlab.com/rathod-sahaab/gsoc-2020-inkscape on GitLab].&lt;br /&gt;
&lt;br /&gt;
=== Canvas ===&lt;br /&gt;
&lt;br /&gt;
==== 'Outline Overlay' display mode ====&lt;br /&gt;
In this mode, a toned down view of the drawing (not click-sensitive) is shown behind the (click-sensitive) object outlines.    &lt;br /&gt;
The opacity of the original drawing in this view mode can be set in Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; Outline overlay opacity.&lt;br /&gt;
[[File:Outline Overlay Preview.png|650px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
==== Handles ====&lt;br /&gt;
&lt;br /&gt;
The maximal handle size has been increased, so users with HiDPI displays will be able to enlarge them to a more comfortable size.&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
==== Calligraphy Tool ====&lt;br /&gt;
&lt;br /&gt;
* The tool now supports units for the width, with a much increased precision (up to three digits after the decimal separator, e.g. 0.005). The old, zoom-dependent width behavior is accessible with the unit '%'.&lt;br /&gt;
&lt;br /&gt;
==== Connector tool ====&lt;br /&gt;
&lt;br /&gt;
* Connection lines now update in real time while objects are moved &lt;br /&gt;
* New sub-point connections for clones and groups, allowing users to use Inkscape to connect diagrams together like in other drafting tools:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sub connector points.gif|New sub-connector points&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Node tool ====&lt;br /&gt;
&lt;br /&gt;
The node tool now allows to copy, cut and paste a selection of nodes. These nodes can be inserted into the original path, into a different path or they can be pasted as a  completely new path.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:Copy paste nodes.gif| Copy, cut and paste just parts of the paths&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Text Tool ====&lt;br /&gt;
&lt;br /&gt;
* Text-in-a-shape can now make use of justified text alignment.&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
==== Docking ====&lt;br /&gt;
&lt;br /&gt;
The docking feature has been refactored by Google Summer of Code Student Valentin Ionita in 2020. You can learn more about his work [https://gitlab.com/vanntile/inkscape-gsoc-2020 on GitLab].&lt;br /&gt;
&lt;br /&gt;
==== Preferences dialog ====&lt;br /&gt;
&lt;br /&gt;
* Added new search bar in the preferences dialogue that performs a recursive search over all the nested categories of settings&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+G&amp;lt;/code&amp;gt;''' for next result&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;Shit+F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+Shift+G&amp;lt;/code&amp;gt;''' for previous result&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Imported images: Import, there is a new option that allows you to disable relative paths to linked files (&amp;quot;Store absolute file path for linked images&amp;quot;, active by default).&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; there is a new option to &amp;lt;code&amp;gt;Redraw while editing&amp;lt;/code&amp;gt; that improves performance of redrawing with some faster CPUs  (&amp;quot;Responsive&amp;quot;, active by default)&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Interface &amp;gt; Keyboard, in the new '''Modifiers''' tab, you can customize keyboard shortcut modifiers for on-canvas mouse actions (for example holding Ctrl for scaling while keeping the object's aspect ratio can be changed to Shift) [Known issue: doesn't survive a restart]&lt;br /&gt;
* The Zoom correction factor in Edit &amp;gt; Preferences &amp;gt; Interface now works correctly for other units than mm and remembers values below 100%&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:A search bar in the preferences dialogue.gif|Search bar in the Preferences dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 'About Inkscape' dialog ====&lt;br /&gt;
&lt;br /&gt;
The Help &amp;gt; About Inkscape dialog has been rebuilt from scratch with a larger window (and image) and a tabbed interface.&lt;br /&gt;
* The user-contributed About Screen artwork is now displayed much larger, as it should be!&lt;br /&gt;
* Authors and translators are now featured on separate tabs.&lt;br /&gt;
* A new license tab offers a brief explanation of Inkscape licensing. &lt;br /&gt;
* All the tabs include calls to action or links to the official website for more information.&lt;br /&gt;
* The current version of Inkscape is displayed on a button. When clicked, the full version information is copied to the clipboard, so it can be used in bug reports, for example.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=600px&amp;gt;&lt;br /&gt;
File:New about dialog.gif|The reworked About Inkscape dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Fill and Stroke ====&lt;br /&gt;
&amp;lt;code&amp;gt;Object → Fill and stroke → Stroke Style&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hairline stroke style can now be set in the dialog. This type of stroke is always 1px wide, independent of the zoom level. This feature is useful for laser cutters and plotters.&lt;br /&gt;
** Supports exporting hairlines to file formats with native hairline support (pdf/ps).&lt;br /&gt;
** Exporting hairlines to output devices or native file formats requires [https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/21 a patch to Cairo]. If unavailable, a very thin line width will be used instead.&lt;br /&gt;
** In other SVG renderers, these will be handled via non-scaling stroke with a stroke width of 1px.&lt;br /&gt;
** Export to PNG and rendering on canvas will use a line width of 1px.&lt;br /&gt;
* Miter maximum increased to 100000 (https://gitlab.com/inkscape/inkscape/-/commit/69dc1688b1c1abb30437743a408644855616d3ad)&lt;br /&gt;
&lt;br /&gt;
[[File:InkscapeHairlines.gif]]&lt;br /&gt;
&lt;br /&gt;
==== Gradients ====&lt;br /&gt;
&lt;br /&gt;
* The legacy gradient editor (a dialog that could previously be enabled in the preferences for the gradient tool) has been removed.&lt;br /&gt;
&lt;br /&gt;
==== 'Welcome' dialog ====&lt;br /&gt;
&lt;br /&gt;
A new welcome and onboarding screen was added. You can set up the look of Inkscape on a first run and select from presets of document settings.&lt;br /&gt;
This dialog can be turned off.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Welcome dialog 1.png|The new Welcome dialog&lt;br /&gt;
File:Welcome dialog 2.png|Help the Inkscape project by contributing&lt;br /&gt;
File:Welcome dialog 3.png|Loading an existing file&lt;br /&gt;
File:Welcome dialog 4.png|Choosing a document size from the 'Screen' category&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Live path effects ===&lt;br /&gt;
&lt;br /&gt;
==== Automatic fill preservation for path effects ====&lt;br /&gt;
&lt;br /&gt;
LPEs which render strokes as fills (&amp;lt;code&amp;gt;Join Type&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Power Stroke&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;Taper Stroke&amp;lt;/code&amp;gt;) have been modified to automatically preserve the previous fill by creating a linked path when applied to an object.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sadchrys original drawing with fill.png|Original drawing&lt;br /&gt;
File:Sadchrys after applying LPE previous versions.png|Previous versions of Inkscape would preserve the stroke settings but remove the fill when applied.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 original path.png|Now, Inkscape will automatically preserve the fill by creating a linked path underneath.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 linked fill.png|LPE options for the linked fill&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Taper Stroke&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
The Taper stroke LPE has been updated to include taper direction options (allowing the taper to run to one side of the path, instead of to the middle) and smoothing options for both ends of the path, allowing more interesting paths to be made in the effect. In addition, using the keybind '''Shift+click''' on the on-canvas knots allows quickly alternating between the different possible taper shapes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Taper stroke direction control.png|Direction control options&lt;br /&gt;
File:Taper stroke new parameter list.png|New parameter list&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Fill between many&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
A new shortcut has been added under the Path menu to automatically create a linked fill path using the '''Fill between many''' path effect. The effect is created beneath the selected paths and automatically selected to faciliate moving the path into the correct z-order and styling it as intended. For greater efficiency, the shortcut can also be bound to a hotkey using the '''Preferences''' dialog.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Fill between many shortcut menuitem.png|Previously, using this effect required tediously copying every path to the clipboard and pasting it into the parameter list of a new path.&lt;br /&gt;
File:Fill between many result.png|Now, Inkscape can perform this task automatically, without any tedium.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Offset&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
Offset calculation works faster now. Open paths can now have an offset that is not automatically closed [Known issue: when they don't self-intersect].&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Slice&amp;quot; LPE (new) ====&lt;br /&gt;
&lt;br /&gt;
This new path effect allows you to split an object into two without destroying the original (or more by stacking multiple LPEs).&lt;br /&gt;
It works with groups, shapes, and paths. If you want to use it on Text, you need to use the 'Clone' LPE and apply the 'Slice' LPE on this clone. &lt;br /&gt;
It also allow change styles to any part because each part is a separated object only linked by original shape and maybe original transforms&lt;br /&gt;
&lt;br /&gt;
[[File:Slice LPE 1.gif|800px|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Export ===&lt;br /&gt;
&lt;br /&gt;
* The Export PNG Image dialog now exports the PNG as soon as the button Export as has been clicked and a file name was selected for the file. It's no longer necessary to explicitly click on Export after choosing a file name.&lt;br /&gt;
&lt;br /&gt;
=== Customization ===&lt;br /&gt;
&lt;br /&gt;
==== Cursors ====&lt;br /&gt;
&lt;br /&gt;
A set of SVG-based, themeable mouse cursors with HiDPI support were added. &lt;br /&gt;
These new cursors are coupled with the icon themes. The default set (hicolor theme) is stored in &amp;lt;code&amp;gt;~inkscape\share\inkscape\icons\hicolor\cursors&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
More information can be found on the [[SVG Cursors]] page. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Coursers.png|New cursor theme&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Shortcuts ====&lt;br /&gt;
&lt;br /&gt;
* Illustrator keyboard shortcut map has been updated to ... &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;Fill me in&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Themes ====&lt;br /&gt;
&lt;br /&gt;
* a more compact Minwaita theme has been added&lt;br /&gt;
* the win32 theme has been improved by adding some custom adjustments&lt;br /&gt;
&lt;br /&gt;
==== macOS-specific changes ====&lt;br /&gt;
&lt;br /&gt;
* New Inkscape icon ([https://gitlab.com/inkscape/inkscape/-/commit/ee58965003ca1960c20d7da276c3774166c18d42 commit ee589650])&lt;br /&gt;
* Visio files can be imported ([https://gitlab.com/inkscape/inkscape/-/issues/2094 issue #2094])&lt;br /&gt;
* No longer bundle Ghostscript, effectively removing out of the box support for EPS and PS ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2608 MR #2608]), information about workarounds can be found at https://gitlab.com/inkscape/inbox/-/issues/4321&lt;br /&gt;
* &amp;lt;del&amp;gt;This is the last release to support OS X El Capitan 10.11. Future releases will require at least macOS High Sierra 10.13 as oldest supported operating system.&amp;lt;/del&amp;gt; A few hours ago I got feedback on the [https://gitlab.gnome.org/GNOME/gtk/-/issues/3592 upstream issue] which is the deciding factor here. There's hope now, so let's not make an announcement like this just yet.&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
=== Command line ===&lt;br /&gt;
&lt;br /&gt;
* The options &amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;x y z&amp;lt;/span&amp;gt; have been added back in to preserve compatibility with legacy Inkscape command line scripts (and ImageMagick's SVG conversion)&lt;br /&gt;
&lt;br /&gt;
== Notable bugfixes ==&lt;br /&gt;
&lt;br /&gt;
=== Crash fixes ===&lt;br /&gt;
&lt;br /&gt;
Fix a crash &amp;amp;hellip;&lt;br /&gt;
* &amp;amp;hellip; when ... ([https://gitlab.com/inkscape/inkscape/-/issues/ #number])&lt;br /&gt;
&lt;br /&gt;
=== Other bug fixes ===&lt;br /&gt;
&lt;br /&gt;
* The color selector's color wheel looks better now on HiDPI screens [https://gitlab.com/inkscape/inkscape/-/merge_requests/2416 MR #2416]&lt;br /&gt;
* The color indicator field in the bottom left corner of the window now uses a constant width and has been cleaned up a bit [https://gitlab.com/inkscape/inkscape/-/merge_requests/2400 MR #2400] &lt;br /&gt;
* The size of the double-arrow handles in the color sliders has been increased [https://gitlab.com/inkscape/inkscape/-/merge_requests/2427 MR #2427]&lt;br /&gt;
* Fix of multiple regressions and bugs with '''Stroke to path''' [https://gitlab.com/inkscape/inkscape/-/merge_requests/2410 MR #2410]&lt;br /&gt;
* Fix of feColorMatrix filter primitive default rendering [https://gitlab.com/inkscape/inkscape/-/merge_requests/2424 MR #2424]&lt;br /&gt;
* You can now just click in the color wheel to select a color [https://gitlab.com/inkscape/inkscape/-/merge_requests/2428 MR #2428]&lt;br /&gt;
&lt;br /&gt;
=== Even more bug fixes ===&lt;br /&gt;
&lt;br /&gt;
There were even more issues fixed than those listed above, but these probably only affect a small portion of users, or are relevant for development and packaging only.&lt;br /&gt;
&lt;br /&gt;
For a complete list, visit [https://gitlab.com/inkscape/inkscape/-/milestones/2 our GitLab issue tracker] and see the [https://gitlab.com/inkscape/inkscape/-/commits/1.0.x commit history] (all changes since DATE until release date).&lt;br /&gt;
&lt;br /&gt;
== Breaking changes / Action required ==&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
Element selections API has been improved, the API in 10 of using &amp;lt;code&amp;gt;self.svg.selected&amp;lt;/code&amp;gt; is deprecated in favour of the new &amp;lt;code&amp;gt;self.svg.selection&amp;lt;/code&amp;gt; interface. The previous API will continue to work for the time being but should be updated to the new API. Selection is now a type of ElementList which provides filtering, ordering and other generalised functionality, if you need an element list for example to make a bounding box, this is the way to do it.&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Some missing options were added to the man page (command line help)&lt;br /&gt;
* Some missing keyboard shortcuts were added to the keyboard shortcut reference&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
* Fill in&lt;br /&gt;
* Many of Inkscape's old bug reports still need to be [https://alpha.inkscape.org/bug-migration/ tested and migrated to the new bug and feature request reporting page]. While some progress has already been made, we still need your help with that task.&lt;br /&gt;
* All (migrated and new) open issues for the project are listed on [https://gitlab.com/groups/inkscape/-/issues GitLab]. If you have some time on your hands and can help fixing them, [https://chat.inkscape.org/channel/team_devel join us in the development chat] and let us tackle them together.&lt;br /&gt;
* Spellchecking is currently broken on macOS. ([https://gitlab.com/inkscape/inkscape/-/issues/1496 issue #1496])&lt;br /&gt;
&lt;br /&gt;
== Previous releases ==&lt;br /&gt;
&lt;br /&gt;
* [[Release notes/1.0]] ([[Release_notes/1.0.1 |1.0.1]], [[Release_notes/1.0.2 |1.0.2]])&lt;br /&gt;
* [[Release notes/0.92]] ([[Release_notes/0.92.1 |0.92.1]], [[Release_notes/0.92.2 |0.92.2]], [[Release_notes/0.92.3 |0.92.3]], [[Release_notes/0.92.4 |0.92.4]], [[Release_notes/0.92.5 |0.92.5]])&lt;br /&gt;
* [[Release notes/0.91]]&lt;br /&gt;
* [[Release notes/0.48]] ([[Release notes/0.48.1 |0.48.1]], [[Release notes/0.48.2 | 0.48.2]], [[Release notes/0.48.3 | 0.48.3]], [[Release notes/0.48.4 | 0.48.4]], [[Release notes/0.48.5 | 0.48.5]])&lt;br /&gt;
* [[Release notes/0.47]]&lt;br /&gt;
* [[Release notes/0.46]]&lt;br /&gt;
* [[Release notes/0.45]]&lt;br /&gt;
* [[Release notes/0.44]]&lt;br /&gt;
* [[Release notes/0.43]]&lt;br /&gt;
* [[Release notes/0.42]]&lt;br /&gt;
* [[Release notes/0.41]]&lt;br /&gt;
* [[Release notes/0.40]]&lt;br /&gt;
* [[Release notes/0.39]]&lt;br /&gt;
* [[Release notes/0.38]]&lt;br /&gt;
* [[Release notes/0.37]]&lt;br /&gt;
* [[Release notes/0.36]]&lt;br /&gt;
* [[Release notes/0.35]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119210</id>
		<title>Release notes/1.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119210"/>
		<updated>2021-01-16T15:55:23Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: add spellcheck macOS issue&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/master Commit History Main Program (starting from: 2b71d25 (Tue Dec 3 15:29:50 2019 +0100))]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/master Commit History Extensions (starting from: fe0fe398 (October 28, 2019))]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/master Commit History Documentation (starting from: cc619d14 (December 15 2019))]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|Notes:&lt;br /&gt;
&lt;br /&gt;
For changes made even before the 1.0 release that aren't in 1.0, try to find out if the checked and not stroked ones here: https://gitlab.com/inkscape/inkscape/-/issues/1030 have really not been cherrypicked&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* https://gitlab.com/inkscape/inkscape/-/commit/64a343e585463dab76e1e9d3698e52394fb637b9#note_481514761&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
Inkscape 1.1 is the latest major Inkscape release that brings users many fresh new features and new functionality. &lt;br /&gt;
The most notable changes include:&lt;br /&gt;
&lt;br /&gt;
* A Welcome dialog, where the theme and the new document's size or file to open can be selected&lt;br /&gt;
* A Commands palette that opens when the &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; key is pressed and that allows to search and use many functions without having to use a keyboard shortcut or going through the menus&lt;br /&gt;
* It is now possible to copy, cut and paste parts of paths with the Node tool&lt;br /&gt;
* The dialog docking system has been rewritten, which resolves many issues with Inkscape's docked dialogs and allows you to dock dialogs on either side of the screen&lt;br /&gt;
* New Outline overlay mode that displays object outlines while also showing their real colors&lt;br /&gt;
* Preferences options are now easier to find by using the new search field&lt;br /&gt;
* It is no longer necessary to remember to click on 'Export' in the PNG Export dialog, as the exporting will already happen after the click on 'Save' in the file selection dialog.&lt;br /&gt;
&lt;br /&gt;
== Important changes ==&lt;br /&gt;
&lt;br /&gt;
=== For packagers ===&lt;br /&gt;
&lt;br /&gt;
* Inkscape no longer depends on GtkSpell and ASpell but on GSpell for spell checking.&lt;br /&gt;
* lib2geom has been moved [https://gitlab.com/inkscape/lib2geom into its own git submodule] (like the extensions), a new release is available.&lt;br /&gt;
&lt;br /&gt;
== Improvements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/XInclude XInclude] support (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/1150 !1150]) ''TODO: Move to a &amp;quot;technical&amp;quot; or &amp;quot;advanced&amp;quot; section?''&lt;br /&gt;
* Shell mode: a history of commands is now remembered and can be accessed with the up and down arrow keys. [Tab ... autocompletion?]&lt;br /&gt;
* Recognize layers in SVG files exported from CorelDraw (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/2046 !2046])&lt;br /&gt;
* @import statements in CSS sheets are now processed in the correct order, so their styles are no longer overwritten unintentionally.&lt;br /&gt;
&lt;br /&gt;
=== General user interface ===&lt;br /&gt;
&lt;br /&gt;
==== Commands palette ====&lt;br /&gt;
&lt;br /&gt;
This feature was added by Google Summer of Code Student Abhay Raj Singh in 2020. Learn more about the feature's development [https://gitlab.com/rathod-sahaab/gsoc-2020-inkscape on GitLab].&lt;br /&gt;
&lt;br /&gt;
=== Canvas ===&lt;br /&gt;
&lt;br /&gt;
==== 'Outline Overlay' display mode ====&lt;br /&gt;
In this mode, a toned down view of the drawing (not click-sensitive) is shown behind the (click-sensitive) object outlines.    &lt;br /&gt;
The opacity of the original drawing in this view mode can be set in Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; Outline overlay opacity.&lt;br /&gt;
[[File:Outline Overlay Preview.png|650px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
==== Handles ====&lt;br /&gt;
&lt;br /&gt;
The maximal handle size has been increased, so users with HiDPI displays will be able to enlarge them to a more comfortable size.&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
==== Calligraphy Tool ====&lt;br /&gt;
&lt;br /&gt;
* The tool now supports units for the width, with a much increased precision (up to three digits after the decimal separator, e.g. 0.005). The old, zoom-dependent width behavior is accessible with the unit '%'.&lt;br /&gt;
&lt;br /&gt;
==== Connector tool ====&lt;br /&gt;
&lt;br /&gt;
* Connection lines now update in real time while objects are moved &lt;br /&gt;
* New sub-point connections for clones and groups, allowing users to use Inkscape to connect diagrams together like in other drafting tools:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sub connector points.gif|New sub-connector points&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Node tool ====&lt;br /&gt;
&lt;br /&gt;
The node tool now allows to copy, cut and paste a selection of nodes. These nodes can be inserted into the original path, into a different path or they can be pasted as a  completely new path.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:Copy paste nodes.gif| Copy, cut and paste just parts of the paths&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Text Tool ====&lt;br /&gt;
&lt;br /&gt;
* Text-in-a-shape can now make use of justified text alignment.&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
==== Docking ====&lt;br /&gt;
&lt;br /&gt;
The docking feature has been refactored by Google Summer of Code Student Valentin Ionita in 2020. You can learn more about his work [https://gitlab.com/vanntile/inkscape-gsoc-2020 on GitLab].&lt;br /&gt;
&lt;br /&gt;
==== Preferences dialog ====&lt;br /&gt;
&lt;br /&gt;
* Added new search bar in the preferences dialogue that performs a recursive search over all the nested categories of settings&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+G&amp;lt;/code&amp;gt;''' for next result&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;Shit+F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+Shift+G&amp;lt;/code&amp;gt;''' for previous result&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Imported images: Import, there is a new option that allows you to disable relative paths to linked files (&amp;quot;Store absolute file path for linked images&amp;quot;, active by default).&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; there is a new option to &amp;lt;code&amp;gt;Redraw while editing&amp;lt;/code&amp;gt; that improves performance of redrawing with some faster CPUs  (&amp;quot;Responsive&amp;quot;, active by default)&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Interface &amp;gt; Keyboard, in the new '''Modifiers''' tab, you can customize keyboard shortcut modifiers for on-canvas mouse actions (for example holding Ctrl for scaling while keeping the object's aspect ratio can be changed to Shift) [Known issue: doesn't survive a restart]&lt;br /&gt;
* The Zoom correction factor in Edit &amp;gt; Preferences &amp;gt; Interface now works correctly for other units than mm and remembers values below 100%&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:A search bar in the preferences dialogue.gif|Search bar in the Preferences dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 'About Inkscape' dialog ====&lt;br /&gt;
&lt;br /&gt;
The Help &amp;gt; About Inkscape dialog has been rebuilt from scratch with a larger window (and image) and a tabbed interface.&lt;br /&gt;
* The user-contributed About Screen artwork is now displayed much larger, as it should be!&lt;br /&gt;
* Authors and translators are now featured on separate tabs.&lt;br /&gt;
* A new license tab offers a brief explanation of Inkscape licensing. &lt;br /&gt;
* All the tabs include calls to action or links to the official website for more information.&lt;br /&gt;
* The current version of Inkscape is displayed on a button. When clicked, the full version information is copied to the clipboard, so it can be used in bug reports, for example.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=600px&amp;gt;&lt;br /&gt;
File:New about dialog.gif|The reworked About Inkscape dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Fill and Stroke ====&lt;br /&gt;
&amp;lt;code&amp;gt;Object → Fill and stroke → Stroke Style&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hairline stroke style can now be set in the dialog. This type of stroke is always 1px wide, independent of the zoom level. This feature is useful for laser cutters and plotters.&lt;br /&gt;
** Supports exporting hairlines to file formats with native hairline support (pdf/ps).&lt;br /&gt;
** Exporting hairlines to output devices or native file formats requires [https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/21 a patch to Cairo]. If unavailable, a very thin line width will be used instead.&lt;br /&gt;
** In other SVG renderers, these will be handled via non-scaling stroke with a stroke width of 1px.&lt;br /&gt;
** Export to PNG and rendering on canvas will use a line width of 1px.&lt;br /&gt;
* Miter maximum increased to 100000 (https://gitlab.com/inkscape/inkscape/-/commit/69dc1688b1c1abb30437743a408644855616d3ad)&lt;br /&gt;
&lt;br /&gt;
[[File:InkscapeHairlines.gif]]&lt;br /&gt;
&lt;br /&gt;
==== Gradients ====&lt;br /&gt;
&lt;br /&gt;
* The legacy gradient editor (a dialog that could previously be enabled in the preferences for the gradient tool) has been removed.&lt;br /&gt;
&lt;br /&gt;
==== 'Welcome' dialog ====&lt;br /&gt;
&lt;br /&gt;
A new welcome and onboarding screen was added. You can set up the look of Inkscape on a first run and select from presets of document settings.&lt;br /&gt;
This dialog can be turned off.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Welcome dialog 1.png|The new Welcome dialog&lt;br /&gt;
File:Welcome dialog 2.png|Help the Inkscape project by contributing&lt;br /&gt;
File:Welcome dialog 3.png|Loading an existing file&lt;br /&gt;
File:Welcome dialog 4.png|Choosing a document size from the 'Screen' category&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Live path effects ===&lt;br /&gt;
&lt;br /&gt;
==== Automatic fill preservation for path effects ====&lt;br /&gt;
&lt;br /&gt;
LPEs which render strokes as fills (&amp;lt;code&amp;gt;Join Type&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Power Stroke&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;Taper Stroke&amp;lt;/code&amp;gt;) have been modified to automatically preserve the previous fill by creating a linked path when applied to an object.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sadchrys original drawing with fill.png|Original drawing&lt;br /&gt;
File:Sadchrys after applying LPE previous versions.png|Previous versions of Inkscape would preserve the stroke settings but remove the fill when applied.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 original path.png|Now, Inkscape will automatically preserve the fill by creating a linked path underneath.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 linked fill.png|LPE options for the linked fill&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Taper Stroke&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
The Taper stroke LPE has been updated to include taper direction options (allowing the taper to run to one side of the path, instead of to the middle) and smoothing options for both ends of the path, allowing more interesting paths to be made in the effect. In addition, using the keybind '''Shift+click''' on the on-canvas knots allows quickly alternating between the different possible taper shapes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Taper stroke direction control.png|Direction control options&lt;br /&gt;
File:Taper stroke new parameter list.png|New parameter list&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Fill between many&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
A new shortcut has been added under the Path menu to automatically create a linked fill path using the '''Fill between many''' path effect. The effect is created beneath the selected paths and automatically selected to faciliate moving the path into the correct z-order and styling it as intended. For greater efficiency, the shortcut can also be bound to a hotkey using the '''Preferences''' dialog.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Fill between many shortcut menuitem.png|Previously, using this effect required tediously copying every path to the clipboard and pasting it into the parameter list of a new path.&lt;br /&gt;
File:Fill between many result.png|Now, Inkscape can perform this task automatically, without any tedium.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Offset&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
Offset calculation works faster now. Open paths can now have an offset that is not automatically closed [Known issue: when they don't self-intersect].&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Slice&amp;quot; LPE (new) ====&lt;br /&gt;
&lt;br /&gt;
This new path effect allows you to split an object into two without destroying the original (or more by stacking multiple LPEs).&lt;br /&gt;
It works with groups, shapes, and paths. If you want to use it on Text, you need to use the 'Clone' LPE and apply the 'Slice' LPE on this clone. &lt;br /&gt;
It also allow change styles to any part because each part is a separated object only linked by original shape and maybe original transforms&lt;br /&gt;
&lt;br /&gt;
[[File:Slice LPE 1.gif|800px|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Export ===&lt;br /&gt;
&lt;br /&gt;
* The Export PNG Image dialog now exports the PNG as soon as the button Export as has been clicked and a file name was selected for the file. It's no longer necessary to explicitly click on Export after choosing a file name.&lt;br /&gt;
&lt;br /&gt;
=== Customization ===&lt;br /&gt;
&lt;br /&gt;
==== Cursors ====&lt;br /&gt;
&lt;br /&gt;
A set of SVG-based, themeable mouse cursors with HiDPI support were added. &lt;br /&gt;
These new cursors are coupled with the icon themes. The default set (hicolor theme) is stored in &amp;lt;code&amp;gt;~inkscape\share\inkscape\icons\hicolor\cursors&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
More information can be found on the [[SVG Cursors]] page. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Coursers.png|New cursor theme&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Shortcuts ====&lt;br /&gt;
&lt;br /&gt;
* Illustrator keyboard shortcut map has been updated to ... &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;Fill me in&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Themes ====&lt;br /&gt;
&lt;br /&gt;
* a more compact Minwaita theme has been added&lt;br /&gt;
* the win32 theme has been improved by adding some custom adjustments&lt;br /&gt;
&lt;br /&gt;
==== macOS-specific changes ====&lt;br /&gt;
&lt;br /&gt;
* New Inkscape icon ([https://gitlab.com/inkscape/inkscape/-/commit/ee58965003ca1960c20d7da276c3774166c18d42 commit ee589650])&lt;br /&gt;
* Visio files can be imported ([https://gitlab.com/inkscape/inkscape/-/issues/2094 issue #2094])&lt;br /&gt;
* No longer bundle Ghostscript, effectively removing out of the box support for EPS and PS ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2608 MR #2608]), information about workarounds can be found at https://gitlab.com/inkscape/inbox/-/issues/4321&lt;br /&gt;
* This is the last release to support OS X El Capitan 10.11. Future releases will require at least macOS High Sierra 10.13 as oldest supported operating system.&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
=== Command line ===&lt;br /&gt;
&lt;br /&gt;
* The options &amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;x y z&amp;lt;/span&amp;gt; have been added back in to preserve compatibility with legacy Inkscape command line scripts (and ImageMagick's SVG conversion)&lt;br /&gt;
&lt;br /&gt;
== Notable bugfixes ==&lt;br /&gt;
&lt;br /&gt;
=== Crash fixes ===&lt;br /&gt;
&lt;br /&gt;
Fix a crash &amp;amp;hellip;&lt;br /&gt;
* &amp;amp;hellip; when ... ([https://gitlab.com/inkscape/inkscape/-/issues/ #number])&lt;br /&gt;
&lt;br /&gt;
=== Other bug fixes ===&lt;br /&gt;
&lt;br /&gt;
* The color selector's color wheel looks better now on HiDPI screens [https://gitlab.com/inkscape/inkscape/-/merge_requests/2416 MR #2416]&lt;br /&gt;
* The color indicator field in the bottom left corner of the window now uses a constant width and has been cleaned up a bit [https://gitlab.com/inkscape/inkscape/-/merge_requests/2400 MR #2400] &lt;br /&gt;
* The size of the double-arrow handles in the color sliders has been increased [https://gitlab.com/inkscape/inkscape/-/merge_requests/2427 MR #2427]&lt;br /&gt;
* Fix of multiple regressions and bugs with '''Stroke to path''' [https://gitlab.com/inkscape/inkscape/-/merge_requests/2410 MR #2410]&lt;br /&gt;
* Fix of feColorMatrix filter primitive default rendering [https://gitlab.com/inkscape/inkscape/-/merge_requests/2424 MR #2424]&lt;br /&gt;
* You can now just click in the color wheel to select a color [https://gitlab.com/inkscape/inkscape/-/merge_requests/2428 MR #2428]&lt;br /&gt;
&lt;br /&gt;
=== Even more bug fixes ===&lt;br /&gt;
&lt;br /&gt;
There were even more issues fixed than those listed above, but these probably only affect a small portion of users, or are relevant for development and packaging only.&lt;br /&gt;
&lt;br /&gt;
For a complete list, visit [https://gitlab.com/inkscape/inkscape/-/milestones/2 our GitLab issue tracker] and see the [https://gitlab.com/inkscape/inkscape/-/commits/1.0.x commit history] (all changes since DATE until release date).&lt;br /&gt;
&lt;br /&gt;
== Breaking changes / Action required ==&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
Element selections API has been improved, the API in 10 of using &amp;lt;code&amp;gt;self.svg.selected&amp;lt;/code&amp;gt; is deprecated in favour of the new &amp;lt;code&amp;gt;self.svg.selection&amp;lt;/code&amp;gt; interface. The previous API will continue to work for the time being but should be updated to the new API. Selection is now a type of ElementList which provides filtering, ordering and other generalised functionality, if you need an element list for example to make a bounding box, this is the way to do it.&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Some missing options were added to the man page (command line help)&lt;br /&gt;
* Some missing keyboard shortcuts were added to the keyboard shortcut reference&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
* Fill in&lt;br /&gt;
* Many of Inkscape's old bug reports still need to be [https://alpha.inkscape.org/bug-migration/ tested and migrated to the new bug and feature request reporting page]. While some progress has already been made, we still need your help with that task.&lt;br /&gt;
* All (migrated and new) open issues for the project are listed on [https://gitlab.com/groups/inkscape/-/issues GitLab]. If you have some time on your hands and can help fixing them, [https://chat.inkscape.org/channel/team_devel join us in the development chat] and let us tackle them together.&lt;br /&gt;
* Spellchecking is currently broken on macOS. ([https://gitlab.com/inkscape/inkscape/-/issues/1496 issue #1496])&lt;br /&gt;
&lt;br /&gt;
== Previous releases ==&lt;br /&gt;
&lt;br /&gt;
* [[Release notes/1.0]] ([[Release_notes/1.0.1 |1.0.1]], [[Release_notes/1.0.2 |1.0.2]])&lt;br /&gt;
* [[Release notes/0.92]] ([[Release_notes/0.92.1 |0.92.1]], [[Release_notes/0.92.2 |0.92.2]], [[Release_notes/0.92.3 |0.92.3]], [[Release_notes/0.92.4 |0.92.4]], [[Release_notes/0.92.5 |0.92.5]])&lt;br /&gt;
* [[Release notes/0.91]]&lt;br /&gt;
* [[Release notes/0.48]] ([[Release notes/0.48.1 |0.48.1]], [[Release notes/0.48.2 | 0.48.2]], [[Release notes/0.48.3 | 0.48.3]], [[Release notes/0.48.4 | 0.48.4]], [[Release notes/0.48.5 | 0.48.5]])&lt;br /&gt;
* [[Release notes/0.47]]&lt;br /&gt;
* [[Release notes/0.46]]&lt;br /&gt;
* [[Release notes/0.45]]&lt;br /&gt;
* [[Release notes/0.44]]&lt;br /&gt;
* [[Release notes/0.43]]&lt;br /&gt;
* [[Release notes/0.42]]&lt;br /&gt;
* [[Release notes/0.41]]&lt;br /&gt;
* [[Release notes/0.40]]&lt;br /&gt;
* [[Release notes/0.39]]&lt;br /&gt;
* [[Release notes/0.38]]&lt;br /&gt;
* [[Release notes/0.37]]&lt;br /&gt;
* [[Release notes/0.36]]&lt;br /&gt;
* [[Release notes/0.35]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119209</id>
		<title>Release notes/1.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119209"/>
		<updated>2021-01-16T15:52:48Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: add info about OS requirements&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/master Commit History Main Program (starting from: 2b71d25 (Tue Dec 3 15:29:50 2019 +0100))]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/master Commit History Extensions (starting from: fe0fe398 (October 28, 2019))]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/master Commit History Documentation (starting from: cc619d14 (December 15 2019))]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|Notes:&lt;br /&gt;
&lt;br /&gt;
For changes made even before the 1.0 release that aren't in 1.0, try to find out if the checked and not stroked ones here: https://gitlab.com/inkscape/inkscape/-/issues/1030 have really not been cherrypicked&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* https://gitlab.com/inkscape/inkscape/-/commit/64a343e585463dab76e1e9d3698e52394fb637b9#note_481514761&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
Inkscape 1.1 is the latest major Inkscape release that brings users many fresh new features and new functionality. &lt;br /&gt;
The most notable changes include:&lt;br /&gt;
&lt;br /&gt;
* A Welcome dialog, where the theme and the new document's size or file to open can be selected&lt;br /&gt;
* A Commands palette that opens when the &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; key is pressed and that allows to search and use many functions without having to use a keyboard shortcut or going through the menus&lt;br /&gt;
* It is now possible to copy, cut and paste parts of paths with the Node tool&lt;br /&gt;
* The dialog docking system has been rewritten, which resolves many issues with Inkscape's docked dialogs and allows you to dock dialogs on either side of the screen&lt;br /&gt;
* New Outline overlay mode that displays object outlines while also showing their real colors&lt;br /&gt;
* Preferences options are now easier to find by using the new search field&lt;br /&gt;
* It is no longer necessary to remember to click on 'Export' in the PNG Export dialog, as the exporting will already happen after the click on 'Save' in the file selection dialog.&lt;br /&gt;
&lt;br /&gt;
== Important changes ==&lt;br /&gt;
&lt;br /&gt;
=== For packagers ===&lt;br /&gt;
&lt;br /&gt;
* Inkscape no longer depends on GtkSpell and ASpell but on GSpell for spell checking.&lt;br /&gt;
* lib2geom has been moved [https://gitlab.com/inkscape/lib2geom into its own git submodule] (like the extensions), a new release is available.&lt;br /&gt;
&lt;br /&gt;
== Improvements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/XInclude XInclude] support (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/1150 !1150]) ''TODO: Move to a &amp;quot;technical&amp;quot; or &amp;quot;advanced&amp;quot; section?''&lt;br /&gt;
* Shell mode: a history of commands is now remembered and can be accessed with the up and down arrow keys. [Tab ... autocompletion?]&lt;br /&gt;
* Recognize layers in SVG files exported from CorelDraw (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/2046 !2046])&lt;br /&gt;
* @import statements in CSS sheets are now processed in the correct order, so their styles are no longer overwritten unintentionally.&lt;br /&gt;
&lt;br /&gt;
=== General user interface ===&lt;br /&gt;
&lt;br /&gt;
==== Commands palette ====&lt;br /&gt;
&lt;br /&gt;
This feature was added by Google Summer of Code Student Abhay Raj Singh in 2020. Learn more about the feature's development [https://gitlab.com/rathod-sahaab/gsoc-2020-inkscape on GitLab].&lt;br /&gt;
&lt;br /&gt;
=== Canvas ===&lt;br /&gt;
&lt;br /&gt;
==== 'Outline Overlay' display mode ====&lt;br /&gt;
In this mode, a toned down view of the drawing (not click-sensitive) is shown behind the (click-sensitive) object outlines.    &lt;br /&gt;
The opacity of the original drawing in this view mode can be set in Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; Outline overlay opacity.&lt;br /&gt;
[[File:Outline Overlay Preview.png|650px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
==== Handles ====&lt;br /&gt;
&lt;br /&gt;
The maximal handle size has been increased, so users with HiDPI displays will be able to enlarge them to a more comfortable size.&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
==== Calligraphy Tool ====&lt;br /&gt;
&lt;br /&gt;
* The tool now supports units for the width, with a much increased precision (up to three digits after the decimal separator, e.g. 0.005). The old, zoom-dependent width behavior is accessible with the unit '%'.&lt;br /&gt;
&lt;br /&gt;
==== Connector tool ====&lt;br /&gt;
&lt;br /&gt;
* Connection lines now update in real time while objects are moved &lt;br /&gt;
* New sub-point connections for clones and groups, allowing users to use Inkscape to connect diagrams together like in other drafting tools:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sub connector points.gif|New sub-connector points&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Node tool ====&lt;br /&gt;
&lt;br /&gt;
The node tool now allows to copy, cut and paste a selection of nodes. These nodes can be inserted into the original path, into a different path or they can be pasted as a  completely new path.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:Copy paste nodes.gif| Copy, cut and paste just parts of the paths&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Text Tool ====&lt;br /&gt;
&lt;br /&gt;
* Text-in-a-shape can now make use of justified text alignment.&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
==== Docking ====&lt;br /&gt;
&lt;br /&gt;
The docking feature has been refactored by Google Summer of Code Student Valentin Ionita in 2020. You can learn more about his work [https://gitlab.com/vanntile/inkscape-gsoc-2020 on GitLab].&lt;br /&gt;
&lt;br /&gt;
==== Preferences dialog ====&lt;br /&gt;
&lt;br /&gt;
* Added new search bar in the preferences dialogue that performs a recursive search over all the nested categories of settings&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+G&amp;lt;/code&amp;gt;''' for next result&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;Shit+F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+Shift+G&amp;lt;/code&amp;gt;''' for previous result&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Imported images: Import, there is a new option that allows you to disable relative paths to linked files (&amp;quot;Store absolute file path for linked images&amp;quot;, active by default).&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; there is a new option to &amp;lt;code&amp;gt;Redraw while editing&amp;lt;/code&amp;gt; that improves performance of redrawing with some faster CPUs  (&amp;quot;Responsive&amp;quot;, active by default)&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Interface &amp;gt; Keyboard, in the new '''Modifiers''' tab, you can customize keyboard shortcut modifiers for on-canvas mouse actions (for example holding Ctrl for scaling while keeping the object's aspect ratio can be changed to Shift) [Known issue: doesn't survive a restart]&lt;br /&gt;
* The Zoom correction factor in Edit &amp;gt; Preferences &amp;gt; Interface now works correctly for other units than mm and remembers values below 100%&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:A search bar in the preferences dialogue.gif|Search bar in the Preferences dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 'About Inkscape' dialog ====&lt;br /&gt;
&lt;br /&gt;
The Help &amp;gt; About Inkscape dialog has been rebuilt from scratch with a larger window (and image) and a tabbed interface.&lt;br /&gt;
* The user-contributed About Screen artwork is now displayed much larger, as it should be!&lt;br /&gt;
* Authors and translators are now featured on separate tabs.&lt;br /&gt;
* A new license tab offers a brief explanation of Inkscape licensing. &lt;br /&gt;
* All the tabs include calls to action or links to the official website for more information.&lt;br /&gt;
* The current version of Inkscape is displayed on a button. When clicked, the full version information is copied to the clipboard, so it can be used in bug reports, for example.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=600px&amp;gt;&lt;br /&gt;
File:New about dialog.gif|The reworked About Inkscape dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Fill and Stroke ====&lt;br /&gt;
&amp;lt;code&amp;gt;Object → Fill and stroke → Stroke Style&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hairline stroke style can now be set in the dialog. This type of stroke is always 1px wide, independent of the zoom level. This feature is useful for laser cutters and plotters.&lt;br /&gt;
** Supports exporting hairlines to file formats with native hairline support (pdf/ps).&lt;br /&gt;
** Exporting hairlines to output devices or native file formats requires [https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/21 a patch to Cairo]. If unavailable, a very thin line width will be used instead.&lt;br /&gt;
** In other SVG renderers, these will be handled via non-scaling stroke with a stroke width of 1px.&lt;br /&gt;
** Export to PNG and rendering on canvas will use a line width of 1px.&lt;br /&gt;
* Miter maximum increased to 100000 (https://gitlab.com/inkscape/inkscape/-/commit/69dc1688b1c1abb30437743a408644855616d3ad)&lt;br /&gt;
&lt;br /&gt;
[[File:InkscapeHairlines.gif]]&lt;br /&gt;
&lt;br /&gt;
==== Gradients ====&lt;br /&gt;
&lt;br /&gt;
* The legacy gradient editor (a dialog that could previously be enabled in the preferences for the gradient tool) has been removed.&lt;br /&gt;
&lt;br /&gt;
==== 'Welcome' dialog ====&lt;br /&gt;
&lt;br /&gt;
A new welcome and onboarding screen was added. You can set up the look of Inkscape on a first run and select from presets of document settings.&lt;br /&gt;
This dialog can be turned off.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Welcome dialog 1.png|The new Welcome dialog&lt;br /&gt;
File:Welcome dialog 2.png|Help the Inkscape project by contributing&lt;br /&gt;
File:Welcome dialog 3.png|Loading an existing file&lt;br /&gt;
File:Welcome dialog 4.png|Choosing a document size from the 'Screen' category&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Live path effects ===&lt;br /&gt;
&lt;br /&gt;
==== Automatic fill preservation for path effects ====&lt;br /&gt;
&lt;br /&gt;
LPEs which render strokes as fills (&amp;lt;code&amp;gt;Join Type&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Power Stroke&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;Taper Stroke&amp;lt;/code&amp;gt;) have been modified to automatically preserve the previous fill by creating a linked path when applied to an object.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sadchrys original drawing with fill.png|Original drawing&lt;br /&gt;
File:Sadchrys after applying LPE previous versions.png|Previous versions of Inkscape would preserve the stroke settings but remove the fill when applied.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 original path.png|Now, Inkscape will automatically preserve the fill by creating a linked path underneath.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 linked fill.png|LPE options for the linked fill&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Taper Stroke&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
The Taper stroke LPE has been updated to include taper direction options (allowing the taper to run to one side of the path, instead of to the middle) and smoothing options for both ends of the path, allowing more interesting paths to be made in the effect. In addition, using the keybind '''Shift+click''' on the on-canvas knots allows quickly alternating between the different possible taper shapes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Taper stroke direction control.png|Direction control options&lt;br /&gt;
File:Taper stroke new parameter list.png|New parameter list&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Fill between many&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
A new shortcut has been added under the Path menu to automatically create a linked fill path using the '''Fill between many''' path effect. The effect is created beneath the selected paths and automatically selected to faciliate moving the path into the correct z-order and styling it as intended. For greater efficiency, the shortcut can also be bound to a hotkey using the '''Preferences''' dialog.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Fill between many shortcut menuitem.png|Previously, using this effect required tediously copying every path to the clipboard and pasting it into the parameter list of a new path.&lt;br /&gt;
File:Fill between many result.png|Now, Inkscape can perform this task automatically, without any tedium.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Offset&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
Offset calculation works faster now. Open paths can now have an offset that is not automatically closed [Known issue: when they don't self-intersect].&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Slice&amp;quot; LPE (new) ====&lt;br /&gt;
&lt;br /&gt;
This new path effect allows you to split an object into two without destroying the original (or more by stacking multiple LPEs).&lt;br /&gt;
It works with groups, shapes, and paths. If you want to use it on Text, you need to use the 'Clone' LPE and apply the 'Slice' LPE on this clone. &lt;br /&gt;
It also allow change styles to any part because each part is a separated object only linked by original shape and maybe original transforms&lt;br /&gt;
&lt;br /&gt;
[[File:Slice LPE 1.gif|800px|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Export ===&lt;br /&gt;
&lt;br /&gt;
* The Export PNG Image dialog now exports the PNG as soon as the button Export as has been clicked and a file name was selected for the file. It's no longer necessary to explicitly click on Export after choosing a file name.&lt;br /&gt;
&lt;br /&gt;
=== Customization ===&lt;br /&gt;
&lt;br /&gt;
==== Cursors ====&lt;br /&gt;
&lt;br /&gt;
A set of SVG-based, themeable mouse cursors with HiDPI support were added. &lt;br /&gt;
These new cursors are coupled with the icon themes. The default set (hicolor theme) is stored in &amp;lt;code&amp;gt;~inkscape\share\inkscape\icons\hicolor\cursors&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
More information can be found on the [[SVG Cursors]] page. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Coursers.png|New cursor theme&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Shortcuts ====&lt;br /&gt;
&lt;br /&gt;
* Illustrator keyboard shortcut map has been updated to ... &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;Fill me in&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Themes ====&lt;br /&gt;
&lt;br /&gt;
* a more compact Minwaita theme has been added&lt;br /&gt;
* the win32 theme has been improved by adding some custom adjustments&lt;br /&gt;
&lt;br /&gt;
==== macOS-specific changes ====&lt;br /&gt;
&lt;br /&gt;
* New Inkscape icon ([https://gitlab.com/inkscape/inkscape/-/commit/ee58965003ca1960c20d7da276c3774166c18d42 commit ee589650])&lt;br /&gt;
* Visio files can be imported ([https://gitlab.com/inkscape/inkscape/-/issues/2094 issue #2094])&lt;br /&gt;
* No longer bundle Ghostscript, effectively removing out of the box support for EPS and PS ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2608 MR #2608]), information about workarounds can be found at https://gitlab.com/inkscape/inbox/-/issues/4321&lt;br /&gt;
* This is the last release to support OS X El Capitan 10.11. Future releases will require at least macOS High Sierra 10.13 as oldest supported operating system.&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
=== Command line ===&lt;br /&gt;
&lt;br /&gt;
* The options &amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;x y z&amp;lt;/span&amp;gt; have been added back in to preserve compatibility with legacy Inkscape command line scripts (and ImageMagick's SVG conversion)&lt;br /&gt;
&lt;br /&gt;
== Notable bugfixes ==&lt;br /&gt;
&lt;br /&gt;
=== Crash fixes ===&lt;br /&gt;
&lt;br /&gt;
Fix a crash &amp;amp;hellip;&lt;br /&gt;
* &amp;amp;hellip; when ... ([https://gitlab.com/inkscape/inkscape/-/issues/ #number])&lt;br /&gt;
&lt;br /&gt;
=== Other bug fixes ===&lt;br /&gt;
&lt;br /&gt;
* The color selector's color wheel looks better now on HiDPI screens [https://gitlab.com/inkscape/inkscape/-/merge_requests/2416 MR #2416]&lt;br /&gt;
* The color indicator field in the bottom left corner of the window now uses a constant width and has been cleaned up a bit [https://gitlab.com/inkscape/inkscape/-/merge_requests/2400 MR #2400] &lt;br /&gt;
* The size of the double-arrow handles in the color sliders has been increased [https://gitlab.com/inkscape/inkscape/-/merge_requests/2427 MR #2427]&lt;br /&gt;
* Fix of multiple regressions and bugs with '''Stroke to path''' [https://gitlab.com/inkscape/inkscape/-/merge_requests/2410 MR #2410]&lt;br /&gt;
* Fix of feColorMatrix filter primitive default rendering [https://gitlab.com/inkscape/inkscape/-/merge_requests/2424 MR #2424]&lt;br /&gt;
* You can now just click in the color wheel to select a color [https://gitlab.com/inkscape/inkscape/-/merge_requests/2428 MR #2428]&lt;br /&gt;
&lt;br /&gt;
=== Even more bug fixes ===&lt;br /&gt;
&lt;br /&gt;
There were even more issues fixed than those listed above, but these probably only affect a small portion of users, or are relevant for development and packaging only.&lt;br /&gt;
&lt;br /&gt;
For a complete list, visit [https://gitlab.com/inkscape/inkscape/-/milestones/2 our GitLab issue tracker] and see the [https://gitlab.com/inkscape/inkscape/-/commits/1.0.x commit history] (all changes since DATE until release date).&lt;br /&gt;
&lt;br /&gt;
== Breaking changes / Action required ==&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
Element selections API has been improved, the API in 10 of using &amp;lt;code&amp;gt;self.svg.selected&amp;lt;/code&amp;gt; is deprecated in favour of the new &amp;lt;code&amp;gt;self.svg.selection&amp;lt;/code&amp;gt; interface. The previous API will continue to work for the time being but should be updated to the new API. Selection is now a type of ElementList which provides filtering, ordering and other generalised functionality, if you need an element list for example to make a bounding box, this is the way to do it.&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Some missing options were added to the man page (command line help)&lt;br /&gt;
* Some missing keyboard shortcuts were added to the keyboard shortcut reference&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
* Fill in&lt;br /&gt;
* Many of Inkscape's old bug reports still need to be [https://alpha.inkscape.org/bug-migration/ tested and migrated to the new bug and feature request reporting page]. While some progress has already been made, we still need your help with that task.&lt;br /&gt;
* All (migrated and new) open issues for the project are listed on [https://gitlab.com/groups/inkscape/-/issues GitLab]. If you have some time on your hands and can help fixing them, [https://chat.inkscape.org/channel/team_devel join us in the development chat] and let us tackle them together.&lt;br /&gt;
&lt;br /&gt;
== Previous releases ==&lt;br /&gt;
&lt;br /&gt;
* [[Release notes/1.0]] ([[Release_notes/1.0.1 |1.0.1]], [[Release_notes/1.0.2 |1.0.2]])&lt;br /&gt;
* [[Release notes/0.92]] ([[Release_notes/0.92.1 |0.92.1]], [[Release_notes/0.92.2 |0.92.2]], [[Release_notes/0.92.3 |0.92.3]], [[Release_notes/0.92.4 |0.92.4]], [[Release_notes/0.92.5 |0.92.5]])&lt;br /&gt;
* [[Release notes/0.91]]&lt;br /&gt;
* [[Release notes/0.48]] ([[Release notes/0.48.1 |0.48.1]], [[Release notes/0.48.2 | 0.48.2]], [[Release notes/0.48.3 | 0.48.3]], [[Release notes/0.48.4 | 0.48.4]], [[Release notes/0.48.5 | 0.48.5]])&lt;br /&gt;
* [[Release notes/0.47]]&lt;br /&gt;
* [[Release notes/0.46]]&lt;br /&gt;
* [[Release notes/0.45]]&lt;br /&gt;
* [[Release notes/0.44]]&lt;br /&gt;
* [[Release notes/0.43]]&lt;br /&gt;
* [[Release notes/0.42]]&lt;br /&gt;
* [[Release notes/0.41]]&lt;br /&gt;
* [[Release notes/0.40]]&lt;br /&gt;
* [[Release notes/0.39]]&lt;br /&gt;
* [[Release notes/0.38]]&lt;br /&gt;
* [[Release notes/0.37]]&lt;br /&gt;
* [[Release notes/0.36]]&lt;br /&gt;
* [[Release notes/0.35]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
	<entry>
		<id>https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119198</id>
		<title>Release notes/1.1</title>
		<link rel="alternate" type="text/html" href="https://wiki.inkscape.org/wiki/index.php?title=Release_notes/1.1&amp;diff=119198"/>
		<updated>2021-01-12T22:17:41Z</updated>

		<summary type="html">&lt;p&gt;Dehesselle: /* macOS-specific changes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;languages /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box| '''These Release Notes are in Draft Status.'''&lt;br /&gt;
&lt;br /&gt;
Important Links:&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape/commits/master Commit History Main Program (starting from: 2b71d25 (Tue Dec 3 15:29:50 2019 +0100))]&lt;br /&gt;
* [https://gitlab.com/inkscape/extensions/-/commits/master Commit History Extensions (starting from: fe0fe398 (October 28, 2019))]&lt;br /&gt;
* [https://gitlab.com/inkscape/inkscape-docs/documentation/-/tree/master Commit History Documentation (starting from: cc619d14 (December 15 2019))]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box|Notes:&lt;br /&gt;
&lt;br /&gt;
For changes made even before the 1.0 release that aren't in 1.0, try to find out if the checked and not stroked ones here: https://gitlab.com/inkscape/inkscape/-/issues/1030 have really not been cherrypicked&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Box| Pending questions:&lt;br /&gt;
&lt;br /&gt;
* https://gitlab.com/inkscape/inkscape/-/commit/64a343e585463dab76e1e9d3698e52394fb637b9#note_481514761&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
== Release highlights ==&lt;br /&gt;
&lt;br /&gt;
'''Definitely not released yet.'''&lt;br /&gt;
&lt;br /&gt;
Inkscape 1.1 is the latest major Inkscape release that brings users many fresh new features and new functionality. &lt;br /&gt;
The most notable changes include:&lt;br /&gt;
&lt;br /&gt;
* A Welcome dialog, where the theme and the new document's size or file to open can be selected&lt;br /&gt;
* A Commands palette that opens when the &amp;lt;kbd&amp;gt;?&amp;lt;/kbd&amp;gt; key is pressed and that allows to search and use many functions without having to use a keyboard shortcut or going through the menus&lt;br /&gt;
* It is now possible to copy, cut and paste parts of paths with the Node tool&lt;br /&gt;
* The dialog docking system has been rewritten, which resolves many issues with Inkscape's docked dialogs&lt;br /&gt;
* New Outline overlay mode that displays object outlines while also showing their real colors&lt;br /&gt;
* Preferences options are now easier to find by using the new search field&lt;br /&gt;
* It is no longer necessary to remember to click on 'Export' in the PNG Export dialog, as the exporting will already happen after the click on 'Save' in the file selection dialog.&lt;br /&gt;
&lt;br /&gt;
== Important changes ==&lt;br /&gt;
&lt;br /&gt;
=== For packagers ===&lt;br /&gt;
&lt;br /&gt;
* Inkscape no longer depends on GtkSpell and ASpell but on GSpell for spell checking.&lt;br /&gt;
* lib2geom has been moved into its own git submodule (like the extensions).&lt;br /&gt;
&lt;br /&gt;
== Improvements ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://en.wikipedia.org/wiki/XInclude XInclude] support (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/1150 !1150]) ''TODO: Move to a &amp;quot;technical&amp;quot; or &amp;quot;advanced&amp;quot; section?''&lt;br /&gt;
* Shell mode: a history of commands is now remembered and can be accessed with the up and down arrow keys. [Tab ... autocompletion?]&lt;br /&gt;
* Recognize layers in SVG files exported from CorelDraw (see [https://gitlab.com/inkscape/inkscape/-/merge_requests/2046 !2046])&lt;br /&gt;
* @import statements in CSS sheets are now processed in the correct order, so their styles are no longer overwritten unintentionally.&lt;br /&gt;
&lt;br /&gt;
=== General user interface ===&lt;br /&gt;
&lt;br /&gt;
==== Commands palette ====&lt;br /&gt;
&lt;br /&gt;
=== Canvas ===&lt;br /&gt;
&lt;br /&gt;
==== 'Outline Overlay' display mode ====&lt;br /&gt;
In this mode, a toned down view of the drawing (not click-sensitive) is shown behind the (click-sensitive) object outlines.    &lt;br /&gt;
The opacity of the original drawing in this view mode can be set in Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; Outline overlay opacity.&lt;br /&gt;
[[File:Outline Overlay Preview.png|650px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
==== Handles ====&lt;br /&gt;
&lt;br /&gt;
The maximal handle size has been increased, so users with HiDPI displays will be able to enlarge them to a more comfortable size.&lt;br /&gt;
&lt;br /&gt;
=== Tools ===&lt;br /&gt;
&lt;br /&gt;
==== Calligraphy Tool ====&lt;br /&gt;
&lt;br /&gt;
* The tool now supports units for the width, with a much increased precision (up to three digits after the decimal separator, e.g. 0.005). The old, zoom-dependent width behavior is accessible with the unit '%'.&lt;br /&gt;
&lt;br /&gt;
==== Connector tool ====&lt;br /&gt;
&lt;br /&gt;
* Connection lines now update in real time while objects are moved &lt;br /&gt;
* New sub-point connections for clones and groups, allowing users to use Inkscape to connect diagrams together like in other drafting tools:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sub connector points.gif|New sub-connector points&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Node tool ====&lt;br /&gt;
&lt;br /&gt;
The node tool now allows to copy, cut and paste a selection of nodes. These nodes can be inserted into the original path, into a different path or they can be pasted as a  completely new path.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=500px&amp;gt;&lt;br /&gt;
File:Copy paste nodes.gif| Copy, cut and paste just parts of the paths&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Text Tool ====&lt;br /&gt;
&lt;br /&gt;
* Text-in-a-shape can now make use of justified text alignment.&lt;br /&gt;
&lt;br /&gt;
=== Dialogs ===&lt;br /&gt;
&lt;br /&gt;
==== Preferences dialog ====&lt;br /&gt;
&lt;br /&gt;
* Added new search bar in the preferences dialogue that performs a recursive search over all the nested categories of settings&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+G&amp;lt;/code&amp;gt;''' for next result&lt;br /&gt;
** press '''&amp;lt;code&amp;gt;Shit+F3&amp;lt;/code&amp;gt;''' or '''&amp;lt;code&amp;gt;Ctrl+Shift+G&amp;lt;/code&amp;gt;''' for previous result&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Imported images: Import, there is a new option that allows you to disable relative paths to linked files (&amp;quot;Store absolute file path for linked images&amp;quot;, active by default).&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Rendering &amp;gt; there is a new option to &amp;lt;code&amp;gt;Redraw while editing&amp;lt;/code&amp;gt; that improves performance of redrawing with some faster CPUs  (&amp;quot;Responsive&amp;quot;, active by default)&lt;br /&gt;
* In Edit &amp;gt; Preferences &amp;gt; Interface &amp;gt; Keyboard, in the new '''Modifiers''' tab, you can customize keyboard shortcut modifiers for on-canvas mouse actions (for example holding Ctrl for scaling while keeping the object's aspect ratio can be changed to Shift) [Known issue: doesn't survive a restart]&lt;br /&gt;
* The Zoom correction factor in Edit &amp;gt; Preferences &amp;gt; Interface now works correctly for other units than mm and remembers values below 100%&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=400px&amp;gt;&lt;br /&gt;
File:A search bar in the preferences dialogue.gif|Search bar in the Preferences dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== 'About Inkscape' dialog ====&lt;br /&gt;
&lt;br /&gt;
The Help &amp;gt; About Inkscape dialog has been rebuilt from scratch with a larger window (and image) and a tabbed interface.&lt;br /&gt;
* The user-contributed About Screen artwork is now displayed much larger, as it should be!&lt;br /&gt;
* Authors and translators are now featured on separate tabs.&lt;br /&gt;
* A new license tab offers a brief explanation of Inkscape licensing. &lt;br /&gt;
* All the tabs include calls to action or links to the official website for more information.&lt;br /&gt;
* The current version of Inkscape is displayed on a button. When clicked, the full version information is copied to the clipboard, so it can be used in bug reports, for example.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=600px&amp;gt;&lt;br /&gt;
File:New about dialog.gif|The reworked About Inkscape dialog&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Fill and Stroke ====&lt;br /&gt;
&amp;lt;code&amp;gt;Object → Fill and stroke → Stroke Style&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Hairline stroke style can now be set in the dialog. This type of stroke is always 1px wide, independent of the zoom level. This feature is useful for laser cutters and plotters.&lt;br /&gt;
** Supports exporting hairlines to file formats with native hairline support (pdf/ps).&lt;br /&gt;
** Exporting hairlines to output devices or native file formats requires [https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/21 a patch to Cairo]. If unavailable, a very thin line width will be used instead.&lt;br /&gt;
** In other SVG renderers, these will be handled via non-scaling stroke with a stroke width of 1px.&lt;br /&gt;
** Export to PNG and rendering on canvas will use a line width of 1px.&lt;br /&gt;
* Miter maximum increased to 100000 (https://gitlab.com/inkscape/inkscape/-/commit/69dc1688b1c1abb30437743a408644855616d3ad)&lt;br /&gt;
&lt;br /&gt;
[[File:InkscapeHairlines.gif]]&lt;br /&gt;
&lt;br /&gt;
==== Gradients ====&lt;br /&gt;
&lt;br /&gt;
* The legacy gradient editor (a dialog that could previously be enabled in the preferences for the gradient tool) has been removed.&lt;br /&gt;
&lt;br /&gt;
==== 'Welcome' dialog ====&lt;br /&gt;
&lt;br /&gt;
A new welcome and onboarding screen was added. You can set up the look of Inkscape on a first run and select from presets of document settings.&lt;br /&gt;
This dialog can be turned off.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Welcome dialog 1.png|The new Welcome dialog&lt;br /&gt;
File:Welcome dialog 2.png|Help the Inkscape project by contributing&lt;br /&gt;
File:Welcome dialog 3.png|Loading an existing file&lt;br /&gt;
File:Welcome dialog 4.png|Choosing a document size from the 'Screen' category&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Live path effects ===&lt;br /&gt;
&lt;br /&gt;
==== Automatic fill preservation for path effects ====&lt;br /&gt;
&lt;br /&gt;
LPEs which render strokes as fills (&amp;lt;code&amp;gt;Join Type&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;Power Stroke&amp;lt;/code&amp;gt;, and &amp;lt;code&amp;gt;Taper Stroke&amp;lt;/code&amp;gt;) have been modified to automatically preserve the previous fill by creating a linked path when applied to an object.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Sadchrys original drawing with fill.png|Original drawing&lt;br /&gt;
File:Sadchrys after applying LPE previous versions.png|Previous versions of Inkscape would preserve the stroke settings but remove the fill when applied.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 original path.png|Now, Inkscape will automatically preserve the fill by creating a linked path underneath.&lt;br /&gt;
File:Sadchrys after applying LPE 1.1 linked fill.png|LPE options for the linked fill&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Taper Stroke&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
The Taper stroke LPE has been updated to include taper direction options (allowing the taper to run to one side of the path, instead of to the middle) and smoothing options for both ends of the path, allowing more interesting paths to be made in the effect. In addition, using the keybind '''Shift+click''' on the on-canvas knots allows quickly alternating between the different possible taper shapes.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Taper stroke direction control.png|Direction control options&lt;br /&gt;
File:Taper stroke new parameter list.png|New parameter list&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Fill between many&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
A new shortcut has been added under the Path menu to automatically create a linked fill path using the '''Fill between many''' path effect. The effect is created beneath the selected paths and automatically selected to faciliate moving the path into the correct z-order and styling it as intended. For greater efficiency, the shortcut can also be bound to a hotkey using the '''Preferences''' dialog.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=250px&amp;gt;&lt;br /&gt;
File:Fill between many shortcut menuitem.png|Previously, using this effect required tediously copying every path to the clipboard and pasting it into the parameter list of a new path.&lt;br /&gt;
File:Fill between many result.png|Now, Inkscape can perform this task automatically, without any tedium.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Offset&amp;quot; LPE ====&lt;br /&gt;
&lt;br /&gt;
Offset calculation works faster now. Open paths can now have an offset that is not automatically closed [Known issue: when they don't self-intersect].&lt;br /&gt;
&lt;br /&gt;
==== &amp;quot;Slice&amp;quot; LPE (new) ====&lt;br /&gt;
&lt;br /&gt;
This new path effect allows you to split an object into two without destroying the original (or more by stacking multiple LPEs).&lt;br /&gt;
It works with groups, shapes, and paths. If you want to use it on Text, you need to use the 'Clone' LPE and apply the 'Slice' LPE on this clone. &lt;br /&gt;
It also allow change styles to any part because each part is a separated object only linked by original shape and maybe original transforms&lt;br /&gt;
&lt;br /&gt;
[[File:Slice LPE 1.gif|800px|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Export ===&lt;br /&gt;
&lt;br /&gt;
* The Export PNG Image dialog now exports the PNG as soon as the button Export as has been clicked and a file name was selected for the file. It's no longer necessary to explicitly click on Export after choosing a file name.&lt;br /&gt;
&lt;br /&gt;
=== Customization ===&lt;br /&gt;
&lt;br /&gt;
==== Cursors ====&lt;br /&gt;
&lt;br /&gt;
A set of SVG-based, themeable mouse cursors with HiDPI support were added. &lt;br /&gt;
These new cursors are coupled with the icon themes. The default set (hicolor theme) is stored in &amp;lt;code&amp;gt;~inkscape\share\inkscape\icons\hicolor\cursors&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
More information can be found on the [[SVG Cursors]] page. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; heights=350px&amp;gt;&lt;br /&gt;
File:Coursers.png|New cursor theme&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Shortcuts ====&lt;br /&gt;
&lt;br /&gt;
* Illustrator keyboard shortcut map has been updated to ... &amp;lt;span style=&amp;quot;color: red;&amp;quot;&amp;gt;Fill me in&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Themes ====&lt;br /&gt;
&lt;br /&gt;
* a more compact Minwaita theme has been added&lt;br /&gt;
* the win32 theme has been improved by adding some custom adjustments&lt;br /&gt;
&lt;br /&gt;
==== macOS-specific changes ====&lt;br /&gt;
&lt;br /&gt;
* New Inkscape icon ([https://gitlab.com/inkscape/inkscape/-/commit/ee58965003ca1960c20d7da276c3774166c18d42 commit ee589650])&lt;br /&gt;
* Visio files can be imported ([https://gitlab.com/inkscape/inkscape/-/issues/2094 issue #2094])&lt;br /&gt;
* No longer bundle Ghostscript, effectively removing out of the box support for EPS and PS ([https://gitlab.com/inkscape/inkscape/-/merge_requests/2608 MR #2608])&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
=== Command line ===&lt;br /&gt;
&lt;br /&gt;
* The options &amp;lt;span style=&amp;quot;color:red;&amp;quot;&amp;gt;x y z&amp;lt;/span&amp;gt; have been added back in to preserve compatibility with legacy Inkscape command line scripts (and ImageMagick's SVG conversion)&lt;br /&gt;
&lt;br /&gt;
== Notable bugfixes ==&lt;br /&gt;
&lt;br /&gt;
=== Crash fixes ===&lt;br /&gt;
&lt;br /&gt;
Fix a crash &amp;amp;hellip;&lt;br /&gt;
* &amp;amp;hellip; when ... ([https://gitlab.com/inkscape/inkscape/-/issues/ #number])&lt;br /&gt;
&lt;br /&gt;
=== Other bug fixes ===&lt;br /&gt;
&lt;br /&gt;
* The color selector's color wheel looks better now on HiDPI screens [https://gitlab.com/inkscape/inkscape/-/merge_requests/2416 MR #2416]&lt;br /&gt;
* The color indicator field in the bottom left corner of the window now uses a constant width and has been cleaned up a bit [https://gitlab.com/inkscape/inkscape/-/merge_requests/2400 MR #2400] &lt;br /&gt;
* The size of the double-arrow handles in the color sliders has been increased [https://gitlab.com/inkscape/inkscape/-/merge_requests/2427 MR #2427]&lt;br /&gt;
* Fix of multiple regressions and bugs with '''Stroke to path''' [https://gitlab.com/inkscape/inkscape/-/merge_requests/2410 MR #2410]&lt;br /&gt;
* Fix of feColorMatrix filter primitive default rendering [https://gitlab.com/inkscape/inkscape/-/merge_requests/2424 MR #2424]&lt;br /&gt;
* You can now just click in the color wheel to select a color [https://gitlab.com/inkscape/inkscape/-/merge_requests/2428 MR #2428]&lt;br /&gt;
&lt;br /&gt;
=== Even more bug fixes ===&lt;br /&gt;
&lt;br /&gt;
There were even more issues fixed than those listed above, but these probably only affect a small portion of users, or are relevant for development and packaging only.&lt;br /&gt;
&lt;br /&gt;
For a complete list, visit [https://gitlab.com/inkscape/inkscape/-/milestones/2 our GitLab issue tracker] and see the [https://gitlab.com/inkscape/inkscape/-/commits/1.0.x commit history] (all changes since DATE until release date).&lt;br /&gt;
&lt;br /&gt;
== Breaking changes / Action required ==&lt;br /&gt;
&lt;br /&gt;
=== Extensions ===&lt;br /&gt;
&lt;br /&gt;
Element selections API has been improved, the API in 10 of using &amp;lt;code&amp;gt;self.svg.selected&amp;lt;/code&amp;gt; is deprecated in favour of the new &amp;lt;code&amp;gt;self.svg.selection&amp;lt;/code&amp;gt; interface. The previous API will continue to work for the time being but should be updated to the new API. Selection is now a type of ElementList which provides filtering, ordering and other generalised functionality, if you need an element list for example to make a bounding box, this is the way to do it.&lt;br /&gt;
&lt;br /&gt;
== Translations ==&lt;br /&gt;
&lt;br /&gt;
The following UI translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
The following documentation translations received updates:&lt;br /&gt;
&lt;br /&gt;
* Language&lt;br /&gt;
&lt;br /&gt;
=== Contributing to interface translations ===&lt;br /&gt;
&lt;br /&gt;
Want to help with translations? [https://inkscape.org/contribute/translations/ Learn how to help!]&lt;br /&gt;
&lt;br /&gt;
== Documentation ==&lt;br /&gt;
&lt;br /&gt;
* Some missing options were added to the man page (command line help)&lt;br /&gt;
* Some missing keyboard shortcuts were added to the keyboard shortcut reference&lt;br /&gt;
&lt;br /&gt;
=== Contributing to documentation and documentation translation ===&lt;br /&gt;
Contributions to the documentation translations, as well as improvements to its contents, are welcome at [https://gitlab.com/inkscape/inkscape-docs/documentation the inkscape-docs repository].&lt;br /&gt;
&lt;br /&gt;
== Known issues ==&lt;br /&gt;
&lt;br /&gt;
* Fill in&lt;br /&gt;
* Many of Inkscape's old bug reports still need to be [https://alpha.inkscape.org/bug-migration/ tested and migrated to the new bug and feature request reporting page]. While some progress has already been made, we still need your help with that task.&lt;br /&gt;
* All (migrated and new) open issues for the project are listed on [https://gitlab.com/groups/inkscape/-/issues GitLab]. If you have some time on your hands and can help fixing them, [https://chat.inkscape.org/channel/team_devel join us in the development chat] and let us tackle them together.&lt;br /&gt;
&lt;br /&gt;
== Previous releases ==&lt;br /&gt;
&lt;br /&gt;
* [[Release notes/1.0]] ([[Release_notes/1.0.1 |1.0.1]], [[Release_notes/1.0.2 |1.0.2]])&lt;br /&gt;
* [[Release notes/0.92]] ([[Release_notes/0.92.1 |0.92.1]], [[Release_notes/0.92.2 |0.92.2]], [[Release_notes/0.92.3 |0.92.3]], [[Release_notes/0.92.4 |0.92.4]], [[Release_notes/0.92.5 |0.92.5]])&lt;br /&gt;
* [[Release notes/0.91]]&lt;br /&gt;
* [[Release notes/0.48]] ([[Release notes/0.48.1 |0.48.1]], [[Release notes/0.48.2 | 0.48.2]], [[Release notes/0.48.3 | 0.48.3]], [[Release notes/0.48.4 | 0.48.4]], [[Release notes/0.48.5 | 0.48.5]])&lt;br /&gt;
* [[Release notes/0.47]]&lt;br /&gt;
* [[Release notes/0.46]]&lt;br /&gt;
* [[Release notes/0.45]]&lt;br /&gt;
* [[Release notes/0.44]]&lt;br /&gt;
* [[Release notes/0.43]]&lt;br /&gt;
* [[Release notes/0.42]]&lt;br /&gt;
* [[Release notes/0.41]]&lt;br /&gt;
* [[Release notes/0.40]]&lt;br /&gt;
* [[Release notes/0.39]]&lt;br /&gt;
* [[Release notes/0.38]]&lt;br /&gt;
* [[Release notes/0.37]]&lt;br /&gt;
* [[Release notes/0.36]]&lt;br /&gt;
* [[Release notes/0.35]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;/div&gt;</summary>
		<author><name>Dehesselle</name></author>
	</entry>
</feed>