Skip to content

Commit

Permalink
Adding links to credits which resolves dvorka#927
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorka committed Feb 17, 2019
1 parent 3982a93 commit 6281b26
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# .travis.yml Travis CI configuration file for MindForger
#
# Copyright (C) 2014-2018 Martin Dvorak <[email protected]>
# Copyright (C) 2014-2019 Martin Dvorak <[email protected]>
#
#
# This program is free software; you can redistribute it and/or
Expand Down
40 changes: 20 additions & 20 deletions CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ Acknowledgements to contributors:

Big thanks to 3rd party FOSS content authors:

* John Gruber (Markdown - spec)
* Qt Company (Qt - lib and code)
* Christian Loose (CuteMarkEd - inspiration and code)
* David Parsons (Discount - Markdown rendering - library)
* Davis E. King (MITIE - AI/NLP library and tools for information extraction - library)
* GitHub (CMark GFM - Markdown rendering - library)
* Jean-loup Gailly, Mark Adler (Zlib - library)
* Google (Google C++ unit testing framework)
* Knut Sveidqvist (Mermaid.js - diagrams and flowcharts rendering in HTML)
* AMS and SIAM (MathJax.js - math rendering in HTML)
* Ivan Sagalaev (Highlight.js - source code syntax highlighting)
* John Gruber ([Markdown](https://daringfireball.net/projects/markdown/) - spec)
* Qt Company ([Qt](https://www.qt.io/) - lib and code)
* Christian Loose ([CuteMarkEd](https://cloose.github.io/CuteMarkEd/) - inspiration and code)
* GitHub ([CMark GFM](https://github.com/github/cmark-gfm) - Markdown rendering - library)
* David Parsons ([Discount](http://www.pell.portland.or.us/~orc/Code/discount/) - Markdown rendering - library)
* Davis E. King ([MITIE](https://github.com/mit-nlp/MITIE) - AI/NLP library and tools for information extraction - library)
* Jean-loup Gailly, Mark Adler ([Zlib](https://sourceforge.net/projects/gnuwin32/) - library)
* Google ([Google C++ unit testing framework](https://github.com/google/googletest))
* Knut Sveidqvist ([Mermaid.js](https://mermaidjs.github.io/) - diagrams and flowcharts rendering in HTML)
* AMS and SIAM ([MathJax.js](https://www.mathjax.org/) - math rendering in HTML)
* Ivan Sagalaev ([Highlight.js](https://highlightjs.org/) - source code syntax highlighting)
* Danny Allen (Primary icon theme store.kde.com - icons)
* Travis CI (travis-ci.org - continous integration tests and builds infra - Ubuntu, macOS)
* AppVeyor CI (appveyor.com - continous integration tests and builds infra - Windows
* Raimund Hocke (SikuliX - GUI automation testing)
* Lewis Van Winkle (GENANN - minimal neural network - library)
* Oleander Software (Oleander stemming library - stemmer - library)
* Jamie McGowan (Remarkable - inspiration and code)
* Andrey Smirnov (Aptly - Debian PPAs mgmt tool)
* Apiary (API blueprints - test data)
* Mark Summerfield (Advanced Qt Programming book examples - code snippets)
* Travis CI ([travis-ci.org](https://travis-ci.org/) - continous integration tests and builds infra - Ubuntu, macOS)
* AppVeyor CI ([appveyor.com](https://www.appveyor.com/) - continous integration tests and builds infra - Windows
* Raimund Hocke ([SikuliX](http://sikulix.com/)- GUI automation testing)
* Lewis Van Winkle ([GENANN](https://github.com/codeplea/genann) - minimal neural network - library)
* Oleander Software ([Oleander stemming library](http://www.oleandersolutions.com/stemming/stemming.html) - stemmer - library)
* Jamie McGowan ([Remarkable](https://remarkableapp.github.io/) - inspiration and code)
* Andrey Smirnov ([Aptly](https://www.aptly.info/) - Debian PPAs mgmt tool)
* Apiary ([API blueprints](https://apiary.io/) - test data)
* Mark Summerfield ([Advanced Qt Programming](http://www.qtrac.eu/aqpbook.html) book examples - code snippets)
* Andres Mejia (Aho-Corasick algorithm implementation - code snippets)

See [licenses](./licenses) folder for 3rd party content licensing details.
Expand Down
21 changes: 18 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# appveyor.yml AppVeyor CI configuration file for MindForger
#
# Copyright (C) 2014-2019
#
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

version: 1.49.{build}

skip_commits:
Expand All @@ -9,15 +27,13 @@ environment:

image: Visual Studio 2017


#---------------------------------#
# build configuration #
#---------------------------------#

# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: x64


# build Configuration, i.e. Debug, Release, etc.
configuration: Release

Expand All @@ -39,7 +55,6 @@ before_build:
- git submodule init
- git submodule update


build_script:
- pushd "%M8R_HOME%\deps\cmark-gfm" && mkdir build && cd build && cmake -G "Visual Studio 15 2017 Win64" -DCMAKE_CONFIGURATION_TYPES=Debug;Release -DCMARK_TESTS=OFF -DCMARK_SHARED=OFF .. && cmake --build . --config Release -- /m && cmake --build . --config Debug -- /m && popd
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
Expand Down

0 comments on commit 6281b26

Please sign in to comment.