-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from cdlab-sit/release/v0.2.0
Release v0.2.0
- Loading branch information
Showing
19 changed files
with
303 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ macos-latest ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v1 | ||
|
||
- name: Install packages | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Archive for macOS | ||
if: matrix.os == 'macos-latest' | ||
run: cd build/Release/${{ github.event.repository.name }}-darwin-x64/ && zip -r ${{ github.event.repository.name }}-macOS.zip *.app | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
body: | | ||
変更内容は CHANGELOG.md をご覧ください。 | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Release Asset | ||
id: upload-release-asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/Release/XenonText-darwin-x64/${{ github.event.repository.name }}-macOS.zip | ||
asset_name: ${{ github.event.repository.name }}-macOS.zip | ||
asset_content_type: application/zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# CHANGELOG | ||
|
||
## v0.2.0 (2020-09-24) | ||
**追加機能** | ||
- タブが増えるとスクロールできるようになり、一覧性が向上しました。 #64 | ||
- ファイルから言語を判断して、シンタックスハイライトが付くようになりました。 #66 | ||
- タイトルバーにファイル名が表示されるようになりました。 #67 | ||
|
||
**修正** | ||
- 日本語入力時のズレを軽減しました。 #65 | ||
|
||
その他、軽微な修正が含まれます。 | ||
|
||
## v0.1.0 (2020-08-29) | ||
- 初めてのリリース |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,6 @@ | ||
# editor | ||
[Electron](https://www.electronjs.org/) と [React](https://ja.reactjs.org/) でテキストエディタを作る | ||
# XenonText | ||
|
||
## やること | ||
- ファイルの作成 | ||
- ファイルの読み書き | ||
- テキストの編集 | ||
*シンプルなエディタを駆け出しエンジニアに* | ||
|
||
## 環境 | ||
``` | ||
Node.js: 10.20.0 | ||
``` | ||
|
||
## 開発 | ||
### リポジトリ準備 | ||
``` | ||
$ git clone https://github.com/cdlab-sit/editor.git | ||
$ cd editor | ||
``` | ||
|
||
### インストール | ||
``` | ||
$ npm install | ||
``` | ||
|
||
### 開発 | ||
ホットリロードに対応しています。 | ||
``` | ||
# ファイル監視 | ||
$ npm run watch | ||
# 実行 | ||
$ npm run dev | ||
``` | ||
|
||
### 実行 | ||
``` | ||
$ npm start | ||
``` | ||
|
||
### ビルド | ||
``` | ||
$ npm run build | ||
``` | ||
- [リリースページ](https://cdlab-sit.github.io/XenonText/) | ||
- [ドキュメント](https://cdlab-sit.github.io/XenonText/documentation/) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.