Skip to content
This repository was archived by the owner on Jun 19, 2024. It is now read-only.

Commit fef8029

Browse files
authored
Merge pull request #44 from LabyMod/develop
Release 0.3.6
2 parents c9862f1 + 91b91b8 commit fef8029

File tree

171 files changed

+1038
-853
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+1038
-853
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GNU LESSER GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

4-
Copyright (C) 2020 LabyMedia GmbH. <https://labymedia.com/>
4+
Copyright (C) 2020 - 2021 LabyMedia GmbH. <https://labymedia.com/>
55
Everyone is permitted to copy and distribute verbatim copies
66
of this license document, but changing it is not allowed.
77

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ the Library in order to provide the natives!**
7272

7373
See [Examples](https://github.com/LabyMod/ultralight-java/tree/develop/example) for more info.
7474

75+
# Sponsors
76+
[<img src="https://www.yourkit.com/images/yklogo.png"/>](https://www.yourkit.com/)
77+
78+
YourKit supports open source projects with innovative and intelligent tools for monitoring and profiling Java and .NET applications.
79+
YourKit is the creator of [YourKit Java Profiler](https://www.yourkit.com/java/profiler/), [YourKit .NET Profiler](https://www.yourkit.com/.net/profiler/), and [YourKit YouMonitor](https://www.yourkit.com/youmonitor/).
80+
7581
# Licensing
7682
For Ultralight Java [LGPLv3](https://www.gnu.org/licenses/lgpl-3.0.en.html) is being used, however, Ultralight itself is
7783
licensed under a custom proprietary license. See

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.5
1+
0.3.6

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ subprojects {
9898

9999
ext {
100100
author = "LabyMedia"
101-
year = Calendar.getInstance(TimeZone.getTimeZone("UTC")).get(Calendar.YEAR)
101+
year = "2020 - " + Calendar.getInstance(TimeZone.getTimeZone("UTC")).get(Calendar.YEAR)
102102
}
103103
}
104104

example/lwjgl3-opengl/src/main/java/com/labymedia/ultralight/lwjgl3/opengl/ExampleApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Ultralight Java - Java wrapper for the Ultralight web engine
3-
* Copyright (C) 2020 LabyMedia and contributors
3+
* Copyright (C) 2020 - 2021 LabyMedia and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

example/lwjgl3-opengl/src/main/java/com/labymedia/ultralight/lwjgl3/opengl/ExampleMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Ultralight Java - Java wrapper for the Ultralight web engine
3-
* Copyright (C) 2020 LabyMedia and contributors
3+
* Copyright (C) 2020 - 2021 LabyMedia and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

example/lwjgl3-opengl/src/main/java/com/labymedia/ultralight/lwjgl3/opengl/drawing/OpenGLDrawer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Ultralight Java - Java wrapper for the Ultralight web engine
3-
* Copyright (C) 2020 LabyMedia and contributors
3+
* Copyright (C) 2020 - 2021 LabyMedia and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

example/lwjgl3-opengl/src/main/java/com/labymedia/ultralight/lwjgl3/opengl/input/ClipboardAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Ultralight Java - Java wrapper for the Ultralight web engine
3-
* Copyright (C) 2020 LabyMedia and contributors
3+
* Copyright (C) 2020 - 2021 LabyMedia and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

example/lwjgl3-opengl/src/main/java/com/labymedia/ultralight/lwjgl3/opengl/input/CursorAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Ultralight Java - Java wrapper for the Ultralight web engine
3-
* Copyright (C) 2020 LabyMedia and contributors
3+
* Copyright (C) 2020 - 2021 LabyMedia and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

example/lwjgl3-opengl/src/main/java/com/labymedia/ultralight/lwjgl3/opengl/input/InputAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Ultralight Java - Java wrapper for the Ultralight web engine
3-
* Copyright (C) 2020 LabyMedia and contributors
3+
* Copyright (C) 2020 - 2021 LabyMedia and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

0 commit comments

Comments
 (0)