Git Product home page Git Product logo

shotwell's People

Contributors

abrauchli avatar alan01 avatar brunogirin avatar crayxt avatar dankor avatar dmustieles avatar eric-yorba avatar haaninjo avatar jbylund avatar jimbonator avatar jonasbb avatar jordimas avatar mapraro avatar mariobl avatar marv-cz avatar mirosnik1 avatar muzena avatar nazgul77 avatar norbusan avatar phako avatar piotrdrag avatar prescott66 avatar ptierney avatar rffontenelle avatar ricotz avatar sanva avatar sicklylife-jp avatar urbalazs avatar wsteitz avatar zerng07 avatar

Watchers

 avatar

shotwell's Issues

Drop Custom Hash Functions

example: int64_hash

I mean, this cuts down on the size of the codebase a tiny bit... and presumably upstream will spend effort picking a good hash and whatnot.

Rework Import Pipeline

The concurrency of it is all off at the moment. Plus we're doing multiple metadata reads which end up being very expensive.

Goals

  • exactly one metadata read per imported file
  • should be limited by io of copying files to the filesystem containing the import directory
  • ensure only one copier when the source is a camera (otherwise it can lock up?, verify this info)
  • concurrency of writing into sqlite db

Build Helper

#!/bin/bash

set -eux

function install_exiv () {
    export EXIV_VERSION=0.27.3
    ls exiv2-${EXIV_VERSION}-Source.tar.gz || axel https://ftp.osuosl.org/pub/blfs/conglomeration/exiv2/exiv2-${EXIV_VERSION}-Source.tar.gz
    tar -xf exiv2-${EXIV_VERSION}-Source.tar.gz
    (
        cd exiv2-${EXIV_VERSION}-Source
        mkdir -p build
        cd build
        cmake .. -G "Unix Makefiles" > /dev/null
        make -j $(nproc) > /dev/null
        sudo -H make install
    )
}

function install_gexiv () {
    export GEXIV_VERSION=0.12.2
    ls gexiv2-${GEXIV_VERSION}.tar.xz || axel https://download.gnome.org/sources/gexiv2/0.12/gexiv2-${GEXIV_VERSION}.tar.xz
    tar -xf gexiv2-${GEXIV_VERSION}.tar.xz
    (
        cd gexiv2-${GEXIV_VERSION}/
        meson build
        ninja -C build
        sudo -H ninja -C build install
    )
}

function install_shotwell () {
    meson build
    ninja -C build
    ninja -C build test
    sudo -H ninja -C build install
    sudo -H mkdir -p /usr/lib/x86_64-linux-gnu/
    sudo -H cp build/src/plugins/libshotwell-plugin-dev-1.0.so.0 /usr/lib/x86_64-linux-gnu/libshotwell-plugin-dev-1.0.so.0
    sudo -H ldconfig -v > /dev/null
    shotwell --version
}

function main () {
    #install_exiv
    #install_gexiv
    install_shotwell
}

main

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.