Skip to content

Commit

Permalink
Change project name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ab20zip committed Jun 20, 2024
1 parent 01ee358 commit a00ba99
Show file tree
Hide file tree
Showing 52 changed files with 160 additions and 170 deletions.
61 changes: 25 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# Fully Threaded
# Concurrentia

Introducing "Fully Threaded" – an open-source Java and Kotlin library designed to streamline your multi-threading
Introducing "Concurrentia" – an open-source Java and Kotlin library designed to streamline your multi-threading
experience. Our solution simplifies concurrent execution, allowing you to effortlessly run multiple tasks
simultaneously.

With "Fully Threaded," there's no need for complex configurations. The library intelligently adapts to your system's
With "Concurrentia," there's no need for complex configurations. The library intelligently adapts to your system's
capabilities, ensuring optimal performance without any manual intervention. However, should you require it, you have the
option to adjust the maximum thread count to align with your specific requirements.

Experience the efficiency of parallel processing with "Fully Threaded" – where simplicity meets professionalism,
Experience the efficiency of parallel processing with "Concurrentia" – where simplicity meets professionalism,
empowering you to focus on what truly matters: your code.

[ ![Discord](https://canary.discordapp.com/api/guilds/729950513352933386/widget.png) ](https://discord.gg/jsSGFeR)
[ ![Latest Release](https://img.shields.io/badge/Latest%20Release-1.0.1-orange)](https://github.com/Altiran/fully-threaded/releases/tag/1.0.1)
[ ![GitHub Forks](https://img.shields.io/github/forks/Altiran/fully-threaded.svg)](https://github.com/Altiran/fully-threaded/fork)
[ ![GitHub Stars](https://img.shields.io/github/stars/Altiran/fully-threaded.svg)](https://github.com/Altiran/fully-threaded/stargazers)
[ ![GitHub Watches](https://img.shields.io/github/watchers/Altiran/fully-threaded.svg)](https://github.com/Altiran/fully-threaded/watchers)
[ ![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/Altiran/fully-threaded/graphs/commit-activity)
[ ![Latest Release](https://img.shields.io/badge/Latest%20Release-1.0.1-orange)](https://github.com/Altiran/concurrentia/releases/tag/1.0.1)
[ ![GitHub Forks](https://img.shields.io/github/forks/Altiran/concurrentia.svg)](https://github.com/Altiran/concurrentia/fork)
[ ![GitHub Stars](https://img.shields.io/github/stars/Altiran/concurrentia.svg)](https://github.com/Altiran/concurrentia/stargazers)
[ ![GitHub Watches](https://img.shields.io/github/watchers/Altiran/concurrentia.svg)](https://github.com/Altiran/concurrentia/watchers)
[ ![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/Altiran/concurrentia/graphs/commit-activity)
[ ![Maintainer](https://img.shields.io/badge/Maintainer-Altiran_Studios-blue)](https://github.com/Altiran)
[ ![Build Status](https://github.com/Altiran/fully-threaded/actions/workflows/main.yml/badge.svg "Build Status")](https://github.com/altiran/fully-threaded)
[ ![Build Status](https://github.com/Altiran/concurrentia/actions/workflows/main.yml/badge.svg "Build Status")](https://github.com/Altiran/concurrentia)

**Like the project? Make sure to leave a ⭐ on the repository!**

Expand All @@ -28,61 +28,50 @@ empowering you to focus on what truly matters: your code.

```gradle
repositories {
maven { url 'https://raw.githubusercontent.com/Altiran/fully-threaded/master/repo/' }
maven { url 'https://raw.githubusercontent.com/Altiran/concurrentia/main/repo/' }
}
```

```gradle
dependencies {
implementation 'com.altiran:FullyThreaded:1.0'
implementation 'com.altiran:concurrentia:1.0'
}
```

##### Maven:

```xml

<repository>
<id>fully-threaded</id>
<url>https://raw.githubusercontent.com/Altiran/fully-threaded/master/repo/</url>
<id>concurrentia</id>
<url>https://raw.githubusercontent.com/Altiran/concurrentia/main/repo/</url>
</repository>
```

```xml

<dependency>
<groupId>com.altiran</groupId>
<artifactId>FullyThreaded</artifactId>
<version>1.0.1</version>
<groupId>com.altiran</groupId>
<artifactId>concurrentia</artifactId>
<version>1.0.1</version>
</dependency>
```

##### JAR:

Pre-built JAR downloads are available from [GitHub Releases](https://github.com/altiran/fully-threaded/releases).
Pre-built JAR downloads are available from [GitHub Releases](https://github.com/altiran/concurrentia/releases).

## How to Use?

You can see the official usage guide [here](https://github.com/altiran/fully-threaded/wiki/Usage-Examples).
```java
import com.altiran.concurrentia.Concurrentia;
```

## I Need Help

Check out the [Wiki tab](https://github.com/Altiran/fully-threaded/wiki).
Check out the [Wiki tab](https://github.com/Altiran/concurrentia/wiki).
If you are still stuck, join [our Discord server](https://discord.gg/jsSGFeR).

## Contributing

Your contributions to this project are highly valued. To get started, simply follow these steps:

1. Fork this repository to your GitHub account.
2. Clone the forked repository to your local machine.
3. Import the Gradle project into your preferred IDE.
4. Make the necessary changes to the code.
5. Once you're satisfied with the results and have thoroughly tested your changes for any bugs, create a pull request
using the green "Compare and Pull request" button.
6. Your code will undergo review and, upon approval, will be merged into the main repository.

Thank you for your commitment to enhancing our project. We look forward to your contributions!
[Step-by-Step Guide](https://github.com/Altiran/fully-threaded/wiki/Contribution-Guide)

## License

"Fully Threaded" is licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.html).
"Concurrentia" is licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.html).
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'idea' apply true
id 'java-library' apply true
id 'maven-publish' apply true
id('org.jetbrains.dokka') version '1.9.20' apply true
id 'org.jetbrains.dokka' version '1.9.20' apply true
id 'org.jetbrains.kotlin.jvm' version '2.0.0' apply true
}

Expand Down Expand Up @@ -87,12 +87,12 @@ publishing {

publications {
create('mavenJava', MavenPublication) {
//from components.java
from components.kotlin
artifactId = project.tr_name
from(components.kotlin)
pom {
name = 'FullyThreaded'
name = 'concurrentia'
description = 'Simple and open-source multithreading utility.'
url = 'https://github.com/Altiran/fully-threaded'
url = 'https://github.com/Altiran/concurrentia'
licenses {
license {
name = 'GNU General Public License v3.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ org.gradle.configureondemand=true
org.gradle.parallel.threads=4
org.gradle.jvmargs=-Xmx2G
kotlin.code.style=official
tr_name=FullyThreaded
tr_name=concurrentia
tr_group=com.altiran
tr_version=1.0.1
tr_website=https://altiran.com

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

36 changes: 0 additions & 36 deletions repo/com/altiran/FullyThreaded/1.0.1/FullyThreaded-1.0.1.pom

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

13 changes: 0 additions & 13 deletions repo/com/altiran/FullyThreaded/maven-metadata.xml

This file was deleted.

1 change: 0 additions & 1 deletion repo/com/altiran/FullyThreaded/maven-metadata.xml.md5

This file was deleted.

1 change: 0 additions & 1 deletion repo/com/altiran/FullyThreaded/maven-metadata.xml.sha1

This file was deleted.

1 change: 0 additions & 1 deletion repo/com/altiran/FullyThreaded/maven-metadata.xml.sha256

This file was deleted.

1 change: 0 additions & 1 deletion repo/com/altiran/FullyThreaded/maven-metadata.xml.sha512

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2fee9242d6653f14b3127d16f115b130
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9f90e20ad221cce57a77dfd17d8d3dfe4a161d73
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8428bd394a9d59474f19adc9df003e411c3343f4550fbf8544659a17c3997393
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2556d6f535cb3bc9f41aa1e9583696080834dc0d88a6dd63b787740b616c3c1601169b03a6e2c33caf4a5169b13cda864c773543585fa6e095cb4f37930baa2c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"formatVersion": "1.1",
"component": {
"group": "com.altiran",
"module": "FullyThreaded",
"module": "concurrentia",
"version": "1.0.1",
"attributes": {
"org.gradle.status": "release"
Expand All @@ -27,13 +27,13 @@
},
"files": [
{
"name": "FullyThreaded-1.0.1.jar",
"url": "FullyThreaded-1.0.1.jar",
"size": 1816072,
"sha512": "3b26f79595ec657722e41ea1a6a0b8f01bc383abbd8091b8032c952412f3a1d6faea4c1f9fce2df8a1da8bfdcad388cd406037cc765ac828bf49f9bb312fbeaf",
"sha256": "81d1dff9f8d058bba050d16e2fe2f6797d2de0adada2fd71eb6ff4e564d22b64",
"sha1": "bd105ef51ceee9e61697de40674bbdc21114743b",
"md5": "894c536827bbe6ed5cfa8e5e2eaa1485"
"name": "concurrentia-1.0.1.jar",
"url": "concurrentia-1.0.1.jar",
"size": 1816002,
"sha512": "2556d6f535cb3bc9f41aa1e9583696080834dc0d88a6dd63b787740b616c3c1601169b03a6e2c33caf4a5169b13cda864c773543585fa6e095cb4f37930baa2c",
"sha256": "8428bd394a9d59474f19adc9df003e411c3343f4550fbf8544659a17c3997393",
"sha1": "9f90e20ad221cce57a77dfd17d8d3dfe4a161d73",
"md5": "2fee9242d6653f14b3127d16f115b130"
}
]
},
Expand All @@ -59,13 +59,13 @@
],
"files": [
{
"name": "FullyThreaded-1.0.1.jar",
"url": "FullyThreaded-1.0.1.jar",
"size": 1816072,
"sha512": "3b26f79595ec657722e41ea1a6a0b8f01bc383abbd8091b8032c952412f3a1d6faea4c1f9fce2df8a1da8bfdcad388cd406037cc765ac828bf49f9bb312fbeaf",
"sha256": "81d1dff9f8d058bba050d16e2fe2f6797d2de0adada2fd71eb6ff4e564d22b64",
"sha1": "bd105ef51ceee9e61697de40674bbdc21114743b",
"md5": "894c536827bbe6ed5cfa8e5e2eaa1485"
"name": "concurrentia-1.0.1.jar",
"url": "concurrentia-1.0.1.jar",
"size": 1816002,
"sha512": "2556d6f535cb3bc9f41aa1e9583696080834dc0d88a6dd63b787740b616c3c1601169b03a6e2c33caf4a5169b13cda864c773543585fa6e095cb4f37930baa2c",
"sha256": "8428bd394a9d59474f19adc9df003e411c3343f4550fbf8544659a17c3997393",
"sha1": "9f90e20ad221cce57a77dfd17d8d3dfe4a161d73",
"md5": "2fee9242d6653f14b3127d16f115b130"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7972ed2f32bfd46a7edd5b937809c9ff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2e3a876aa3d88dd1836fa77775df240121060757
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a5c9bb2e740bea437a8e45231653f82f03f36e3aa302f45d30857a12ff7c103e
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
a9c051ed4d7b92d1a0295f99203651d0cb1a2a619f4675e149e665d9664b783b85f644afc724419bfe7debb2445d40bce85c31e087cda9e806ce549289b5ee58
38 changes: 38 additions & 0 deletions repo/com/altiran/concurrentia/1.0.1/concurrentia-1.0.1.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>com.altiran</groupId>
<artifactId>concurrentia</artifactId>
<version>1.0.1</version>
<name>concurrentia</name>
<description>Simple and open-source multithreading utility.</description>
<url>https://github.com/Altiran/concurrentia</url>
<licenses>
<license>
<name>GNU General Public License v3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<developers>
<developer>
<id>altiran</id>
<name>Altiran Studios</name>
<email>[email protected]</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cfac6ff91a85fd95640c7ac4451fac5b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ef003c8742b73b11bbca02d4d6c4c7300cad23cb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
49d7b3bcc9c3a3ba75ce7346cad5db3762645a35301c4f4ba47f359455959f72
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ba44b0d865eaf895693b10676f69b0e0ac96439b6dd07ec8e048cd7265b5f69945b909b37d36a441bed33bbe564b2cba4305d1ed53efd32def6987790ffc4162
13 changes: 13 additions & 0 deletions repo/com/altiran/concurrentia/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>com.altiran</groupId>
<artifactId>concurrentia</artifactId>
<versioning>
<latest>1.0.1</latest>
<release>1.0.1</release>
<versions>
<version>1.0.1</version>
</versions>
<lastUpdated>20240620083811</lastUpdated>
</versioning>
</metadata>
1 change: 1 addition & 0 deletions repo/com/altiran/concurrentia/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
73a319a06e3034235385e1ea86514d23
1 change: 1 addition & 0 deletions repo/com/altiran/concurrentia/maven-metadata.xml.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ed3f1f728bb692bb3ba2fbfa6e647b08c0b5db73
1 change: 1 addition & 0 deletions repo/com/altiran/concurrentia/maven-metadata.xml.sha256
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
941d764213ab1185ff79322fea89adca7b50cf93243288e9dda656f211ed32fd
1 change: 1 addition & 0 deletions repo/com/altiran/concurrentia/maven-metadata.xml.sha512
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4d02f5ddbdc85a85bc1faf7291434d339dbfafaff67c67dcd73ffb1a68a04e5fc142e16e048fe1e3fc24e60b96bf7b7b0abee55d2d89f4382f8add31c666767d
Loading

0 comments on commit a00ba99

Please sign in to comment.