Skip to content

Commit d6c776e

Browse files
committed
Minor improvement of README.md and .gitignore by Lucas-Wye
1 parent fbfabf5 commit d6c776e

File tree

2 files changed

+28
-12
lines changed

2 files changed

+28
-12
lines changed

.gitignore

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
1+
# binary files
2+
*.so
3+
*.[oa]
4+
*.exe
5+
*.pyc
6+
bin/
17
build
2-
CMakeLists.txt.user
3-
texmacs.1
4-
*.o
5-
*.kdev4
68
.kdev4
9+
*.kdev4
10+
*.py[cod]
11+
*$py.class
12+
__pycache__/
13+
14+
# editor files
15+
*.sln
16+
.idea
717
.vscode
18+
19+
# Mac OS
20+
.DS_Store
21+
*/.DS_Store
22+
23+
# temp files
824
*~
25+
*.log
26+
SVNREV
927
Testing
10-
.idea
28+
texmacs.1
29+
tests/gtest
1130
cmake-build-debug
12-
.DS_Store
13-
*.pyc
14-
SVNREV
15-
*.log
31+
CMakeLists.txt.user
1632
misc/benchmark/gbench
17-
tests/gtest
18-
bin/

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ TeXmacs runs on all major Unix platforms and Windows. Documents can be saved in
1010
## Documentation
1111
GNU TeXmacs is self-documented. You may browse the manual in the `Help` menu or browse the online [one](http://www.texmacs.org/tmweb/manual/web-manual.en.html).
1212

13+
For developer, see [this](./COMPILE) to compile the project.
14+
1315
## Contributing
1416
Please report any [new bugs](http://www.texmacs.org/tmweb/contact/bugs.en.html) and [suggestions](http://www.texmacs.org/tmweb/contact/wishes.en.html) to us. It is also possible to [subscribe](http://www.texmacs.org/tmweb/help/tmusers.en.html) to the <texmacs-users@texmacs.org> mailing list in order to get or give help from or to other TeXmacs users.
1517

16-
You may contribute patches for TeXmacs using the [patch manager](http://savannah.gnu.org/patch/?group=texmacs) on Savannah or using the [pull request](https://github.com/texmacs/GNUTeXmacs/pulls) on Github. Since we are using SVN on Savannah, PRs won't be directly accepted on Github. We will `git apply` the patch into SVN repo if the PR is accepted. And we will close the PR and change the title to `[SVN] xxx` after applying the PR.
18+
You may contribute patches for TeXmacs using the [patch manager](http://savannah.gnu.org/patch/?group=texmacs) on Savannah or using the [pull request](https://github.com/texmacs/texmacs/pulls) on Github. Since we are using SVN on Savannah, PRs won't be directly accepted on Github. We will `git apply` the patch into SVN repo if the PR is accepted. And we will close the PR and change the title to `[SVN] xxx` after applying the PR.

0 commit comments

Comments
 (0)