Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
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
57 changes: 57 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@

################################################################################
# #
# #
# ###############################*********** #
# ###############################************* #
# ###############################************** #
# ###############################**************** #
# ###############################****************** #
# ##########..............................********** #
# ##########..............................********++ #
# ##########..............................******++++ #
# ##########..............................****++++++ #
# ##########..............................***+++++++ #
# ##########..............................*+++++++++ #
# ##########..........++++++++++++++++++++++++++++++ #
# ##########..........+++++++++++++++++++++++++++++ #
# ##########..........++++++++++++++++++++++++++ #
# ##########..........++++++++++++++++++++++++ #
# ##########....................++++++++++++++ #
# ##########....................++++++++++++++++ #
# ##########....................++++++++++++++++++ #
# ##########....................++++++++++++++++++++ #
# ##########....................++++++++++++++++++++ #
# ##########..........::::::::::+++++++++++++++++++ #
# ##########..........++++++++++++++++++++++++++++ #
# #########*..........++++++++++++++++++++++++++++ #
# ########**..........+++++++++++++++++++ #
# ######****..........++++++++++++++++++ #
# ####******..........++++++++++++++++++ #
# ##********..........+++++++++++++++++++ #
# **********..........++++++++++++++++++++ #
# ******************++++++++++++++++++++++ #
# ****************++++++++ +++++++++ #
# **************+++++++++ +++++ #
# *************++++++++++ #
# ***********+++++++++++ #
# #
# #
################################################################################
# #
# FreeCAD Package #
# https://EditorConfig.org #
# #
################################################################################


root = true


[package.xml]
trim_trailing_whitespace = true
insert_final_newline = false
indent_style = space
end_of_line = lf
indent_size = 4
charset = utf-8
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,10 @@ This documentation is fully translatable by users to other languages, and is in
* FreeCAD participates to the [Google Summer of Code](wiki/Google_Summer_of_Code.md) since 2016. Learn how to participate
* All the development communication happens on the [forum](http://forum.freecadweb.org), so be sure to visit it if you are interested in participating.

<br/>
<br/>

*Addon icon commissioned from [IncursioArt]*


[IncursioArt]: https://vgen.co/IncursioArt
70 changes: 70 additions & 0 deletions Resources/Icons/Addon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 49 additions & 17 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<package format="1" xmlns="https://wiki.freecad.org/Package_Metadata">
<name>FreeCAD documentation</name>
<description>The FreeCAD documentation for offline use</description>
<version>1.0.0-alpha</version>
<date>2022-03-14</date>
<maintainer email="yorik@uncreated.net">Yorik van Havre</maintainer>
<license file="LICENSE">CC0-1.0</license>
<url type="repository" branch="main">https://github.com/FreeCAD/FreeCAD-documentation</url>
<!-- No icon yet <icon></icon> -->

<content>
<workbench>
<classname>Documentation</classname>
<subdirectory>./</subdirectory>
</workbench>
</content>
<?xml
standalone = 'no'
encoding = 'UTF-8'
version = '1.0'
?>
<package
format = '1'
xmlns = 'https://wiki.freecad.org/Package_Metadata'
>

<version>1.0.0-alpha</version>
<date>2022-03-14</date>

<description>The complete FreeCAD documentation for local use.</description>
<name>Offline Documentation</name>

<icon>Resources/Icons/Addon.svg</icon>

<maintainer
email = 'yorik@uncreated.net'
>Yorik van Havre</maintainer>

<author>The FreeCAD Wiki Contributor</maintainer>

<license
file = 'LICENSE'
>CC0-1.0</license>


<url type = 'documentation' />
<url type = 'discussion' />
<url type = 'bugtracker' />

<url
branch = 'main'
type = 'repository'
>https://github.com/FreeCAD/FreeCAD-documentation</url>

<url
type = 'readme'
>https://github.com/FreeCAD/FreeCAD-documentation/blob/main/README.md</url>


<content>
<workbench>
<classname>Documentation</classname>
<subdirectory>./</subdirectory>
</workbench>
</content>

</package>