WineHQ

WineConf2017: Difference between revisions

Line 152: Line 152:
Demos:
Demos:


- notepad++ works nicely and quite quick.
* notepad++ works nicely and quite quick.
- A 3D example that reaches 122 FPS, very fluent. (most of the 3d stuff happens on the arm side)
* A 3D example that reaches 122 FPS, very fluent. (most of the 3d stuff happens on the arm side)
    
    



Revision as of 18:02, 30 October 2017

Date

October 28th and 29th, 2017

Pictures

Location

Hotel Sofitel Wroclaw Old Town

ul. Sw. Mikolaja 67

50-127 Wrocław

Poland

Phone: +48 713588300

http://www.sofitel.com/gb/hotel-5345-sofitel-wroclaw-old-town/index.shtml

Schedule

Friday

  • 17:00-22:00 - Informal gathering in the hotel bar. Dinner is on your own, although there are usually groups that leave for dinner during this time.

Saturday

  • 09:00-09:30 - Keynote by Alexandre Julliard
  • 09:30-12:00 - Presentations and discussions (see below)
  • 12:00-13:00 - Lunch
  • 13:00-17:00 - Presentations and discussions (see below)
  • 18:30 - Dinner at Jasna restaurant

Sunday:

  • 09:30-12:00 - Presentations and discussions (see below)
  • 12:00-13:00 - Lunch
  • 13:00-17:00 - Presentations and discussions (see below)

Agenda

The agenda is usually pretty loosely defined and is often refined throughout the conference, but the topics will be largely constrained to those relating to Wine development. If there is a topic you would like to discuss, send an email to the wineconf mailing list. We usually also set aside time for ad-hoc working groups; we'll keep scratch pads handy for such conversations.


There is one traditional item you do not want to miss though:

  • Saturday, 9:00 - Keynote presentation by Alexandre

Other talk/discussion proposals:

  • WineTest Review
  • CodeWeavers update
  • Swag/Branding discussion
  • Project Hangover: x86 emulation on ARM with Wine+Qemu (André, Stefan)
  • Getting patches from Staging into mainline Wine
  • Should we merge the wine-devel and wine-patches mailing lists?

(more TBA, feel free to add more items to the list)

Hotel reservation

We have a pool of rooms at fixed price 325 PLN/night (around 77 EUR/night) reserved for WineConf attendees. To make a reservation, please fill the form and e-mail it to the hotel (you can change the arrival/departure dates).

Please also fill RSVP form (even if you're not staying in the hotel), so that we know you're coming.

Getting there

By Plane:

The nearest airport is Wrocław Airport (WRO).

From the airport, you have two choices to get to the hotel. A taxi cab will cost you about 50 PLN (~15 EUR) for the trip (see air port page for details). The 106 bus line will get you to the hotel in about 45 minutes, a ticket ("normal" one way for 3 PLN) can be bought at the bus stop with credit card. Exit the bus at Orląt Lwowskich bus stop and take ~10 minutes walk to the hotel. You can also use Uber.

By Train:

The train station nearest to the hotel is Wrocław Główny railway station. It's around 25 minutes away by foot from the hotel. There's lots of options of getting from there by tram. The easiest is to take tram no 15 and go to Rynek stop.

By Car:

The city centre is quite crowded. It may be hard to find a parking place there (it's free to park near town square on weekends and after 6 PM). Parking at the hotel should be possible but is expensive.If you wish to avoid parking fees let us know, it should be possible to find a place free to park nearby.


It's easiest to buy the tickets for public transportation in bus/tram. There's a machine that sells them in every vehicle. It's only possible to pay by credit/debit card. If you prefer to pay by cash you should buy the ticket in e.g. newspaper shop. The best page to find public transportation routes is jakdojade.pl (Google Maps also may be used, but it's known to miss some connections).

It's also possible to pay by card in most taxis (but you have to confirm it with the driver).

Tourist

If you want to do some sightseeing in Wroclaw, area around Sofitel Hotel is a good place to start. It's just next to Market Square (called Rynek), which is the main tourist attraction in Wrocław. All the area around Rynek is nice for walking.

Ostrów Tumski is the oldest part of the town. It's in walking distance from the hotel.

There are multiple museums in the city. Panorama Racławicka, a 15x114m large paining, is also very popular for tourists (tickets are often sold out, so it's safer to buy them online in advance).

If you look closely you can see some of many Wroclaw's gnomes that are places next to many monuments and other tourist attractions.

Next to the Sofitel hotel, there is St. Elizabeth's Church, which has a high tower with very nice view of the city (warning: 200 stairs climbing).

Minutes

Saturday

Keynote by Alexandre

Nothing surprising. Lines of code growing, slightly lower than previously. First 10 years for 1 million lines, now approaching 4 million LoC.

Wine 3.0 end of this year (we do yearly time based releases).

Main Features:

  • Direct3d 11
  • Direct3d commandstream
  • Android driver (not fully upstream)
  • message mode pipes
  • default version bumped from windows xp to windows 7 (after 8 years being XP;)

We currently have 160 open regressions (182 regressions 1 year ago)

Google of Summer Code 2017 was not so good this year. 1 project, failed.

Outreach 2017 was succesfull, longstanding Wine Community admin Roseanne worked on the AppDB (PHP).

https://www.youtube.com/watch?v=AokFgDSLMWU recording of the keynote

Codeweavers update

Codeweavers doing quite well, compared to 15 months ago.

Crossover commercial wine sells best on MacOS, but not so much on Linux (where there are "free" wines). They saw a large increase of their OEM Business, where they help people port apps to wine. CW hired quite some people in the last year. The Opensource Wine developer market is pretty much hired up by Codeweavers now, no free developers left.


"Hangover" project by Stefan Doesinger and Andre Hentschel

Goal is to run x86_64 Windows binaries on Arm64, with minimal overhead.

Their method is writing a QEMU windows-user-land port, and hooking on the Windows API level, mapping the calls and forwarding them to arm64 Wine.

                       win64 x86 app                        win64 x86 app
                       QEMU API mapper for kernel32 etc     PE x86 dll that just calls other native dlls
                       arm64 kernel32                       QEMU API mapper of kernel32 etc.
                                                     

The mapper code is made out of 1000s autogenerated API thunks, per API one thunk function on the guest side and one proxy function on the host side. So uses lots of autogenerated code, some hand adjusted.

It helps being 64 <-> 64bit, so pointers do not need to converted. Exception handling is troublesome as usual.

Demoed on NVIDIA Shield.

Demos:

  • notepad++ works nicely and quite quick.
  • A 3D example that reaches 122 FPS, very fluent. (most of the 3d stuff happens on the arm side)


Also, a 32bit x86 <-> 64bit arm was being demoed. This needs more mapping, especially the 32 bit <-> 64bit pointer need to be mapped. But "Notepad++" partially works already, is also kind of fast.

Wine Test session

(We usually try to get the failing tests down at the Wineconf. See http://test.winehq.org/ if you are curious how our tests look.)

SWAG / Community involvement

Aric told us about the Sticker project, handed out several blocks.

Wine T-Shirt project

Ask Aric about stickers.

(Who was it who should be responsible for Europe?)

How to get more people to contribute ... Lots of back and forth, not many ideas.


Marcus got a stack of Wine Project Stickers for FOSDEM et.al..


MacOS pending removal of 32bit libraries

Apple will remove 32bit libraries in 12-24 months, which makes 32bit wine more trickier.

Solutions: 32 <-> 64bit thunking, might need quite some work. But see "Hangover".

Sunday

d3d12 update

Henri has worked on a D3D12 library based on Vulkan, which is standalone. Demoed one of the HDR examples.

We discussed largely where this library should be hosted.

At some point will be integrated to Wine.


Wine Staging

Wine Staging patchset is growing, more stuff should also go to regular wine. Sadly the maintainers of wine staging were not there.

We need to focus more on getting patches into mainline. Subsystem maintainers should perhaps take more looks to staging. Vincent Povirk does regulary.

Merging Wine-Patches and Wine-Devel mailinglists

To ease entry for new submitters and better discussions there was the proposal to merge the two lists. It looks like we agreed on doing that.

Needs some adjustments to the patch tracking engines, which Alexandre wants to do.

AppDB report by Roseanne

Largely a report of improvements over the Outreach work by Roseanne, and demos e.g. when to assign high ratings.

The appdb admin frontend was demoed.


Attracting more users to wineconf

Discussions ... some back and forth ...

Agressively invite more people close to Wine (Staging, PlayOnLinux, AppDB maintainers)


Wayland demo

Alexandre has some wayland things working on his Laptop, but its alpha and not production ready.

He showed clock.exe and one other app. No keyboard yet, a bit mouse, window management is not working.


Git commitlogs

Discussion of larger commits logs, and also including bug references.

Concerns are mostly around "how large?", "style?" and "more rejects based on bad commit messages?".

Buglinks should be included (standard format e.g. bug 424242). (Similar also CIDs, appdb links or similar I think).

It seems we want to try it.


Reviewer process

Alexandre does not want to frustrate maintainers by rejection submissions that were approved by other reviewers. So general question if this works good.

Review of process of reviewers besides Alexandre? Seems while there is no big enthusiasm, it seems to work ok-ish right now. Some more reviewers were found/will be added.


GSOC/GCodeIn/Outreach

Google summer of code: Need to code Google code in: can be other contributions (in small pieces) FSF Outreach: Can be mixed

AndreH admins the Google parts these days. Outreach is paid/sponsored by Codeweavers, mentor list in the wiki. The current plan is to do it once a year. (Outreach runs 4 times a year.)

We did a live brainstorming and added topics to the Wiki pages, which need to be refined further.

https://wiki.winehq.org/Summer_Of_Code https://wiki.winehq.org/Code-In


Next year wine conference

Next years wine conference will likely be in Den Haag/The Netherlands, hosted by Henri Verbeet.


Wine Test review

Another wine test review session.

Wrap up

This page was last edited on 30 October 2017, at 18:02.