Skip to content

Commit

Permalink
initial commit from svn
Browse files Browse the repository at this point in the history
  • Loading branch information
logxen committed Apr 22, 2012
0 parents commit de90acb
Show file tree
Hide file tree
Showing 22,751 changed files with 4,130,345 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/.svn/
*.o

17 changes: 17 additions & 0 deletions Fritzing.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.TH FRITZING 1 "October 03, 2010" "Fritzing"

.SH NAME
fritzing \- from prototype to product
.SH SYNOPSIS
.B fritzing
.SH DESCRIPTION
.PP
Fritzing is an open-source initiative to support designers, artists, researchers
and hobbyists to work creatively with interactive electronics. We are creating a
software and website in the spirit of Processing and Arduino, developing a tool
that allows users to document their prototypes, share them with others, teach
electronics in a classroom, and to create a pcb layout for professional
manufacturing.
.SH AUTHOR
This manual page was written by Enrique Hernández Bello <[email protected]>,
for the Debian project (and may be used by others).
16 changes: 16 additions & 0 deletions Fritzing.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/sh
appname="Fritzing"
# dirname=`dirname "${0}"`

# new dirname procedure from Volker Kuhlmann
# use -f to make the readlink path absolute
dirname="$(dirname -- "$(readlink -f -- "${0}")" )"

if [ "$dirname" = "." ]; then
dirname="$PWD/$dirname"
fi

LD_LIBRARY_PATH="${dirname}/lib"
export LD_LIBRARY_PATH

"$dirname/lib/$appname" $*
131 changes: 131 additions & 0 deletions FritzingInfo.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
*************************************************
Part of the Fritzing project - http://fritzing.org
Copyright (c) 2007-08 Fachhochschule Potsdam - http://fh-potsdam.de
Fritzing is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Fritzing is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Fritzing. If not, see <http://www.gnu.org/licenses/>.
$Revision: 2063 $:
$Author: [email protected] $:
$Date: 2009-01-03 18:55:48 +0100 (Sat, 03 Jan 2009) $
******************************************************
-->

<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleExecutable</key>
<string>Fritzing</string>
<key>CFBundleGetInfoString</key>
<string>Fritzing 0.39 (b10.26)</string>
<key>CFBundleIconFile</key>
<string>fritzing_icon.icns</string>
<key>CFBundleIdentifier</key>
<string>org.fritzing.Fritzing</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>FRtz</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>fz</string>
</array>
<key>CFBundleTypeName</key>
<string>Fritzing sketch</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>fzz</string>
</array>
<key>CFBundleTypeName</key>
<string>Fritzing shareable sketch</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>fzb</string>
</array>
<key>CFBundleTypeName</key>
<string>Fritzing bin</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>fzp</string>
</array>
<key>CFBundleTypeName</key>
<string>Fritzing part</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>fzm</string>
</array>
<key>CFBundleTypeName</key>
<string>Fritzing module</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>fzpz</string>
</array>
<key>CFBundleTypeName</key>
<string>Fritzing bundled part</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSTypeIsPackage</key>
<false/>
<key>NSPersistentStoreTypeKey</key>
<string>XML</string>
</dict>
</array>
</dict>
</plist>
Loading

0 comments on commit de90acb

Please sign in to comment.