Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .sandstorm/asset/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
**2.3.3**

* c10cbb44 Update sandstorm script
* 18882d42 Formatting coding style
* cb538fda Update sandstorm package configuration
* c6dcb10c Change behavior of print mode button
* 5cb0b630 Revert "Remove publish button (unnecessary on sandstorm)"

**2.3.2**

Merge 2.3.2 from upstream (hackmdio/codimd).

Check [release note](https://hackmd.io/@codimd/release-notes/%2F%40codimd%2Fv2_3_0) to know more new new features.

# 2.2.0

Merge 2.2.0 and from upstream (hackmdio/codimd)
Expand Down
5 changes: 2 additions & 3 deletions .sandstorm/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ set -euo pipefail
cd /opt/app/

bash bin/setup
yarn --version

yarn run build
npm run build

yarn --production
npm install --production
1 change: 0 additions & 1 deletion .sandstorm/launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export CMD_PROTOCOL_USESSL=false
export CMD_URL_ADDPORT=false
export CMD_USECDN=false
export CMD_LOG_LEVEL=debug
export CMD_PROTOCOL_USESSL=false
export CMD_SINGLE_NOTE=true
export CMD_DISABLE_EXPORT=true
export CMD_DEFAULT_PERMISSION=freely
Expand Down
2 changes: 1 addition & 1 deletion .sandstorm/sandstorm-pkgdef.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = (

appVersion = 22, # Increment this for every release.

appMarketingVersion = (defaultText = "2.3.2"),
appMarketingVersion = (defaultText = "2.3.3"),
# Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing.

Expand Down
2 changes: 1 addition & 1 deletion .sandstorm/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ innodb_autoextend_increment = 1
EOF

## NODE package
npm install -g node-gyp sequelize-cli yarn
npm install -g node-gyp sequelize-cli

# Install library which needed by node package
apt-get install -y g++ libssl-dev
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ More info: https://github.com/hackmdio/codimd

## Changelog

**2.3.3**

* c10cbb44 Update sandstorm script
* 18882d42 Formatting coding style
* cb538fda Update sandstorm package configuration
* c6dcb10c Change behavior of print mode button
* 5cb0b630 Revert "Remove publish button (unnecessary on sandstorm)"

**2.3.2**

Merge 2.3.2 from upstream (hackmdio/codimd).
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CodiMD-Sandstorm",
"version": "2.3.2",
"version": "2.3.3",
"description": "Realtime collaborative markdown notes on all platforms.",
"keywords": [
"Collaborative",
Expand Down Expand Up @@ -138,7 +138,7 @@
"gist-embed": "~2.6.0",
"graceful-fs": "~4.2.1",
"handlebars": "^4.7.6",
"highlight.js": "~9.15.9",
"highlight.js": "~10.4.1",
"html-webpack-plugin": "~4.0.0-beta.2",
"imports-loader": "~0.8.0",
"intelli-espower-loader": "~1.0.1",
Expand Down
Loading