Giter Site home page Giter Site logo

fa24extensions's Introduction

FA24extensions

FrontAccountingERP v2.4.x Extensions Repo

Introduction

The default Extensions repo for the FrontAccounting (FA) Project is at: http://anonymous:[email protected]/

The repo for FA v2.4.x version is at: http://anonymous:[email protected]/2.4/

These FA extensions comprise:

  • Charts
  • Extensions
  • Languages
  • Themes

Methods and Usage

  • All extensions are archived using ar and have an _init folder having a config details file and SHA1 hashes in files.

  • These files have been extracted and unarchived in plain text form (for code) / native binary formats (for images) here.

  • FA Developers are encouraged to fork this project and add / update these extensions, providing pull requests here.

  • The FA project devs can use this for preparing their new versions of pkg files for use within the FA web interface.

  • FA users can update their modules with the changed files alone.

  • Windows users can bulk unarchive zips using: FOR /R %a IN (*.zip) DO "C:\Program Files\7-Zip\7z.exe" x "%a" -y

  • Online SHA1 Hash Generator

  • Online SHA1 checksum

  • Get all sha1sum values in the extension folder with find . -type f -exec sha1sum \{\} \; > abc.txt

  • Generate _init/files having the SHA1sum values for all files from within an extension folder with: find . -type f -not -path "./_init/files" | xargs sha1sum | sed -e 's# \*\.\/# \/#' | awk '{print $2 ": " $1}' > ./_init/files

  • To recursively re-compute _init/files for all the Charts, execute:

cd Charts
for f in `ls ./`
do
  if [ -d "$f" ] && [ "$f" != "./" ] && [ "$f" != "../" ]
  then
    PWDval=`pwd`
    cd "$f"
    find . -type f -not -path "./_init/files" | xargs sha1sum | sed -e 's# \*\.\/# \/#' | awk '{print $2 ": " $1}' > ./_init/files
    cd "$PWDval"
  fi
done

Caveats

  • This repo will be updated only when I have the time.
  • Files here are provided without any warranty / claims / support whatsoever.
  • All copyrights remain those of the respective authors / FA Project.

fa24extensions's People

Contributors

apmuthu avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.