Warning, /utilities/kongress/README.md is written in an unsupported language. File is not indexed.

0001 <!--
0002     SPDX-FileCopyrightText: 2020 Dimitris Kardarakos <dimkard@posteo.net>
0003     SPDX-License-Identifier: CC-BY-SA-4.0
0004 -->
0005 # Kongress
0006 
0007 Companion application for conference attendees
0008 
0009 ## Features
0010 
0011 Kongress provides practical information about conferences. It supports conferences that offer their schedule in [iCalendar](https://tools.ietf.org/html/rfc5545) format. In Kongress, the data of the talks are shown in various ways, e.g. in daily views, by talk category, etc. The users can also create a list of favorite conference talks/events as well as they can navigate to the web page of each talk. A map of the conference venue, location information and link to OpenStreetMap can also be added.
0012 
0013 ![](screenshots/combined.png)
0014 
0015 A set of conferences have been preloaded and are available after installation. Users may add extra conferences, providing a link to their iCalendar schedule (under development).
0016 
0017 ## Setup
0018 
0019 ### Build
0020 
0021 ```
0022 git clone https://invent.kde.org/dkardarakos/kongress.git
0023 cd kongress
0024 mkdir build
0025 cd build
0026 cmake ..
0027 make -j$(nproc)
0028 ```
0029 
0030 ### Run
0031 
0032 ```
0033 bin/kongress
0034 ```
0035 
0036 *To simulate Plasma Mobile user experience:*
0037 
0038 ```
0039 QT_QUICK_CONTROLS_MOBILE=true QT_QUICK_CONTROLS_STYLE=Plasma bin/kongress
0040 ```
0041 
0042 ### Install
0043 
0044 ```
0045 sudo make install
0046 ```