Changed name to Progressia in README and file headers

This commit is contained in:
OLEGSHA 2020-08-10 14:07:53 +04:00
parent 4cf0324f1a
commit aeed34d105
135 changed files with 140 additions and 140 deletions

View File

@ -1,4 +1,4 @@
# Optica # Progressia
A free, open source sandbox survival game currently in early development. A free, open source sandbox survival game currently in early development.
## Contributing ## Contributing
@ -7,12 +7,12 @@ For now, contact @Javapony in Telegram for details. Contributing is completely a
## Building ## Building
1. `$ git clone https://github.com/OLEGSHA/Optica.git` 1. `$ git clone https://github.com/OLEGSHA/Progressia.git`
2. `$ gradlew build` 2. `$ gradlew build`
### Additional setup for Eclipse IDE ### Additional setup for Eclipse IDE
If you have Buildship plugin installed, use File - Import - Gradle - Existing Gradle Project. Main class is `ru.windcorp.optica.client.OpticaClientMain`. If you have Buildship plugin installed, use File - Import - Gradle - Existing Gradle Project. Main class is `ru.windcorp.progressia.client.ProgressiaClientMain`.
Alternatively do the following: Alternatively do the following:
@ -31,8 +31,8 @@ plugins {
1. Open the project with File - Open Project 1. Open the project with File - Open Project
2. Press button 'Add configuration...' and open 'Application' in templates list 2. Press button 'Add configuration...' and open 'Application' in templates list
3. Add 'ru.windcorp.optica.client.OpticaClientMain' in Main class text field 3. Add 'ru.windcorp.progressia.client.ProgressiaClientMain' in Main class text field
4. Choose 'Optica.main' in 'Use classpath of module' drop-down list 4. Choose 'Progressia.main' in 'Use classpath of module' drop-down list
5. Click 'Create configuration' and press Apply 5. Click 'Create configuration' and press Apply
## Libraries ## Libraries

View File

@ -1 +1 @@
rootProject.name = 'Optica' rootProject.name = 'Progressia'

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
@ -56,7 +56,7 @@ class LWJGLInitializer {
glfwWindowHint(GLFW_FOCUSED, GLFW_TRUE); glfwWindowHint(GLFW_FOCUSED, GLFW_TRUE);
glfwWindowHint(GLFW_MAXIMIZED, GLFW_TRUE); glfwWindowHint(GLFW_MAXIMIZED, GLFW_TRUE);
long handle = glfwCreateWindow(900, 900, "OpticaTest", NULL, NULL); long handle = glfwCreateWindow(900, 900, "ProgressiaTest", NULL, NULL);
// TODO Check that handle != NULL // TODO Check that handle != NULL

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

View File

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Optica * Progressia
* Copyright (C) 2020 Wind Corporation * Copyright (C) 2020 Wind Corporation
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify

Some files were not shown because too many files have changed in this diff Show More