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

Package Metadata Refresh #5

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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="[email protected]">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 = '[email protected]'
>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>