Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit 5730c5a

Browse files
hwahyang1Tilto_
andcommitted
v1.0-pre1 Release
자세한 내용은 Releases를 참고하세요. For more information, see the Releases tab. Co-Authored-By: Tilto_ <me@tilto.kro.kr>
1 parent 2e74334 commit 5730c5a

File tree

12 files changed

+1960
-2
lines changed

12 files changed

+1960
-2
lines changed

.github/workflows/build_test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Build Test
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: windows-latest
14+
15+
strategy:
16+
matrix:
17+
node-version: [15.x]
18+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm i pkg -g
27+
- run: npm ci -D
28+
- run: npm run build

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
build
3+
.idea
4+
logs/*.log

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
1-
# Program-Controller
2-
Adobe Discord RPC Program Controller
1+
# Adobe Discord RPC Program Controller
2+
3+
[![Title Image](https://adobe-discord-rpc.github.io/Adobe-Discord-RPC-Image/images/cover.png)](https://github.com/Adobe-Discord-RPC)
4+
5+
[![Discord Badge](https://img.shields.io/badge/Join-DIscord-7289DA?style=for-the-badge)](https://discord.gg/7MBYbERafX) [![Homepage Badge](https://img.shields.io/badge/Homepage-Click-7289DA?style=for-the-badge)](https://adobe.discordrpc.org)
6+
7+
[![Facebook Badge](https://img.shields.io/badge/Follow-Facebook-4267B2?style=for-the-badge)](https://www.facebook.com/adobediscordrpc) [![Twitter Badge](https://img.shields.io/badge/Follow-Twitter-1DA1F2?style=for-the-badge)](https://twitter.com/adobediscordrpc)
8+
9+
![GitHub](https://img.shields.io/github/license/Adobe-Discord-RPC/Program-Controller?style=for-the-badge) ![GitHub issues](https://img.shields.io/github/issues/Adobe-Discord-RPC/Program-Controller?style=for-the-badge) ![GitHub pull requests](https://img.shields.io/github/issues-pr-raw/Adobe-Discord-RPC/Program-Controller?style=for-the-badge)
10+
11+
![GitHub last commit](https://img.shields.io/github/last-commit/Adobe-Discord-RPC/Program-Controller?style=for-the-badge) ![Codacy grade](https://img.shields.io/codacy/grade/cf8aa5608ba549a2aeca13185418bb64?style=for-the-badge)
12+
13+
## Ko
14+
15+
Adobe Discord RPC 프로그램 실행 관제 및 업데이트/제거 마무리 작업 프로그램 레포지토리 입니다.
16+
17+
설치 방법은 [홈페이지](https://adobe.discordrpc.org)를 참고 해 주세요.
18+
19+
---
20+
21+
개발 : [화향](https://hwahyang.space), [틸토](https://tilto.kro.kr)
22+
23+
UI 디자인 : [화향](https://hwahyang.space), [틸토](https://tilto.kro.kr)
24+
25+
## En
26+
27+
This is the Repository of the Adobe Discord RPC Program Execution Control and Update/Remove Finishing Program.
28+
29+
Please refer to the [homepage](https://adobe.discordrpc.org) for installation instructions.
30+
31+
---
32+
33+
Develop by. [HwaHyang](https://hwahyang.space), [Tilto](https://tilto.kro.kr)
34+
35+
UI Design by. [HwaHyang](https://hwahyang.space), [Tilto](https://tilto.kro.kr)

0 commit comments

Comments
 (0)