Skip to content

Commit 1af0967

Browse files
authored
Merge pull request AppImage#1342 from AppImage/GitNote
Create GitNote
2 parents 1b7b0af + 16a9bea commit 1af0967

File tree

6 files changed

+156
-0
lines changed

6 files changed

+156
-0
lines changed

apps/GitNote.md

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
---
2+
layout: app
3+
4+
permalink: /GitNote/
5+
description: A modern note taking app based on GIT.
6+
7+
icons:
8+
- GitNote/icons/128x128/gitnote.png
9+
10+
screenshots:
11+
- GitNote/screenshot.png
12+
13+
authors:
14+
- name: zhaopengme
15+
url: https://github.com/zhaopengme
16+
17+
links:
18+
- type: GitHub
19+
url: zhaopengme/gitnote
20+
- type: Download
21+
url: https://github.com/zhaopengme/gitnote/releases
22+
23+
desktop:
24+
Desktop Entry:
25+
Name: GitNote
26+
Comment: A modern note taking app based on GIT.
27+
Exec: AppRun
28+
Terminal: false
29+
Type: Application
30+
Icon: gitnote
31+
StartupWMClass: GitNote
32+
X-AppImage-Version: 3.1.0
33+
Categories: Utility
34+
X-AppImage-BuildId: 1I7Z6A5iUCvob4gWnnurbYLFCyZ
35+
AppImageHub:
36+
X-AppImage-Signature: no valid OpenPGP data found. the signature could not be verified.
37+
Please remember that the signature file (.sig or .asc) should be the first file
38+
given on the command line.
39+
X-AppImage-Type: 2
40+
X-AppImage-Architecture: x86_64
41+
42+
electron:
43+
description: A modern note taking app based on GIT.
44+
license:
45+
main: "./dist/electron/main.js"
46+
dependencies:
47+
"@hitask/electron-ga": "^3.0.0"
48+
assert: "^1.4.1"
49+
axios: "^0.18.0"
50+
custom-electron-titlebar: "^2.1.0"
51+
dayjs: "^1.7.2"
52+
decompress: "^4.2.0"
53+
decompress-unzip: "^4.0.1"
54+
delay: "^4.0.1"
55+
directory-tree: "^2.1.0"
56+
download: "^7.1.0"
57+
electron-baidu-tongji: "^1.0.2"
58+
electron-default-menu: "^1.0.1"
59+
electron-is: "^3.0.0"
60+
electron-log: "^3.0.1"
61+
electron-updater: "^4.0.6"
62+
element-ui: "^2.5.4"
63+
extend: "^3.0.2"
64+
file-url: "^2.0.2"
65+
fs-extra: "^6.0.1"
66+
git-config-path: "^2.0.0"
67+
is-invalid-path: "^1.0.2"
68+
js-md5: "^0.7.3"
69+
keytar: "^4.3.0"
70+
local-gitignore: "^1.0.2"
71+
log4js: "^3.0.6"
72+
mavon-editor: "^2.6.17"
73+
mobx: "^5.0.3"
74+
movue: "^0.3.0"
75+
natsort: "^2.0.0"
76+
nedb-promises: "^3.0.0"
77+
nodegit: "^0.23.0"
78+
parse-git-config: "^3.0.0"
79+
parse-github-url: "^1.0.2"
80+
qs: "^6.5.2"
81+
quill: "^1.3.6"
82+
vue: "^2.5.16"
83+
vue-electron: "^1.0.6"
84+
vue-i18n: "^8.0.0"
85+
vue-router: "^3.0.1"
86+
vuescroll: "^4.7.4"
87+
---

data/GitNote

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/zhaopengme/gitnote

database/GitNote/gitnote.desktop

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[Desktop Entry]
2+
Name=GitNote
3+
Comment=A modern note taking app based on GIT.
4+
Exec=AppRun
5+
Terminal=false
6+
Type=Application
7+
Icon=gitnote
8+
StartupWMClass=GitNote
9+
X-AppImage-Version=3.1.0
10+
Categories=Utility;
11+
X-AppImage-BuildId=1I7Z6A5iUCvob4gWnnurbYLFCyZ
12+
13+
[AppImageHub]
14+
# Dear upstream developer, please include update information in your AppImage
15+
# (e.g., with appimagetool -u) so that users can easily update the AppImage
16+
X-AppImage-Signature=no valid OpenPGP data found. the signature could not be verified. Please remember that the signature file (.sig or .asc) should be the first file given on the command line.
17+
X-AppImage-Type=2
18+
X-AppImage-Architecture=x86_64
2.17 KB
Loading

database/GitNote/package.json

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "GitNote",
3+
"version": "3.1.0",
4+
"author": "mikey.zhaopeng <[email protected]>",
5+
"description": "A modern note taking app based on GIT.",
6+
"license": null,
7+
"main": "./dist/electron/main.js",
8+
"dependencies": {
9+
"@hitask/electron-ga": "^3.0.0",
10+
"assert": "^1.4.1",
11+
"axios": "^0.18.0",
12+
"custom-electron-titlebar": "^2.1.0",
13+
"dayjs": "^1.7.2",
14+
"decompress": "^4.2.0",
15+
"decompress-unzip": "^4.0.1",
16+
"delay": "^4.0.1",
17+
"directory-tree": "^2.1.0",
18+
"download": "^7.1.0",
19+
"electron-baidu-tongji": "^1.0.2",
20+
"electron-default-menu": "^1.0.1",
21+
"electron-is": "^3.0.0",
22+
"electron-log": "^3.0.1",
23+
"electron-updater": "^4.0.6",
24+
"element-ui": "^2.5.4",
25+
"extend": "^3.0.2",
26+
"file-url": "^2.0.2",
27+
"fs-extra": "^6.0.1",
28+
"git-config-path": "^2.0.0",
29+
"is-invalid-path": "^1.0.2",
30+
"js-md5": "^0.7.3",
31+
"keytar": "^4.3.0",
32+
"local-gitignore": "^1.0.2",
33+
"log4js": "^3.0.6",
34+
"mavon-editor": "^2.6.17",
35+
"mobx": "^5.0.3",
36+
"movue": "^0.3.0",
37+
"natsort": "^2.0.0",
38+
"nedb-promises": "^3.0.0",
39+
"nodegit": "^0.23.0",
40+
"parse-git-config": "^3.0.0",
41+
"parse-github-url": "^1.0.2",
42+
"qs": "^6.5.2",
43+
"quill": "^1.3.6",
44+
"vue": "^2.5.16",
45+
"vue-electron": "^1.0.6",
46+
"vue-i18n": "^8.0.0",
47+
"vue-router": "^3.0.1",
48+
"vuescroll": "^4.7.4"
49+
}
50+
}

database/GitNote/screenshot.png

7.25 KB
Loading

0 commit comments

Comments
 (0)