Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wiiznokes committed May 20, 2024
1 parent 3ad4731 commit dd46506
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
is_nightly:
description: "Is nightly"
required: false
default: false
default: true
type: boolean
# push:
# branches:
Expand Down Expand Up @@ -36,8 +36,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Get app version
run: echo "APP_VERSION=$(cat VERSION)" >> $GITHUB_ENV
- name: Set app version
- run: |
date +"%y.%m" > VERSION
echo "APP_VERSION=$(cat VERSION)" >> $GITHUB_ENV
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Set version file
skip_checkout: true
skip_fetch: true
file_pattern: 'VERSION'

- if: ${{ (github.event.inputs.is_nightly == 'true') || (github.event.inputs.is_nightly == '') }}
name: Setup options for nightly
Expand Down
10 changes: 1 addition & 9 deletions DEV.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
# Figma icons

- https://www.figma.com/files/project/202053634/Team-project?fuid=1064179055423421287

# Todo

- missing feature for folder management: remove, move, rename
- missing feature for note management: move
- support f-droid
- example repo: https://github.com/libre-tube/LibreTube/tree/master
- doc: https://f-droid.org/en/docs/
- https://www.figma.com/files/project/202053634/Team-project?fuid=1064179055423421287
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,7 @@ Because all apps which integrate git on Android either separate the note title f
- [x] edit view
- [x] private repo with https
- [x] remote sync
- [x] edit/rename/create/update note/file
- [x] time based sort
- [ ] rename/create/delete noteFolder/directory
- [ ] Markdown integration
- [ ] available on f-droid
- [ ] private repo with ssh
- [ ] easy login (without copy pasting token, like GitJournal (require ssh support))

<p style="text-align: center;">
<img src="assets/grid.png" width="32%" alt="grid screen"/>
Expand Down

0 comments on commit dd46506

Please sign in to comment.