Skip to content

Commit

Permalink
Release 3.0.6 !
Browse files Browse the repository at this point in the history
  • Loading branch information
tommyettinger committed Jan 14, 2023
1 parent 806df86 commit 005f5a1
Show file tree
Hide file tree
Showing 1,395 changed files with 495,395 additions and 320,055 deletions.
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,22 @@ it is usually nearly empty and silent, so prefer Discord if at all possible.
Documentation:
---
Jars of javadocs are distributed with each release via Maven Central, and with the current latest via JitPack. You can
get the docs and source of the latest version, 3.0.4, in two parts for each; squidlib-util (the core of the library,
get the docs and source of the latest version, 3.0.6, in two parts for each; squidlib-util (the core of the library,
and also the largest part) has its
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.4/squidlib-util-3.0.4.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.4/squidlib-util-3.0.4-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.4/squidlib-util-3.0.4-sources.jar),
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.6/squidlib-util-3.0.6.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.6/squidlib-util-3.0.6-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-util/3.0.6/squidlib-util-3.0.6-sources.jar),
while squidlib (the display part of the library, named the way it is because depending on squidlib should also pull in
squidlib-util to make it a "one-stop shop" dependency) has its
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.4/squidlib-3.0.4.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.4/squidlib-3.0.4-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.4/squidlib-3.0.4-sources.jar).
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.6/squidlib-3.0.6.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.6/squidlib-3.0.6-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib/3.0.6/squidlib-3.0.6-sources.jar).
The completely-optional squidlib-extra module (primarily used for serialization; relies on libGDX but doesn't use it for display) has its
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.4/squidlib-extra-3.0.4.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.4/squidlib-extra-3.0.4-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.4/squidlib-extra-3.0.4-sources.jar).
[library jar here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.6/squidlib-extra-3.0.6.jar),
[docs here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.6/squidlib-extra-3.0.6-javadoc.jar),
and [source here](http://search.maven.org/remotecontent?filepath=com/squidpony/squidlib-extra/3.0.6/squidlib-extra-3.0.6-sources.jar).

You can browse the **JavaDocs** of a recent commit (possibly newer than 3.0.4, but no older) here:
You can browse the **JavaDocs** of a recent commit (possibly newer than 3.0.6, but no older) here:
- [Docs for squidlib-util](http://yellowstonegames.github.io/SquidLib/squidlib-util/apidocs/index.html)
- [Docs for squidlib](http://yellowstonegames.github.io/SquidLib/squidlib/apidocs/index.html)
- [Docs for squidlib-extra](http://yellowstonegames.github.io/SquidLib/squidlib-extra/apidocs/index.html)
Expand Down Expand Up @@ -142,7 +142,7 @@ Core of SquidLib:
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-util</artifactId>
<version>3.0.4</version>
<version>3.0.6</version>
</dependency>
```

Expand All @@ -151,7 +151,7 @@ Optional Text-Based Display (depends on libGDX 1.10.0 and anim8-gdx 0.2.10)
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib</artifactId>
<version>3.0.4</version>
<version>3.0.6</version>
</dependency>
```

Expand All @@ -160,25 +160,25 @@ Optional Serialization Support (depends on libGDX 1.10.0)
<dependency>
<groupId>com.squidpony</groupId>
<artifactId>squidlib-extra</artifactId>
<version>3.0.4</version>
<version>3.0.6</version>
</dependency>
```

Or these dependencies for Gradle:

Core of SquidLib:
```
api 'com.squidpony:squidlib-util:3.0.4'
api 'com.squidpony:squidlib-util:3.0.6'
```

Optional Text-Based Display
```
api 'com.squidpony:squidlib:3.0.4'
api 'com.squidpony:squidlib:3.0.6'
```

Optional Serialization Support
```
api 'com.squidpony:squidlib-extra:3.0.4'
api 'com.squidpony:squidlib-extra:3.0.6'
```

If you want the latest version of SquidLib, which uses libGDX 1.11.0 and either GWT 2.8.2 or GWT 2.9.0 (if you use GWT),
Expand Down Expand Up @@ -234,11 +234,11 @@ with Maven):
```
implementation "com.github.yellowstonegames.SquidLib:squidlib-util:f8f2590cc6:sources"
// above depends on this:
implementation "com.github.tommyettinger:regexodus:0.1.13:sources"
implementation "com.github.tommyettinger:regexodus:0.1.14:sources"
implementation "com.github.yellowstonegames.SquidLib:squidlib:f8f2590cc6:sources"
// above depends on this:
implementation "com.github.tommyettinger:anim8-gdx:0.3.6:sources"
implementation "com.github.tommyettinger:anim8-gdx:0.3.12:sources"
implementation "com.github.yellowstonegames.SquidLib:squidlib-extra:f8f2590cc6:sources"
}
Expand All @@ -250,19 +250,19 @@ There's also the GWT "inherits" configuration for your application.
These should be present once in GdxDefinition.gwt.xml if you use GWT:

```
<inherits name="squidlib-util" />
<inherits name="squidpony.squidlib-util" />
```

If you use the display module, you also need

```
<inherits name="squidlib" />
<inherits name="squidpony.squidlib" />
```

And if you use squidlib-extra, you also need

```
<inherits name="squidlib-extra" />
<inherits name="squidpony.squidlib-extra" />
```

Building
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.18.0'
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.22.0'
}
}

Expand Down
31 changes: 31 additions & 0 deletions docs/squidlib-extra/apidocs/allclasses-frame.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>All Classes (squidlib-extra 3.0.6 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<h1 class="bar">All&nbsp;Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="squidpony/store/text/BonusConverters.html" title="class in squidpony.store.text" target="classFrame">BonusConverters</a></li>
<li><a href="squidpony/squidmath/BundleBiMap.html" title="class in squidpony.squidmath" target="classFrame">BundleBiMap</a></li>
<li><a href="squidpony/squidmath/BundleBundleBiMap.html" title="class in squidpony.squidmath" target="classFrame">BundleBundleBiMap</a></li>
<li><a href="squidpony/DataCompressor.html" title="class in squidpony" target="classFrame">DataCompressor</a></li>
<li><a href="squidpony/DataConverter.html" title="class in squidpony" target="classFrame">DataConverter</a></li>
<li><a href="squidpony/squidmath/JavaRNG.html" title="class in squidpony.squidmath" target="classFrame">JavaRNG</a></li>
<li><a href="squidpony/store/json/JsonCompressor.html" title="class in squidpony.store.json" target="classFrame">JsonCompressor</a></li>
<li><a href="squidpony/store/json/JsonConverter.html" title="class in squidpony.store.json" target="classFrame">JsonConverter</a></li>
<li><a href="squidpony/store/json/JsonStorage.html" title="class in squidpony.store.json" target="classFrame">JsonStorage</a></li>
<li><a href="squidpony/squidmath/MultiArrangement.html" title="class in squidpony.squidmath" target="classFrame">MultiArrangement</a></li>
<li><a href="squidpony/squidmath/MultiKey.html" title="class in squidpony.squidmath" target="classFrame">MultiKey</a></li>
<li><a href="squidpony/SquidStorage.html" title="class in squidpony" target="classFrame">SquidStorage</a></li>
<li><a href="squidpony/StringStringMap.html" title="class in squidpony" target="classFrame">StringStringMap</a></li>
<li><a href="squidpony/store/text/TextStorage.html" title="class in squidpony.store.text" target="classFrame">TextStorage</a></li>
</ul>
</div>
</body>
</html>
135 changes: 0 additions & 135 deletions docs/squidlib-extra/apidocs/allclasses-index.html

This file was deleted.

31 changes: 31 additions & 0 deletions docs/squidlib-extra/apidocs/allclasses-noframe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>All Classes (squidlib-extra 3.0.6 API)</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<h1 class="bar">All&nbsp;Classes</h1>
<div class="indexContainer">
<ul>
<li><a href="squidpony/store/text/BonusConverters.html" title="class in squidpony.store.text">BonusConverters</a></li>
<li><a href="squidpony/squidmath/BundleBiMap.html" title="class in squidpony.squidmath">BundleBiMap</a></li>
<li><a href="squidpony/squidmath/BundleBundleBiMap.html" title="class in squidpony.squidmath">BundleBundleBiMap</a></li>
<li><a href="squidpony/DataCompressor.html" title="class in squidpony">DataCompressor</a></li>
<li><a href="squidpony/DataConverter.html" title="class in squidpony">DataConverter</a></li>
<li><a href="squidpony/squidmath/JavaRNG.html" title="class in squidpony.squidmath">JavaRNG</a></li>
<li><a href="squidpony/store/json/JsonCompressor.html" title="class in squidpony.store.json">JsonCompressor</a></li>
<li><a href="squidpony/store/json/JsonConverter.html" title="class in squidpony.store.json">JsonConverter</a></li>
<li><a href="squidpony/store/json/JsonStorage.html" title="class in squidpony.store.json">JsonStorage</a></li>
<li><a href="squidpony/squidmath/MultiArrangement.html" title="class in squidpony.squidmath">MultiArrangement</a></li>
<li><a href="squidpony/squidmath/MultiKey.html" title="class in squidpony.squidmath">MultiKey</a></li>
<li><a href="squidpony/SquidStorage.html" title="class in squidpony">SquidStorage</a></li>
<li><a href="squidpony/StringStringMap.html" title="class in squidpony">StringStringMap</a></li>
<li><a href="squidpony/store/text/TextStorage.html" title="class in squidpony.store.text">TextStorage</a></li>
</ul>
</div>
</body>
</html>
Loading

0 comments on commit 005f5a1

Please sign in to comment.