Skip to content

Commit e5c856b

Browse files
committed
Updated Readme and version number
1 parent c3046fb commit e5c856b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Vec3f c = a.plus(b);
4040
a = a.plus(b);
4141
```
4242

43-
The vector package offers integer, single-precision and double-precision vectors with all their basic operations.
43+
The vector package offers int, float, and double vectors with all their basic operations.
4444

4545
```scala
4646
val a = Vec3f(1.0f, 1.0f, 1.0f)
@@ -103,6 +103,8 @@ int location = GL20.glGetUniformLocation(program, "light_position");
103103
GL20.glUniform3f(location, lightPosition.x(), lightPosition.y(), lightPosition.z());
104104
```
105105

106+
An LWJGL project using VecMatLib is [Gamma Engine](https://github.com/Gamma-Engine), a general purpose graphics engine written in Java.
107+
106108
## Add VecMatLib to your project
107109

108110
VecMatLib can be added to any Java or Scala project as a dependency using [Jitpack](https://jitpack.io/).
@@ -122,7 +124,7 @@ allprojects {
122124

123125
```groovy
124126
dependencies {
125-
implementation 'com.github.HexagonNico:VecMatLib:1.2'
127+
implementation 'com.github.HexagonNico:VecMatLib:1.2.1'
126128
}
127129
```
128130

@@ -141,7 +143,7 @@ dependencies {
141143
<dependency>
142144
<groupId>com.github.HexagonNico</groupId>
143145
<artifactId>VecMatLib</artifactId>
144-
<version>1.2</version>
146+
<version>1.2.1</version>
145147
</dependency>
146148
```
147149

@@ -152,7 +154,7 @@ resolvers += "jitpack" at "https://jitpack.io"
152154
```
153155

154156
```sbt
155-
libraryDependencies += "com.github.HexagonNico" % "VecMatLib" % "1.2"
157+
libraryDependencies += "com.github.HexagonNico" % "VecMatLib" % "1.2.1"
156158
```
157159

158160
## Support the project
@@ -161,8 +163,6 @@ VecMatLib was developed by a single person.
161163

162164
Initially a university project, later completed and turned into a fully usable library.
163165

164-
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/X8X87EZ87)
165-
166166
## Contributing
167167

168168
Your contributions are always welcome! Please submit a pull request or open an issue if you want to contribute with bug fixes, code improvements, documentation, and better unit test coverage.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ThisBuild / version := "1.2"
1+
ThisBuild / version := "1.2.1"
22

33
ThisBuild / scalaVersion := "2.13.10"
44

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.8.0
1+
sbt.version = 1.8.1

0 commit comments

Comments
 (0)