Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reworking the dev guide #68

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
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
13 changes: 0 additions & 13 deletions .editorconfig

This file was deleted.

15 changes: 10 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
_assets/css/vendor/* linguist-vendored
_assets/js/plugins/* linguist-vendored
_assets/js/vendor/* linguist-vendored
assets/fonts/* linguist-vendored
assets/js/vendor/* linguist-vendored
assets/fonts/* linguist-vendored
assets/js/main.min.js linguist-vendored
assets/js/lunr/* linguist-vendored
assets/js/plugins/* linguist-vendored
assets/js/vendor/* linguist-vendored
_sass/minimal-mistakes/vendor/* linguist-vendored
CHANGELOG.md text merge=union
docs/_docs/18-history.md text merge=union

*.md text
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/console-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Console Issue
about: Some issue with your console after/during following the guide?
---

**System model**

<!--Your console model, eg. Old 3DS, New 3DS, 2DS-->

**Firmware version**

<!--Your console system version, you can check this in System Settings-->

**Luma3DS Version(If applicable)**

<!--If you have Luma3DS installed, your Luma3DS version-->

**Guide Section(If applicable)**

<!--Section of the guide you had this issue-->
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/guide-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Guide Issue
about: Did you find some issue with the guide?
---

**Pages with issue(s)**

<!--Links to the page(s) with the issue(s).-->

**Description of the issue(s)**

<!--Describe the issue(s) with the page(s) above.-->
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: bundler
directory: "/"
schedule:
interval: daily
open-pull-requests-limit: 10
3 changes: 3 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**Description**

<!--What does this pull request do? Why is it needed?-->
29 changes: 21 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
*.gem
# Vim
*~
*.sw[p_]

# Sublime Text
*.sublime-project
*.sublime-workspace

# Ruby Gem
*.gem
.bundle
Gemfile.lock
**/vendor/bundle

# Node.js and NPM
node_modules
npm-debug.log*
package-lock.json
codekit-config.json

# macOS
.DS_Store

# Jekyll generated files
.jekyll-cache
.jekyll-metadata
.sass-cache
_asset_bundler_cache
_site
codekit-config.json
example/_site
node_modules
npm-debug.log*
/vendor
torrents
Gemfile.lock
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "_theme"]
path = _theme
url = https://github.com/hacks-guide/minimal-mistakes
branch = hacks-guide
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
source "https://rubygems.org"
gem 'jekyll-redirect-from'
gemspec
gem "jekyll-sass-converter", "~>2.2"
gem "wdm", "~> 0.1.0" if Gem.win_platform?
gem 'minimal-mistakes-hacks-guide', :path => '_theme'
7 changes: 6 additions & 1 deletion LICENSE.txt → LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
The MIT License (MIT)

Copyright (c) 2017 Michael Rose
(Jekyll Theme)
Copyright (c) 2013-2020 Michael Rose and contributors

(Nord skin)
Copyright (c) 2016-2021 Arctic Ice Studio [email protected] (https://www.arcticicestudio.com)
Copyright (c) 2016-2021 Sven Greb [email protected] (https://www.svengreb.de)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
76 changes: 0 additions & 76 deletions Rakefile

This file was deleted.

Loading