Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: h3rald/hastyscribe
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.0
Choose a base ref
...
head repository: h3rald/hastyscribe
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 6,888 additions and 5,849 deletions.
  1. +131 −0 .github/workflows/add-artifacts-to-current-release.yml
  2. +43 −0 .github/workflows/ci.yml
  3. +2 −1 .gitignore
  4. +0 −45 .travis.yml
  5. +21 −0 LICENSE
  6. +0 −181 LICENSE.md
  7. +21 −61 README.md
  8. +0 −1 build_guide
  9. +0 −37 config.nim
  10. +0 −30 consts.nim
  11. +1 −0 description
  12. +66 −0 doc/-api.md
  13. +25 −0 doc/-credits.md
  14. +31 −0 doc/-getting-started.md
  15. +81 −0 doc/-overview.md
  16. +146 −0 doc/-syntax-block-classes.md
  17. +166 −0 doc/-syntax-block-lists.md
  18. +153 −0 doc/-syntax-block.md
  19. +163 −0 doc/-syntax-inline.md
  20. +108 −0 doc/-syntax.md
  21. +64 −0 doc/-usage.md
  22. +1,262 −3,940 doc/HastyScribe_UserGuide.htm
  23. +6 −828 doc/HastyScribe_UserGuide.md
  24. BIN doc/images/hastyscribe.png
  25. +0 −433 hastyscribe.nim
  26. +0 −24 hastyscribe.nim.cfg
  27. +61 −8 hastyscribe.nimble
  28. +0 −58 nakefile.nim
  29. +0 −56 nifty.json
  30. +715 −0 src/hastyscribe.nim
  31. +12 −0 src/hastyscribe.nim.cfg
  32. +4 −0 src/hastyscribepkg/config.nim
  33. +83 −0 src/hastyscribepkg/consts.nim
  34. +1 −0 src/hastyscribepkg/data/hastyscribe-original.svg
  35. +1 −0 src/hastyscribepkg/data/hastyscribe.svg
  36. +76 −0 src/hastyscribepkg/data/hastystyles.badges.css
  37. +1,323 −0 src/hastyscribepkg/data/hastystyles.css
  38. +1,861 −0 src/hastyscribepkg/data/hastystyles.icons.css
  39. +47 −0 src/hastyscribepkg/data/hastystyles.links.css
  40. +4 −0 src/hastyscribepkg/data/hastystyles.notes.css
  41. +62 −75 { → src/hastyscribepkg}/markdown.nim
  42. +74 −0 src/hastyscribepkg/niftylogger.nim
  43. +74 −0 src/hastyscribepkg/utils.nim
  44. BIN src/hastyscribepkg/vendor/markdown/linux/libmarkdown.a
  45. BIN src/hastyscribepkg/vendor/markdown/macosx/libmarkdown.a
  46. BIN src/hastyscribepkg/vendor/markdown/windows/libmarkdown.a
  47. +0 −71 utils.nim
  48. BIN vendor/libmarkdown_linux_arm.a
  49. BIN vendor/libmarkdown_linux_x64.a
  50. BIN vendor/libmarkdown_linux_x86.a
  51. BIN vendor/libmarkdown_macosx_x64.a
  52. BIN vendor/libmarkdown_windows_x64.a
131 changes: 131 additions & 0 deletions .github/workflows/add-artifacts-to-current-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
name: Add Artifacts to Current Release

# Controls when the action will run.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
release:
name: 'Build and upload artifacts'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest

env:
CHOOSENIM_CHOOSE_VERSION: stable
CHOOSENIM_NO_ANALYTICS: 1

steps:
# Cancel other actions of the same type that might be already running
- name: 'Cancel similar actions in progress'
uses: styfle/cancel-workflow-action@0.6.0
with:
access_token: ${{ github.token }}

# Detects OS and provide Nim-friendly OS identifiers
- name: Detect current OS
id: os
run: echo "os=${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" >> $GITHUB_OUTPUT

# Checks out the repository
- uses: actions/checkout@v2

# Installs libraries
- name: install musl-gcc
run: sudo apt-get install -y musl-tools
if: matrix.os == 'ubuntu-latest'

# Sets path (Linux, macOS)
- name: Update $PATH
shell: bash
run: |
echo "$HOME/.nimble/bin" >> $GITHUB_PATH
echo $GITHUB_WORKSPACE >> $GITHUB_PATH
# Sets path (Windows)
- name: Update %PATH%
run: |
echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "${GITHUB_WORKSPACE}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "C:\msys64\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
if: matrix.os == 'windows-latest'

# Install the Nim compiler
- name: Install Nim
run: |
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
sh init.sh -y
# Temporary Windows-specific fix (missing certificates for nimble)
- name: Install cert (temporary fix, windows only)
run: |
curl https://curl.se/ca/cacert.pem -L -o cacert.pem
if: matrix.os == 'windows-latest'

# Build for Linux
- name: Build (Linux)
run: |
nimble build -v -y --passL:-static -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --mm:refc --opt:size
if: matrix.os == 'ubuntu-latest'

# Build for macOS/Windows
- name: Build (macOS, Windows)
shell: bash
run: |
nimble build -v -y -d:release --mm:refc --opt:size
if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'


# UPX compress (*nix)
- name: UPX
uses: svenstaro/upx-action@v2
with:
files: |
hastyscribe
args: --best --force
if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest'

# UPX compress (Windows)
- name: UPX
uses: svenstaro/upx-action@v2
with:
files: |
hastyscribe.exe
args: --best --force
if: matrix.os == 'windows-latest'

# Retrieve ID and Name of the current (draft) release
- name: "Get current release"
id: current-release
uses: InsonusK/get-latest-release@v1.0.1
with:
myToken: ${{ github.token }}
exclude_types: "release"
view_top: 1

# Package the resulting Linux/macOS binary
- name: Create artifact (Linux, macOS)
run: zip hastyscribe_${{steps.current-release.outputs.tag_name}}_${{steps.os.outputs.os}}_x64.zip hastyscribe
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'

# Package the resulting Windows binary
- name: Create artifact (Windows)
run: Compress-Archive -Path hastyscribe.exe -DestinationPath hastyscribe_${{steps.current-release.outputs.tag_name}}_windows_x64.zip
if: matrix.os == 'windows-latest'

# Upload artifacts to current draft release
- name: "Upload to current release"
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "hastyscribe_v*.zip"
overwrite: true
tag_name: ${{steps.current-release.outputs.tag_name}}
release_id: ${{steps.current-release.outputs.id }}
verbose: true
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [master]
pull_request:
branches: [master]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "ci"
ci:
# The type of runner that the job will run on
runs-on: ubuntu-latest
env:
CHOOSENIM_CHOOSE_VERSION: stable
CHOOSENIM_NO_ANALYTICS: 1

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: install musl-gcc
run: sudo apt-get install -y musl-tools

- name: Update $PATH
run: echo "$HOME/.nimble/bin" >> $GITHUB_PATH

- name: Install Nim
run: |
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
sh init.sh -y
- name: Build
run: |
nimble build -y -d:release --passL:-static --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc
./hastyscribe doc/HastyScribe_UserGuide.md
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
nimcache/
build/
libmarkdown.a
README.htm
hastyscribe.exe
hastyscribe
nakefile
packages/
*.zip
test.md
test.html?
45 changes: 0 additions & 45 deletions .travis.yml

This file was deleted.

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2013-2023 Fabio Cevasco

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading