Actually fixed removed OS directory

This commit is contained in:
Robinson 2022-05-11 13:50:00 +02:00
parent 3647605ac8
commit fe9c1a4a14
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 3 additions and 27 deletions

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project
const val description = "Utilities for use within Java projects"
const val group = "com.dorkbox"
const val version = "1.23"
const val version = "1.24"
// set as project.ext
const val name = "Utilities"

View File

@ -37,7 +37,7 @@ class GtkLoader {
*/
public static
String getVersion() {
return "1.23";
return "1.24";
}
// objdump -T /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 | grep gtk

View File

@ -42,7 +42,7 @@ class Desktop {
*/
public static
String getVersion() {
return "1.23";
return "1.24";
}
static {

View File

@ -1,24 +0,0 @@
/*
* Copyright 2021 dorkbox, llc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package dorkbox.os;
/**
* Required for intellij to not complain regarding `module-info` for a multi-release jar.
* This file is completely ignored by the gradle build process
*/
public
class EmptyClass {}