Skip to content

Commit

Permalink
Increment version to 0.2 and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
dhzdhd committed Aug 26, 2022
1 parent c14321a commit 4b1d326
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 41 deletions.
82 changes: 41 additions & 41 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
# if: startsWith(github.ref, 'refs/tags/')
with:
name: ExCode
tag_name: v0.1.0
tag_name: v0.2.0
prerelease: true
generate_release_notes: true
files: exec/*
Expand All @@ -56,43 +56,43 @@ jobs:
env:
GITHUB_REPOSITORY: dhzdhd/ExCode

build-linux:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'

- name: Build Linux
run: |
flutter config --enable-linux-desktop
flutter pub get
flutter build linux
- name: Create zip
run: |
7z -tZip a exec\ExCode.zip build\windows\runner\Release\
- name : Move build files
run : |
mv build/app/outputs/flutter-apk/app-release.apk exec/ExCode.apk
mv build/app/outputs/bundle/release/app-release.aab exec/ExCode.aab
- name: Create release
uses: softprops/action-gh-release@v1
# if: startsWith(github.ref, 'refs/tags/')
with:
name: ExCode
tag_name: v0.1.0
prerelease: true
generate_release_notes: true
files: exec/*
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_REPOSITORY: dhzdhd/ExCode
# build-linux:
# runs-on: ubuntu-latest

# steps:
# - name: Checkout
# uses: actions/checkout@v3

# - name: Setup flutter
# uses: subosito/flutter-action@v2
# with:
# channel: 'stable'

# - name: Build Linux
# run: |
# flutter config --enable-linux-desktop
# flutter pub get
# flutter build linux

# - name: Create zip
# run: |
# 7z -tZip a exec\ExCode.zip build\windows\runner\Release\

# - name : Move build files
# run : |
# mv build/app/outputs/flutter-apk/app-release.apk exec/ExCode.apk
# mv build/app/outputs/bundle/release/app-release.aab exec/ExCode.aab

# - name: Create release
# uses: softprops/action-gh-release@v1
# # if: startsWith(github.ref, 'refs/tags/')
# with:
# name: ExCode
# tag_name: v0.1.0
# prerelease: true
# generate_release_notes: true
# files: exec/*
# body_path: CHANGELOG.md
# token: ${{ secrets.GITHUB_TOKEN }}
# env:
# GITHUB_REPOSITORY: dhzdhd/ExCode
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file.

## 0.2.0 | 26-08-2022

### Additions

- Add setting to change font size.
- Add line highlighting on cursor movement.
- Add template boilerplate for each language and implement language-wise local storage.

### Fixes / Improvements

- Fix cursor position for TAB button.
- Fix line numbering issues.
- Fix editor theme setting issues.
- Minor QOL updates.

### Known issues

- None as of now.

## 0.1.0 | 20-08-2022

### Additions
Expand Down

0 comments on commit 4b1d326

Please sign in to comment.