Skip to content

Commit

Permalink
chore: rename project
Browse files Browse the repository at this point in the history
  • Loading branch information
Artawower committed Sep 15, 2023
1 parent 7136e36 commit f7cff56
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 26 deletions.
12 changes: 6 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[submodule "second-brain-publisher"]
path = second-brain-publisher
url = [email protected]:Artawower/second-brain-publisher.git
[submodule "orgnote-cli"]
path = orgnote-clie
url = [email protected]:Artawower/orgnote-cli.git
[submodule "web-roam"]
path = web-roam
url = [email protected]:Artawower/web-roam.git
[submodule "second-brain-client"]
path = second-brain-client
url = [email protected]:Artawower/second-brain-client.git
[submodule "orgnote-client"]
path = orgnote-client
url = [email protected]:Artawower/orgnote-client.git
[submodule "second-brain-backend"]
path = second-brain-backend
url = [email protected]:Artawower/second-brain-backend.git
24 changes: 13 additions & 11 deletions README.org
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
:PROPERTIES:
:ID: second-brain
:ID: orgnote
:END:

#+html: <div align='center'>
#+html: <img src='./images/image.png' width='256px' height='256px'>
#+html: </div>

#+TITLE: ✨ Second brain. Note taking application.
#+TITLE: ✨ Org Note. Note taking application.

#+html: <div align='center'>
#+html: <span class='badge-buymeacoffee'>
Expand All @@ -15,11 +15,11 @@
#+html: <span class='badge-patreon'>
#+html: <a href='https://patreon.com/artawower' target='_blank' title='Donate to this project using Patreon'><img src='https://img.shields.io/badge/patreon-donate-orange.svg' alt='Patreon donate button' /></a>
#+html: </span>
#+html: <a href='https://wakatime.com/badge/github/Artawower/second-brain'><img src='https://wakatime.com/badge/github/Artawower/second-brain.svg' alt='wakatime'></a>
#+html: <a href='https://wakatime.com/badge/github/Artawower/orgnote'><img src='https://wakatime.com/badge/github/Artawower/orgnote.svg' alt='wakatime'></a>
#+html: </div>


* 🌱 Introduction
* Introduction

What is this project for and who is it for? It's just a system of notes. There's another one. I've tried note-taking in various apps like evernote, notion, obsidian, etc. for quite some time.
Most of them, however, soon enough came to a state of littering. At this point, I simply gave up taking notes of any kind.
Expand All @@ -28,18 +28,20 @@ This project is based on the Zettelkasten approach, and borrows a lot of ideas f

[[http://65.108.90.95/][Web version for alpha testing]]

* 🍻 Connected links
- [[https://github.com/Artawower/second-brain-backend][Second brain bakend]]
- [[https://github.com/Artawower/second-brain-client][Second brain frontend]]
* Connected links
- [[https://github.com/Artawower/orgnote-backend][Org Note bakend]]
- [[https://github.com/Artawower/orgnote-client][Org Note frontend]]
- [[./EXTENSIONS.org][List of extensions]]
- [[https://github.com/Artawower/second-brain-publisher][NPM binary package for note syncing]]
- [[https://github.com/Artawower/second-brain-publisher][Emacs package for note publishing.]]
- [[https://github.com/Artawower/orgnote-publisher][NPM binary package for note syncing]]
- [[https://github.com/Artawower/orgnote-publisher][Emacs package for note publishing.]]
- [[https://github.com/Artawower/org-mode-ast][Typescript abstract syntax tree for org mode.]]
- [[https://en.wikipedia.org/wiki/Zettelkasten][About Zettelkasten approach]]

* 🍩 Contribute guide
* Contribute guide
Any contribution is very much appreciated! Please read the [[./CONTRIBUTE.org][style guide]] before contributing to avoid misunderstandings!
Also, the project exists solely on donations. I would appreciate it if you would join my patreon.

I would also appreciate it if you would join my patreon.


** How to update version of the application.
#+BEGIN_SRC bash
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion second-brain-backend
Submodule second-brain-backend deleted from ae21d1
1 change: 0 additions & 1 deletion second-brain-client
Submodule second-brain-client deleted from c8786e
1 change: 0 additions & 1 deletion second-brain-publisher
Submodule second-brain-publisher deleted from 16ed6a
10 changes: 6 additions & 4 deletions update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
# TODO: master ADD MANUAL
# Variables
emacs_package_version_file=./web-roam/web-roam.el
frontend_package_version_file=./second-brain-client/package.json
publisher_package_version_file=./second-brain-publisher/package.json
frontend_package_version_file=./orgnote-client/package.json
publisher_package_version_file=./orgnote-publisher/package.json
org_mode_ast_version_file=./org-mode-ast/package.json

commit_files=("$emacs_package_version_file" "$frontend_package_version_file" "$publisher_package_version_file")
dirs_to_commit=("web-roam" "second-brain-client" "second-brain-publisher")
dirs_to_commit=("web-roam" "orgnote-client" "orgnote-publisher")

# Input semver
read -p "Enter semver: " ver
Expand Down Expand Up @@ -54,6 +54,7 @@ set_package_json_version() {
modified_content=$(awk -v version="$version" '{sub("\"version\": \"[0-9]+\\.[0-9]+\\.[0-9]+\"", "\"version\": \""version"\"") }1' "$filePath")
echo "Content modified"
echo -e "$modified_content" > "$filePath"
yarn
}

if [[ ! -z $only_parser_dependencies ]]; then
Expand All @@ -70,10 +71,11 @@ update_dependency_version() {

modified_content=$(awk -v version="$version" '/"org-mode-ast"/ { sub(/"[0-9]+\.[0-9]+\.[0-9]+"/, "\"" version "\"") }1' "$filePath")
echo -e "$modified_content" > "$filePath"
yarn
}


# Update second-brain client and publisher version
# Update orgnote client and publisher version
update_dependency_version "$frontend_package_version_file" "$ver"
update_dependency_version "$publisher_package_version_file" "$ver"

Expand Down
2 changes: 1 addition & 1 deletion web-roam

0 comments on commit f7cff56

Please sign in to comment.