Skip to content

ENE/comporg

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEPRECATED!
This is old stuff and not maintained anymore.
If you are looking for a better alternative check this out: BOMER

Introduction

Component Organizer (or CO for short) is a small, cross-platform and very easy to use application targeted at all those people who have electronics as at least an hobby.

It's main purpose is to avoid to google for the same datasheet hundreds of times or "hey I know I already downloaded that datasheet but I can't find it now on my computer", so you spend less time gathering information and have more time to look at the hardware which off course is the best part :-).

Features

You can easily search and manage your datasheets and application notes. You can as well manage your component's stock and be alerted when it's on low stock or without stock.

A component can be an amplifier, a microcontroller, but also a development board or a compiler. All those things that have an heavy document describing it's features and/or how it works.

It doesn't require installation and so it's very portable. You can use it in a pendrive or with sparkleshare allowing your data to be always acessible.

Requirements

for building:

  • Git
  • C++ compiler (e.g. gcc)
  • GNU Make
  • Qt4

for development:

  • QtCreator (2.4.1)
  • Qt (4.7.4)

Building

The easiest way to build CO is by using QtCreator IDE.

Depending on the OS used (Win, Linux, Mac OS), an OS-specific file is created under the _build/release/bin directory. For example, if you are on Windows a file named comporg_win.exe will be created.

QtCreator IDE

  1. Download it and Qt 4.7.4 from Qt's website: qt.nokia.com
  2. Run QtCreator
  3. Open the CO's project file: comporg.pro
  4. Build > Run qmake
  5. Build > Build All

Debian/Ubuntu

git clone https://github.com/rasgo-xyz/Component-Organizer
cd Component-Organizer
sudo aptitude install libqt4-dev qt4-qmake
qmake
make
ls -al _build/release/bin/comporg_unix

FreeBSD/PC-BSD

git clone https://github.com/rasgo-xyz/Component-Organizer
cd Component-Organizer
qmake-qt4 -project comporg.pro
qmake-qt4 -o makefile Component-Organizer.pro
gmake

Arch/Antergos

git clone https://github.com/rasgo-xyz/Component-Organizer
cd Component-Organizer/
sudo pacman -Ss qt4
qmake-qt4
make

Using

CO it's pretty straight forward to use. Just start by adding components through File > Add new... > Component. By right-clicking on the table you'll get a context menu with everything you need to manage your items.

Contributing (!)

Git is a wonderful thing. If you aren't familiar with it I would recomend you to google for some tutorials, there are several good ones out there. Then, fork/clone CO!

Do whatever modifications you find useful, don't be afraid to scratch on it. The next step is to make a pull request. And that's it. Simple, isn't it?

There are however some priorities in the CO's further development. See the wiki for more details.

Bug reports, suggestions and feature requests, please use the "Issues" tab. They are very welcomed!

"Hacking"

CO uses a XML file to store data. You can find it on /data/data.xml. Open it with a text editor (I like Notepad++) to see how info is organized. This file means that you can edit your data directly and then reflect those changes on CO.

For example, to add a new package you just have to add a line like this:

<package name="mynewpackage"/> between the <packages>

The same principle applies to everything else, you just have to understand how data is organized. However, you can also mess up all your data this way!

Before make any changes make sure you backup data.xml. If you are not sure if you are doing things right just don't edit it and use CO's interface.

About

Manage and organize your electronic components, datasheets and application notes on Arch LInux

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 98.5%
  • QMake 1.5%