diff options
author | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-06-12 07:36:15 -0500 |
---|---|---|
committer | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-06-12 07:36:15 -0500 |
commit | 41b0eda07403db9b09184b79060bcc323dcdc753 (patch) | |
tree | f4b35e7dbf6ddd0b89bc46e2e34f2b84bdf161d7 | |
parent | 716af8ab6c55961ce4171199b773005d22553571 (diff) |
Release 0.3.0v0.3.0
-rw-r--r-- | CHANGELOG.org | 6 | ||||
-rw-r--r-- | README.org | 8 | ||||
-rw-r--r-- | src/main/java/org/unitConverter/package-info.java | 4 | ||||
-rw-r--r-- | src/main/resources/about.txt | 4 |
4 files changed, 12 insertions, 10 deletions
diff --git a/CHANGELOG.org b/CHANGELOG.org index 6c78f27..883861d 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -1,13 +1,15 @@ * Changelog All notable changes in this project will be shown in this file. -** Unreleased +** v0.3.0 - [2021-06-12 Sat] *** Added - Added a simple unit conversion method to the Unit interface - Added a static factory to create nonlinear units to the Unit interface + - Added a settings menu with many settings to change the system's behaviour. Allows you to control the precision settings, prefix repetition, and more. *** Changed + - Changed the unit system again! - You can now use tabs or spaces to separate unit names and their definitions in unit files. - - Unit Converter no longer uses Maven. + - Unit Converter uses Gradle instead of Maven. ** v0.2.0 - [2019-04-14] *** Added - A selection-based unit converter which allows you to select two units, input a value, and convert. @@ -1,10 +1,10 @@ -* Unit Converter v0.2.0 +* Unit Converter v0.3.0 (this project uses Semantic Versioning) ** What is it? This is a unit converter, which allows you to convert between different units, and includes a GUI which can read unit data from a file (using some unit math) and convert between units that you type in, and has a unit and prefix viewer to check the units that have been loaded in. ** Features - Convert between units and expressions of units - - linear or base unit can use unit prefixes (including non-metric units!) + - linear or base units can use unit prefixes (including non-metric units!) - and prefixes are defined in an editable data file, in a simple and intuitive format. - Viewer and Prefix Viewer which allow you to search through all of the available units and prefixes and learn details about them. - All of SI included in default text file @@ -65,11 +65,11 @@ Nonlinear units cannot: - use prefixes - be defined by unit files -To define a nonlinear unit, make an anonymous inner type (or any other subclass) of AbstractUnit, and define the conversion methods. +To define a nonlinear unit, make an anonymous inner type (or any other subclass) of Unit, and define the conversion methods. You can do this easily using Unit's static methods. ** Unit and Prefix Viewers The unit and prefix viewers can be used to see the available units (without prefixes) and prefixes. Upon opening them, you will see a list of units or prefixes on your left. Using the text box above, the list can be filtered. When a unit is clicked on, details about will be displayed on the right. ** Copyright and Licences -The Unit Converter program is Copyright (C) 2018, 2019 Adrien Hopkins. It is released under the terms of the Aferro GNU General Public License, version 3.0 or any later version published by the Free Software Foundation. A copy of this license should be provided with this program, and a human-readable summary of the very similar GNU General Public License can be found at the following link: https://www.gnu.org/licenses/quick-guide-gplv3.html, although this summary is NOT a replacement for the actual license. +The Unit Converter program is Copyright (C) 2018-2021 Adrien Hopkins. It is released under the terms of the Aferro GNU General Public License, version 3.0 or any later version published by the Free Software Foundation. A copy of this license should be provided with this program, and a human-readable summary of the very similar GNU General Public License can be found at the following link: https://www.gnu.org/licenses/quick-guide-gplv3.html, although this summary is NOT a replacement for the actual license. This document is Copyright (C) 2019 Adrien Hopkins. This document is dual-licensed under the terms of the GNU Free Documentation License and the Creative Commons Attribution-ShareAlike License. More details are in the next paragraphs: diff --git a/src/main/java/org/unitConverter/package-info.java b/src/main/java/org/unitConverter/package-info.java index 23dd165..68a258f 100644 --- a/src/main/java/org/unitConverter/package-info.java +++ b/src/main/java/org/unitConverter/package-info.java @@ -1,5 +1,5 @@ /** - * Copyright (C) 2019 Adrien Hopkins + * Copyright (C) 2019-2021 Adrien Hopkins * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -18,7 +18,7 @@ * A program that converts units. * * @author Adrien Hopkins - * @version v0.2.0 + * @version v0.3.0 * @since 2019-01-25 */ package org.unitConverter;
\ No newline at end of file diff --git a/src/main/resources/about.txt b/src/main/resources/about.txt index 1bad9e8..da0ab11 100644 --- a/src/main/resources/about.txt +++ b/src/main/resources/about.txt @@ -1,4 +1,4 @@ -About Unit Converter v0.2.0 +About Unit Converter v0.3.0 Copyright Notice: @@ -9,4 +9,4 @@ for details read the LICENSE file, section 15 This is free software, and you are welcome to redistribute it under certain conditions; for details go to <https://www.gnu.org/licenses/quick-guide-gplv3.html> -or read the LICENSE file.
\ No newline at end of file +or read the LICENSE file. |