292844690a
Hard to find a reference for this, but figure it is useful to others as it's fairly common in older HEAT shells (WW2 stuff is why this even came to my attention) and modern fast-acting explosives. It's a bit of an approximation as I had to interpolate the value of the first reference so that it was correct relative to the other values on our wiki (by using two other explosives common to both tables). The second reference in fps converts to roughly the same value in m/s so I'm content to call it good. References: http://axpro.mines.edu/documents/MNGN%20444_Fragmentation%20and%20Safety%20Distances%20_Examples.pdf, p.3 http://dtic.mil/dtic/tr/fulltext/u2/783941.pdf, p.25 |
||
---|---|---|
.. | ||
_includes | ||
_layouts | ||
_posts | ||
css | ||
img | ||
js | ||
squad | ||
src | ||
tools | ||
wiki | ||
_config_dev.yml | ||
_config.yml | ||
.dockerignore | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
404.html | ||
CNAME | ||
docker-compose.yml | ||
Dockerfile | ||
favicon-32.png | ||
favicon.png | ||
Gemfile | ||
google38c2ed88459ce9b8.html | ||
googlebd2887f5a38652f2.html | ||
humans.txt | ||
index.html | ||
manifest.json | ||
news.html | ||
README_DE.md | ||
README_PL.md | ||
README.md | ||
robots.txt | ||
sitemap.xml | ||
team.md | ||
version.html |
Source of https://ace3mod.com/
Updating compiled JavaScript and CSS files
-
Install Node.js
-
Open Command Prompt and navigate to
src
directorycd <ACE3_directory>/docs/src
-
Install Node packages
npm install
On Bash on Ubuntu on Windows also install
nodejs-legacy
in case of errors. -
Update files
grunt
Setting up the Jekyll environment
Using Docker
We include files for Docker to run Jekyll in a separate container. This allows you to not having to install anything apart from Docker on your computer.
Running the Dockerfile
-
Install Docker
-
cd into the
/docs/
directory -
Open Command Prompt and navigate to this directory
cd <ACE3_directory>/docs
-
Build and run the container
docker-compose up
-
Navigate to http://localhost:4000
Manually
Installing prerequisites
Windows (CMD)
-
Install Ruby 2.0.0-p648 (x64)
-
Install Ruby DevKit for 2.0 (x64)
-
Open Command Prompt and navigate to this directory
cd <ACE3_directory>/docs
-
Install
bundler
gemgem install bundler
-
Install required gems through
bundler
bundle install
Debian / Bash on Ubuntu on Windows
-
Open Bash and navigate to this directory
cd <ACE3_directory>/docs
-
Install
make
andgcc
sudo apt-get install make gcc
-
Install
ruby2.0
,ruby2.0-dev
andruby-switch
sudo apt-add-repository ppa:brightbox/ruby-ng sudo apt-get update sudo apt-get install ruby2.0 ruby2.0-dev ruby-switch
-
Set Ruby version
sudo ruby-switch --set ruby2.0
-
Install
bundler
sudo gem install bundler
-
Install required gems through bundler
bundle install
-
In case of sticky folder error during
bundle install
, execute the following to fix permissionsfind ~/.bundle/cache -type d -exec chmod 0755 {} +
Running
-
Run Jekyll through bundler
bundle exec jekyll serve --future --incremental --config _config_dev.yml
Use
--force_polling
on Bash on Ubuntu on Windows due to a bug preventing watching. -
Navigate to http://localhost:4000