Skip to content

Querent

Querent is a versatile and intuitive Sudoku puzzle generation library written in Kotlin. It provides a comprehensive set of tools and algorithms for generating Sudoku puzzles of various grid sizes and difficulty levels.


API Reference

Release

Latest Update Stable Release Beta Release Alpha Release
February 23, 2023 - - 1.0.0-alpha02
November 27, 2023 - - 1.0.0-alpha01

Declaring dependencies

To add a dependency on Querent, you must add the Maven repository to your project. Read Maven's repository for more information.

Add the dependencies for the artifacts you need in the build.gradle file for your app or module:

plugins {
  id("dev.teogor.querent") version "1.0.0-alpha02"
}

repositories {
  mavenCentral() // Add the repository where the library is hosted
}

dependencies {
  implementation("dev.teogor.querent:gradle-plugin-api:1.0.0-alpha02")
}
plugins {
  id 'dev.teogor.querent' version '1.0.0-alpha02'
}

repositories {
  mavenCentral() // Add the repository where the library is hosted
}

dependencies {
  implementation 'dev.teogor.querent:gradle-plugin-api:1.0.0-alpha02'
}

Feedback

Your feedback helps make Querent better. We want to know if you discover new issues or have ideas for improving this library. Before creating a new issue, please take a look at the existing ones in this library. You can add your vote to an existing issue by clicking the star button.

Create a new issue

Version 1.0.0

Version 1.0.0-alpha02

February 23, 2024

dev.teogor.querent:querent-*:1.0.0-alpha02 is released. Version 1.0.0-alpha02 contains these commits.

Bug Fixes

  • Introduce dependency on generated compose resources task for preBuild phase (#11) by @teogor
  • Introduce API level 26 requirements for systemZoneOffset and buildLocalDateTime (#9) by @teogor

Others

Version 1.0.0-alpha01

November 27, 2023

dev.teogor.querent:querent-*:1.0.0-alpha01 is released. Version 1.0.0-alpha01 contains these commits.

Initial Release 🎊