Skip to content

Commit

Permalink
Merge branch 'alpha' of github.com:Muhammed-Rahif/Notpad into display…
Browse files Browse the repository at this point in the history
…-line-numbers
  • Loading branch information
Muhammed-Rahif committed Nov 16, 2024
2 parents 3b71e9d + 4a27357 commit 5eff14d
Show file tree
Hide file tree
Showing 36 changed files with 12,235 additions and 3,705 deletions.
31 changes: 21 additions & 10 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Prettier
on:
pull_request:
branches:
- alpha
# pull_request_target:
# types:
# - opened
# - synchronize
# - reopened
# - edited
# branches:
# - alpha
workflow_dispatch:
jobs:
prettier:
Expand All @@ -14,8 +19,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
fetch-depth: 0

- name: Setup Node.js
Expand All @@ -27,8 +30,16 @@ jobs:
run: npm install

- name: Run Prettier
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write .
commit_message: 'style(prettier): run prettier'
prettier_plugins: 'prettier-plugin-svelte prettier-plugin-tailwindcss'
run: npx prettier --write .

- name: Commit changes
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m 'style(prettier): run prettier' || echo "No changes to commit"
- name: Push changes
run: git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ dev-dist

build/
www/
src-tauri/target
src-tauri/target
src-tauri/gen
34 changes: 16 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
# 1.0.0-alpha.1 (2024-10-15)


### Bug Fixes

* can’t save or open file on mobile devices ([94f80a0](https://github.com/Muhammed-Rahif/Notpad/commit/94f80a0f26f613b5bc3225e0d7f2aa2371c1bb60)), closes [#182](https://github.com/Muhammed-Rahif/Notpad/issues/182)
* **config:** svelte with neutralino problems ([00a9656](https://github.com/Muhammed-Rahif/Notpad/commit/00a965664b07f6f68314822e480ec087deb89f7f))
* **editor:** editor title close button bg color ([b639bd4](https://github.com/Muhammed-Rahif/Notpad/commit/b639bd43b88233d97908bc976767b69ffeb51da2))
* **gh-pages:** blank page ([55be62f](https://github.com/Muhammed-Rahif/Notpad/commit/55be62fe532480c48135240ade0e70cc7b57f34f))
* **menubar:** close the notepad ([333c6a8](https://github.com/Muhammed-Rahif/Notpad/commit/333c6a8effc1d16cfa275a7d57f6dfd2778dbb62))
* **menubar:** dark mode label is not dynamic ([9f4968b](https://github.com/Muhammed-Rahif/Notpad/commit/9f4968bd005888939b27c08ddad8443e39f4bf81)), closes [#195](https://github.com/Muhammed-Rahif/Notpad/issues/195)
* **print:** print with large content adds a scrollbar ([2111f84](https://github.com/Muhammed-Rahif/Notpad/commit/2111f84b180ea0c2fd071733459a8110db28550e))
* **pwa:** vite-pwa not offline compatible ([f860d07](https://github.com/Muhammed-Rahif/Notpad/commit/f860d07bd0b081bbe5e9a3daf72036588e1db037))
* **statusbar:** move statusbar to a new component ([629d145](https://github.com/Muhammed-Rahif/Notpad/commit/629d145d2ff48711d3b91dbee34f2147430415b5))
* **tauri:** menubar file options support on tauri ([4bb4883](https://github.com/Muhammed-Rahif/Notpad/commit/4bb48838357634c2d83496fb8e8b86c9f877ee6f))

- can’t save or open file on mobile devices ([94f80a0](https://github.com/Muhammed-Rahif/Notpad/commit/94f80a0f26f613b5bc3225e0d7f2aa2371c1bb60)), closes [#182](https://github.com/Muhammed-Rahif/Notpad/issues/182)
- **config:** svelte with neutralino problems ([00a9656](https://github.com/Muhammed-Rahif/Notpad/commit/00a965664b07f6f68314822e480ec087deb89f7f))
- **editor:** editor title close button bg color ([b639bd4](https://github.com/Muhammed-Rahif/Notpad/commit/b639bd43b88233d97908bc976767b69ffeb51da2))
- **gh-pages:** blank page ([55be62f](https://github.com/Muhammed-Rahif/Notpad/commit/55be62fe532480c48135240ade0e70cc7b57f34f))
- **menubar:** close the notepad ([333c6a8](https://github.com/Muhammed-Rahif/Notpad/commit/333c6a8effc1d16cfa275a7d57f6dfd2778dbb62))
- **menubar:** dark mode label is not dynamic ([9f4968b](https://github.com/Muhammed-Rahif/Notpad/commit/9f4968bd005888939b27c08ddad8443e39f4bf81)), closes [#195](https://github.com/Muhammed-Rahif/Notpad/issues/195)
- **print:** print with large content adds a scrollbar ([2111f84](https://github.com/Muhammed-Rahif/Notpad/commit/2111f84b180ea0c2fd071733459a8110db28550e))
- **pwa:** vite-pwa not offline compatible ([f860d07](https://github.com/Muhammed-Rahif/Notpad/commit/f860d07bd0b081bbe5e9a3daf72036588e1db037))
- **statusbar:** move statusbar to a new component ([629d145](https://github.com/Muhammed-Rahif/Notpad/commit/629d145d2ff48711d3b91dbee34f2147430415b5))
- **tauri:** menubar file options support on tauri ([4bb4883](https://github.com/Muhammed-Rahif/Notpad/commit/4bb48838357634c2d83496fb8e8b86c9f877ee6f))

### Features

* Add character count feature to textarea ([53c826e](https://github.com/Muhammed-Rahif/Notpad/commit/53c826e86cfd7c1d426373aaee267d24f40bb4e9))
* **editor:** open text files from local ([8f0935a](https://github.com/Muhammed-Rahif/Notpad/commit/8f0935acd66923801964c24729920d551161575c))
* **files:** save and save as ([ad68c28](https://github.com/Muhammed-Rahif/Notpad/commit/ad68c28a89e1eae8fb9f70d5dc9b82360fd3a539))
* migrate to svelte from sveltekit ([a77d5d9](https://github.com/Muhammed-Rahif/Notpad/commit/a77d5d98509d7f69393d41f7b89e378d90ffdf89))
* print active editor ([2db8efe](https://github.com/Muhammed-Rahif/Notpad/commit/2db8efea1ffd53ab28459979b6f8751b66f278e8))
* **tauri:** replace neutralino using tauri ([8ea0897](https://github.com/Muhammed-Rahif/Notpad/commit/8ea089784fe7a790d85c1df236d6f52366e81956))
- Add character count feature to textarea ([53c826e](https://github.com/Muhammed-Rahif/Notpad/commit/53c826e86cfd7c1d426373aaee267d24f40bb4e9))
- **editor:** open text files from local ([8f0935a](https://github.com/Muhammed-Rahif/Notpad/commit/8f0935acd66923801964c24729920d551161575c))
- **files:** save and save as ([ad68c28](https://github.com/Muhammed-Rahif/Notpad/commit/ad68c28a89e1eae8fb9f70d5dc9b82360fd3a539))
- migrate to svelte from sveltekit ([a77d5d9](https://github.com/Muhammed-Rahif/Notpad/commit/a77d5d98509d7f69393d41f7b89e378d90ffdf89))
- print active editor ([2db8efe](https://github.com/Muhammed-Rahif/Notpad/commit/2db8efea1ffd53ab28459979b6f8751b66f278e8))
- **tauri:** replace neutralino using tauri ([8ea0897](https://github.com/Muhammed-Rahif/Notpad/commit/8ea089784fe7a790d85c1df236d6f52366e81956))
Loading

0 comments on commit 5eff14d

Please sign in to comment.