Git Product home page Git Product logo

bookmarks's People

Contributors

jbmorley avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

bookmarks's Issues

Convenience utility for installing a provisioning profile

Right now there's a bunch of gnarly script that installs a provisioning profile (in scripts/build.sh). This bloats out the build script and makes it a little harder to see what's going on. It'd be great if this could be added to the new build-tools Python script so that it's just a one-liner in the build script.

The code in question is:

# Install the provisioning profile.
file="macos/Bookmarks_Developer_ID_Application.provisionprofile"
uuid=`grep UUID -A1 -a "$file" | grep -io "[-A-F0-9]\{36\}"`
extension="${file##*.}"
PROFILE_DESTINATION=~/"Library/MobileDevice/Provisioning Profiles/$uuid.$extension"
if [ ! -f "$PROFILE_DESTINATION" ] ; then
    echo "Installing provisioning profile '$PROFILE_DESTINATION'..."
    mkdir -p ~/"Library/MobileDevice/Provisioning Profiles/"
    cp "$file" "$PROFILE_DESTINATION"
else
    echo "Provisioning profile installed; skipping"
fi

Support searching for multiple terms

Right now, the search looks for a full string match, meaning it's not possible to, for example, search for multiple tags, or tags and terms together. The search string should be tokenised and the tokens searched for independently. Ideally, this would support quoted strings, and even use of the '-' prefix to indicate strings that should be omitted.

Support incremental fetches from Pinboard

The Pinboard API is designed with incremental fetches in mind. Right now (mostly because we don't store the bookmarks in a database, see #8), we perform a full fetch each and every time we update. This is both slow and puts unnecessary load on Pinboard; we should fix it.

Rename the project from Stuff to Bookmarks

Stuff was the initial name for the project and it's since been renamed to 'Bookmarks'. We should change 'Stuff' to 'Bookmarks' wherever it appears to--at the very least--make the codebase a little less confusing.

Create a test plan

Even though the Bookmarks app is pretty limited in functionality, it would make sense to have a manual test plan fo the basic UI functionality so it's harder to regress when adding new features.

Remove ColorSequence

Cycling through different application tint colours is slow and adds little. We should remove it.

Create a new library to share core code between dedicated macOS and iOS apps

Right now, the macOS app is a Catalyst build of the iOS app, but that leads to a pretty terrible product experience, and--at the moment at least--it's impossible to write an app with a sidebar that feels native.

We should introduce a new library which allows code to be shared between iOS and a new, dedicated macOS app. It's probably cleanest to also introduce a workspace to manage the two apps and library.

The in-app browser doesn't work on macOS

When looking at this issue, it's worth considering whether it makes sense to support the in-app browser on macOS. It's definitely the iOS way of doing things, but it doesn't seem to make as much sense on macOS.

Support saved searches / smart folders

It would be great to allow users to have saved searches (or smart folders) that show up in the sidebar. I would use these to quickly access bookmarks for projects I'm working on.

Explore using a database to store the bookmarks

The current implementation simply caches the bookmarks in a flat file. This makes more complex query operations difficult to achieve, and gets in the way of adding functionality like searching by page contents, deriving additional data, etc. We should explore using something like CoreData or SQLite to store the data.

Explore ways to re-enable test builds on GitHub actions

I had to disable test builds on GitHub actions as the UI host seems to need to be signed for test builds to succeed. It'd be great if there was a way to generate a certificate expressly for this purpose to ensure that genuine app store keys aren't available to GitHub actions.

Enable -werror

Warnings should be treated as errors to ensure the quality of the code remains.

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.