This repository has been archived on 2025-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
BreCal/src/BreCalClient
2023-10-26 16:29:17 +02:00
..
Properties Version bump to 0.9.3.0 2023-10-22 13:13:42 +02:00
Resources Allow changes of users phone and email contact info by the user 2023-10-26 16:29:17 +02:00
.editorconfig Edit and save a shipcall 2023-08-21 15:34:09 +02:00
AboutDialog.xaml Allow changes of users phone and email contact info by the user 2023-10-26 16:29:17 +02:00
AboutDialog.xaml.cs Allow changes of users phone and email contact info by the user 2023-10-26 16:29:17 +02:00
App.config WIP 2023-10-04 07:34:17 +02:00
App.xaml Client very WIP und Fehlerkorrektur API 2023-08-08 07:43:47 +02:00
App.xaml.cs added times controlling but no functions 2023-08-21 19:11:23 +02:00
AssemblyInfo.cs added sample client with sample autogenerated client code 2023-07-11 17:17:27 +02:00
BoolToIndexConverter.cs Edit and save a shipcall 2023-08-21 15:34:09 +02:00
BreCalClient.csproj Version bump to 0.9.3.0 2023-10-22 13:13:42 +02:00
BreCalClient.licenseheader Shipcall list now working with traffic light on bound property, data from server 2023-07-27 12:55:39 +02:00
BreCalClient.sln Select participants on edit shipcall control 2023-08-16 12:16:08 +02:00
BreCalLists.cs Edit dialogs agent WIP 2023-10-04 07:34:16 +02:00
containership.ico Many little details in the client, added password change dialog 2023-08-18 09:48:37 +02:00
EditShipcallControl.xaml 8. Changed order of arr/dep. combobox in bsmd control dep -> arr 2023-10-26 09:45:37 +02:00
EditShipcallControl.xaml.cs Bugfix: avoid clearing of all assigned participants (they are *not* set in this dialog!(any more)) 2023-10-16 11:07:18 +02:00
EditTimesAgencyIncomingControl.xaml 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesAgencyIncomingControl.xaml.cs 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesAgencyOutgoingControl.xaml 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesAgencyOutgoingControl.xaml.cs 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesAgencyShiftingControl.xaml 9+10, undo 7 : Berth display when shifting 2023-10-26 14:58:24 +02:00
EditTimesAgencyShiftingControl.xaml.cs 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesControl.xaml 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesControl.xaml.cs 2+4.: Tab order fixed 2023-10-26 09:23:16 +02:00
EditTimesTerminalControl.xaml 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
EditTimesTerminalControl.xaml.cs 1. Controls only editable if current user is the owner of the times data record 2023-10-26 08:19:27 +02:00
Extensions.cs set enabled flags in times and terminal edit controls 2023-10-16 11:07:18 +02:00
IEditTimesControl.cs set enabled flags in times and terminal edit controls 2023-10-16 11:07:18 +02:00
MainWindow.xaml corrected header centering 2023-10-18 19:02:55 +02:00
MainWindow.xaml.cs Allow changes of users phone and email contact info by the user 2023-10-26 16:29:17 +02:00
ReadMe.md Fixed test client setup as a separate setup. 2023-09-13 07:09:52 +02:00
SearchFilterControl.xaml Added filtering and sorting to shipcalls in the list. 2023-09-12 16:48:28 +02:00
SearchFilterControl.xaml.cs Save and restore of filter criteria (user-context) 2023-09-15 17:05:07 +02:00
SearchFilterModel.cs Save and restore of filter criteria (user-context) 2023-09-15 17:05:07 +02:00
ShipcallControl.xaml 9+10, undo 7 : Berth display when shifting 2023-10-26 14:58:24 +02:00
ShipcallControl.xaml.cs 9+10, undo 7 : Berth display when shifting 2023-10-26 14:58:24 +02:00
ShipcallControlModel.cs Fixes for tests regarding the evaluation functions 2023-10-22 13:08:15 +02:00

Bremen calling WPF client

Introduction

API / code generation

The Rest API client is generated from the OpenAPI specification BreCalApi.yaml into the C# file BreCalApi.cs. In order to do so an extension for Visual Studio needs to be installed: REST API Client Code Generator for VS 2022.

https://marketplace.visualstudio.com/items?itemName=ChristianResmaHelle.ApiClientCodeGenerator2022

This extension has multiple generators, for this project OpenApiCodeGenerator is used (must be set on the yaml file in the project settings). Internally this uses Java, currently > 55 which translates into Java JDK 17 LTS. If code generation is not working please have a look in the output pane and select appropriate output source.

Installation

The client is deployed via ClickOnce.

To deploy the test client, leave everything as it is in develop branch and publish using the profile ClickOnceTestProfile.pubxml. To deploy the productive version, use the profile ClickOnceProfile.pubxml. You will also need to change the AssemblyName in BreCalClient.csproj back to BreCalClient.

<AssemblyName>BreCalClient</AssemblyName>

Resources are embedded in the assembly. Therefore wherever Resources are referenced via assembly name this name has to be adjusted as well. For example:

this.imageShipcallType.Source = new BitmapImage(new Uri("pack://application:,,,/BreCalClient;component/Resources/arrow_right_green.png"));

It is debatable if the single contained file deployment makes sense at this point. Installation file size is at about 150MB which takes a long time to upload however it should run on any current windows installation. Theoretically it should also work on Linux.

Signing

Currently neither assemblies nor the installation is signed. This probably only makes sense with a paid public code signing certificate.