Skip to content

Commit

Permalink
v1.2.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
inter6 committed Dec 9, 2021
1 parent 62aa7ab commit b552bef
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
/build
/gradle
/.gradle
/gradlew
/gradlew.bat

# Others
hs_err_pid*
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ SMTP로 메일을 전송하는 Java GUI 프로그램.

본래는 SMTP 서버의 테스트 목적으로 간단하게 만들려고 했으나, 점점 테스트할 기능들이 많아지면서 본격 SMTP 테스팅 툴로 만들어지고 있다. 때문에 일반인보다는 SMTP 서버 개발자, 오퍼레이터가 사용 대상이다.

![smtp-sender v1.2.2](https://inter6.github.io/media/mail/smtp-sender_v1.2.0.png)
![smtp-sender](./screenshot.png)

v1.2.3
- Fix gradle config

v1.2.2
- Custom HELO command
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'com.inter6.mail'
version '1.2.2'
version '1.2.3'

apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
Expand Down
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/java/com/inter6/mail/gui/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MainFrame extends JFrame {
public void execute() {
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);

this.setTitle("smtp-sender v1.2.2 (released: 15/12/18) - inter6.com");
this.setTitle("smtp-sender v1.2.3 (released: 21/12/10) - inter6.com");
this.setSize(1000, 800);
this.setMinimumSize(new Dimension(600, 400));
this.initLayout();
Expand Down
5 changes: 4 additions & 1 deletion src/main/resources/message/about.msg
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
smtp-sender v1.2.2 (released: 15/12/18)
smtp-sender v1.2.3 (released: 21/12/10)

Developer: inter6 <inter6@inter6.com>
Repository: https://github.com/inter6/smtp-sender

Release History

v1.2.3
- Fix gradle config

v1.2.2
- Custom HELO command
- Add Transmission Delay in EML/SCP panel (Force Single-Thread)
Expand Down

0 comments on commit b552bef

Please sign in to comment.