Skip to content

Commit 6ce838f

Browse files
committed
feat: Updated the readme.rst to be more beautiful
1 parent 750338e commit 6ce838f

File tree

10 files changed

+61
-3
lines changed

10 files changed

+61
-3
lines changed

.github/workflows/mvn_test_and_deploy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
java-version: '8'
2828
distribution: 'temurin'
2929
cache: maven
30+
- name: Install and configure secrets
31+
run: |
32+
sudo apt install git-secret
33+
git secret reveal
3034
- name: Build with Maven
3135
run: mvn -B package --file pom.xml
3236

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
target/
2-
src/test/files
2+
.gitsecret/keys/random_seed
3+
!*.secret
4+
src/test/files/PublicKey.pem

.gitsecret/keys/pubring.kbx

2.44 KB
Binary file not shown.

.gitsecret/keys/pubring.kbx~

32 Bytes
Binary file not shown.

.gitsecret/keys/trustdb.gpg

1.17 KB
Binary file not shown.

.gitsecret/paths/mapping.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/test/files/PublicKey.pem:1bd23604562a2f5cd042b330f2ba6581463dcaf59c65ca75b4ac9178947c83fa

README.rst

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
1-
Tfprotocol java implementation
1+
================================================
2+
TFProtocol Java Client :bird:
3+
================================================
4+
5+
.. image:: https://github.com/GoDjango-Development/TFProtocol/actions/workflows/test_and_build.yml/badge.svg
6+
:target: https://github.com/GoDjango-Development/TFProtocol/actions/workflows/test_and_build.yml
7+
8+
.. image:: https://img.shields.io/badge/Maintained%3F-yes-green.svg
9+
:target: https://github.com/GoDjango-Development/TFProtocol/graphs/commit-activity
10+
11+
.. image:: https://img.shields.io/github/license/GoDjango-Development/TFProtocol.svg
12+
:target: https://github.com/GoDjango-Development/TFProtocol/blob/master/LICENSE
13+
14+
.. image:: https://img.shields.io/github/release/GoDjango-Development/TFProtocol.svg
15+
:target: https://github.com/GoDjango-Development/TFProtocol/releases/
16+
17+
.. image:: https://img.shields.io/github/issues/GoDjango-Development/TFProtocol.svg
18+
:target: https://img.shields.io/github/release/GoDjango-Development/TFProtocol/issues/
19+
20+
.. image:: https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github
21+
:target: https://github.com/GoDjango-Development/TFProtocol/
22+
23+
More documentation comming soon
24+
25+
----
26+
Mantainers
27+
----
28+
29+
.. image:: https://img.shields.io/badge/maintainer-n4b3ts3-blue
30+
:target: mailto://[email protected]
31+
32+
.. image:: https://img.shields.io/badge/maintainer-lmdelbahia-blue
33+
:target: mailto://[email protected]
34+
35+
----
36+
37+
.. image:: https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg
38+
:target: https://GitHub.com/GoDjango-Development/issues/
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.nerox.client.modules;
2+
3+
import com.nerox.client.Tfprotocol;
4+
import com.nerox.client.TfprotocolSuper;
5+
import com.nerox.client.callbacks.IXSRPCProxyCallback;
6+
7+
public class XSRPCProxy extends TfprotocolSuper<IXSRPCProxyCallback>{
8+
public boolean startCommand(){
9+
super.getProtoHandler().startRPCProxyCallback(
10+
this.easyreum.getBuilder().build("XS_RPCPROXY").translate()
11+
.getBuilder().buildStatusInfo()
12+
);
13+
}
14+
15+
}

src/test/files/PublicKey.pem.secret

968 Bytes
Binary file not shown.

src/test/java/com/nerox/client/Callback.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ public void dtofCallback(java.util.Date date, StatusInfo status) {
4545
}
4646
@Override
4747
public void injailCallback(StatusInfo injail) {
48-
// TODO Auto-generated method stub
4948
this.statusServer(injail);
5049
}
5150

0 commit comments

Comments
 (0)