Skip to content

Commit

Permalink
Merge pull request #12 from Ferius057/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Ferius057 authored May 28, 2023
2 parents 87a544c + c745955 commit 050cec7
Show file tree
Hide file tree
Showing 8 changed files with 904 additions and 17 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">VK-MailingGroup</h1>
<p align="center">
<a href="https://github.com/Ferius057/VK-MailingGroup/releases/tag/1.3.0">
<a href="https://github.com/Ferius057/VK-MailingGroup/releases/tag/1.4.0">
<img src="https://img.shields.io/github/v/release/Ferius057/VK-MailingGroup?style=flat-square">
</a>
<a href="https://opensource.org/licenses/MIT">
Expand All @@ -13,7 +13,7 @@
<img src="https://img.shields.io/badge/License-MIT-yellow.svg">
</a>
<p align="center">
<a href="https://github.com/Ferius057/VK-MailingGroup/releases/download/1.3.0/MailingGroup.jar">
<a href="https://github.com/Ferius057/VK-MailingGroup/releases/download/1.4.0/MailingGroup.jar">
<img src="https://img.shields.io/github/downloads/Ferius057/VK-MailingGroup/total?color=6ff00">
<a href="https://www.donationalerts.com/r/ferius_057">
<img src="https://img.shields.io/badge/Donate-DonationAlerts-orange.svg">
Expand All @@ -29,22 +29,23 @@
<hr>

## Возможности
- Быстро сделать рассылку всем пользовалям(тем с кем был диалог)
- Прикреплять такие вложения как: фото, запись(пост)
- Быстро сделать рассылку всем пользовалям (тем с кем был диалог)
- Прикреплять такие вложения как: фото, запись (пост)
- Сделать тестовую рассылку определенным пользователям
- Удалить определенных пользователей из рассылки (black list)
- Удобные конфигурации и полная информация по настройке
- Легкая установка

<hr>

## Использование:
<a href="https://github.com/Ferius057/VK-MailingGroup/releases/download/1.3.0/MailingGroup.jar">
<a href="https://github.com/Ferius057/VK-MailingGroup/releases/download/1.4.0/MailingGroup.jar">
<img src="https://img.shields.io/github/downloads/Ferius057/VK-MailingGroup/total?color=6ff00">
</a>

```bash
# Скачать на Linux
$ wget https://github.com/Ferius057/VK-MailingGroup/releases/download/1.3.0/MailingGroup.jar
$ wget https://github.com/Ferius057/VK-MailingGroup/releases/download/1.4.0/MailingGroup.jar


# Для запуска скрипта
Expand Down
12 changes: 3 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>kz.ferius_057</groupId>
<artifactId>MailingGroup</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>

<properties>
<maven.compiler.source>11</maven.compiler.source>
Expand Down Expand Up @@ -57,13 +57,13 @@
<dependency>
<groupId>com.github.yvasyliev</groupId>
<artifactId>java-vk-bots-longpoll-api</artifactId>
<version>3.5.3</version>
<version>4.1.3</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<version>1.18.28</version>
<scope>provided</scope>
</dependency>

Expand All @@ -79,12 +79,6 @@
<version>4.5.14</version>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
<version>3.8.6</version>
</dependency>

<!-- logging -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import api.longpoll.bots.LongPollBot;
import api.longpoll.bots.methods.VkBotsMethods;
import kz.ferius_057.mailingGroup.data.Config;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Getter;
Expand Down
21 changes: 21 additions & 0 deletions src/main/java/kz/ferius_057/mailingGroup/util/ArtifactVersion.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package kz.ferius_057.mailingGroup.util;

/**
* @author Ferius_057 (Charles_Grozny)
* @date ⭐ 26.05.2023 | 0:21 ⭐
*
* <br> Вырезано из maven-artifact
*/
public interface ArtifactVersion extends Comparable<ArtifactVersion> {
int getMajorVersion();

int getMinorVersion();

int getIncrementalVersion();

int getBuildNumber();

String getQualifier();

void parseVersion(String version);
}
Loading

0 comments on commit 050cec7

Please sign in to comment.