Tasks? Done. That was quick.

Overview

#!/Shabang | Condution

Condution - Open-source, cross-platform task management + collaboration | Product Hunt Condution - Open-source, cross-platform task management + collaboration Condution - Open-source, cross-platform task management + collaboration

This. Is. Condution. A project management system that makes sense and will not burn your pockets out.

Those Download Buttons?

πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ

Also, here's the App Store & Play Store links for y'all phone nerds out there.

The App

Condution is a wonderful electron app built to create a perfectly easy task-management dashboard that's powerful, yet also simple. The inspiration of the project spanned from our long frustration with the current state of productivity software on the internet β€” they are expensive and often complicated to use.

Condution attempts to change this. We want to create an open-source productivity/task-management app that is both simple, and, well, free (but we do take Patreon donations though).

This. Is. (Actually.) Condution.

Features

Condution is a powerful yet incredibly simple check-list application that supports your needs from study, to business, and to life. Bring Condution with you across the globe and let it be your second brain β€” so you can focus on living your best life.

Your Favorite Task-List

Create tasks, manage them in projects, add some tags, set due dates, and repeat them at will. Condution has the whole nine-yards of the core list-making features nailed so you can create and edit anything from grocery lists to hundred-task projects.

Filters and Perspectives

Filter tasks by tag? Check. Filter by projects? Check. Filter by due date? Check. Filter by due date and project with tags and sort tasks based on defer date while hiding everything that's not availale? You bet.

Collaborative Workspaces

create and share "workspaces" by tapping on the "personal workspace" badge found on the upcoming view. These workspaces are collaborative Condution views in which everyone β€” regardless if they have an account β€” can collaborate on Condution!

Tag Weights

Tags are weighted! You can now set a tag to be more "heavy" than others (say.. High Energy with a weight of 10, Low Energy with a weight of 0.5), and these weight values will reflect across various parts of the interface (including a "loading bar" on projects) to give you an intuitive view of how "hard" something will be.

Due + Start Dates (and Times!)

Yes, you heard it right! Unlike some of the other apps out there, we know that timing is important to people! Every task is hidden until a certain time and due at precisely at a time, so you know your day can be managed right down to your needs.

Sequential and Parallel Projects!

Some tasks can't really be done without others before it being done first, and we understand that. Tasks blocked in a sequential project could be hidden if needed, and shown again when ready.

The Team

We are Shabang, a software development company aiming to design innovative solutions for interesting issues with fun and creative products.

We happen also to be a group of students from the silicon valley wanting to make this world slightly better with technology.

Developing n' Building

Thanks for developing with us! Our preferred package manager is yarn. If you don't know what that is, teach yourself the ways of the Soydev.

We assume here that you have node 12+ installed. If you don't, do it. When we use $ROOT in these docs, we mean the root of the repository.

First, a quick note on cloning.

Begin by cloning the project at https://github.com/Shabang-Systems/Condution.

The default branch should be the main development branch, and the branch master is the currently released version.

This package has submodules! When you clone, make sure to clone submodules along with it by either git clone --recursive or, after you clone, git submodule init then git submodule update.

Firebase Connection

After cloning the package (with Submodules!), you need to add a lovely file into $ROOT/src/backend/ called secrets.json. It contains your Firebase key objects (to power the Engine), which you need to gather following these instructions. Here's an example secrets.json:

{
    "dbkeys": {
        "deploy": {
            "apiKey": "...",
            "authDomain": "...",
            ...
            "appId": "..."
        },
        "debug": {
            "apiKey": "...",
            "authDomain": "...",
            ...
            "appId": "..."
        }
    }
}

We use two different Firebase projects for debug and deploy respectively. If you are only debugging, no need to include a different set of keys for deploy.

The Yarn CLI

secrets.json in, you are ready to Conduct (verb: to write Condution)! Get all of the necessary project dependencies by issuing the command yarn in $ROOT. Just yarn.

You probably also need the Ionic CLI tools, which you can install by running npm install -g @ionic/cli.

With everything installed, execute your favourite CLI command to get started!

`yarn` \
   `ionic:dist` β€” builds optimized web version/build folder
   `ionic:runios` β€” runs the dev server + ios hooks
   `ionic:rundroid` β€” runs the dev server + android hooks
   `electron:run` β€” runs electrn hooks only. you need to start the dev server with any of :point_up_2:

The actual build command has not been written yet for v1.0, but it's probably going to be yarn platform:build or something to that effect.

Good luck! Let us know if you have any questions on the Discord or in the issues.

Contributing?

We love contributions! You are welcome to contribute, just keep in mind that we prefer 4 spaces over tabs.

Thank you!

Thank you for supporting us on this project. We want to give a special shout out to the parteons that have supported us. Thanks to Greirson, cyberic, Martin, and Reidel Law Firm for their support!

We could not be here without this community, your insightful feedback, and the support of our generous Patrons. Thank you for using our application, sticking with us, and supporting us along the way.


Designed with ❀️ and πŸ₯— by #!/Shabang

Comments
  • BUG-daterow-ignores-inbox

    BUG-daterow-ignores-inbox

    Describe the bug The daterow ignores unsorted tasks with due dates.

    To Reproduce Steps to reproduce the behavior:

    1. Go to 'Upcoming'
    2. Add something to inbox!
    3. Change due date to sometime this week
    4. See error

    Expected behavior Number in daterow changes to account for unsorted tasks in the inbox

    Desktop (please complete the following information):

    • OS: MacOS 10.15
    • Browser: Condution
    • Version: Beta-v0.2.3_build1M

    Additional context Discord source

    bug ᨁ flow-ux πŸ„β€β™‚οΈ 
    opened by Exr0n 17
  • BUG Big Sur app corner whiteness

    BUG Big Sur app corner whiteness

    Describe the bug App border radius causes problems in macOS Big Sur. See this: Screen Shot 2020-07-31 at 4 55 59 PM Notice how the corners are white instead of #f4f4f4.

    To Reproduce Steps to reproduce the behavior:

    1. Open the app in macOS BS

    Expected behavior No colorful corners, also rounded corners.

    Desktop (please complete the following information):

    • OS: macOS Big Sur 11.0 Beta (20A5323l)
    • Browser: Condution
    • Version: beta-v0.2.3beta.1

    Additional context Slack has the same problem, although more obviously: Screen Shot 2020-07-31 at 4 58 08 PM Discord, however, solves this. What I guess is happening is that they have window border: transparent in their main.js. Screen Shot 2020-07-31 at 5 00 02 PM Spark averts this, but ends up causing another problem somehow with the edge not aligning. We used to have this issue but I don't think this applies anymore. Screen Shot 2020-07-31 at 5 00 36 PM

    bug ᨁ 
    opened by Jemoka 10
  • FEAT Local backup of online account data

    FEAT Local backup of online account data

    Had a brief time when I couldn't login, so I couldn't access my data. Having the ability to at least have a local backup of my data would make me significantly more comfortable using condution, especially as the program/app is still new.

    It would be nice if each of the desktop clients (Mac, Windows, Linux) stored a local copy of the task list somewhere. On Linux with the appimage this is obviously a bit clunky, but I think it's necessary regardless.

    Preferably, the file would be saved in a format that is both computer and human readable, maybe just

    projectName:task:description:start:end
    

    of course, this is only an example, whatever the separation character it'd likely need to be something that is invalid for input in the actual gui, to make parsing easy.

    feature πŸš„ interaction ☞ desktop πŸ–₯ pending βœ‹ 
    opened by VegaDeftwing 9
  • BUG 'Due soon' in Completed

    BUG 'Due soon' in Completed

    Describe the bug Checkboxes appear red in Completed. While not serious, it is a little silly.

    To Reproduce Steps to reproduce the behavior:

    1. Set a task to be due tomorrow.
    2. Complete it.
    3. Go to "Completed".
    4. Notice that the task is still orange. Oh no!

    Expected behavior Task reverts back to normal color in Completed as it's... well, completed.

    Desktop (please complete the following information):

    • OS: Shouldn't really matter, but OSX 10.13
    • Version: beta-v0.2.3_build1_M
    bug ᨁ needs-triage πŸ“© niceties 🌷 flow-ux πŸ„β€β™‚οΈ 
    opened by quantumish 8
  • Bump lodash from 4.17.15 to 4.17.19

    Bump lodash from 4.17.15 to 4.17.19

    Bumps lodash from 4.17.15 to 4.17.19.

    Release notes

    Sourced from lodash's releases.

    4.17.16

    Commits
    Maintainer changes

    This version was pushed to npm by mathias, a new releaser for lodash since your current version.


    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    opened by dependabot[bot] 7
  • Settings, Keybinds, and Keybord-Nav UI Version 3

    Settings, Keybinds, and Keybord-Nav UI Version 3

    image

    image

    image

    Settings page, keybind editor, 1.2.0 booya!

    99.978% of the credit goes to @TheEnquirer as the engineering manager (and engineer and tester and developer) on this release.

    Closes #55 Closes #160 Closes #247 Closes #105 Closes #264

    opened by Jemoka 6
  • FEAT completeable projects

    FEAT completeable projects

    Is your feature request related to a problem? Please describe. Projects don't disappear when its contents are all completed.

    Describe the solution you'd like Being able to do so, perhaps as a toggle.

    Additional context A la OmniFocus, from quantumish#3800

    feature πŸš„ interaction ☞ 
    opened by Jemoka 6
  • Beta v0.1.3

    Beta v0.1.3

    This. Is. Beta v0.1.3

    Release Notes

    You will realize that the bundle number of this build is v0.1.3-beta2 but not! beta1. Why is that, you ask? Beta1 had some stability improvements and other general drag ghosting prevention, but it ended up being so buggy that I didn't even bring it to the team for final approval. Beta2 addresses the issues, amount others: some color changes, project filters in perspective recursive bug fixes (DFS, booya!), etc. This is probably what we show on the keynote.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes
    13. Performance things!
    14. Better Artwork Courtesy of Lynn Yang
    15. Better repeating tasks
    16. Stability, stability, stability (with significant performance improvements!)

    Things that you will be able to enjoy

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka )

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    opened by Jemoka 6
  • Bump electron from 9.1.1 to 9.4.0 in /old

    Bump electron from 9.1.1 to 9.4.0 in /old

    Bumps electron from 9.1.1 to 9.4.0.

    Release notes

    Sourced from electron's releases.

    electron v9.4.0

    Release Notes for v9.4.0

    Fixes

    • Added Electron DLLs like libGLESv2.dll to symbol server. #26967 (Also in 10, 11, 12)
    • Fixed systemPreferences.effectiveAppearance returning systemPreferences.getAppLevelAppearance(). #26881 (Also in 10, 11, 12)
    • Fixed an issue where event.reply could sometimes not deliver a reply to an IPC message when cross-site iframes were present. #26928 (Also in 10, 11, 12)
    • Fixed an issue where some buttons were un-clickable in some BrowserViews with draggable regions enabled. #26745 (Also in 10, 11)
    • Fixed an issue whereby a corrupted async_hooks stack would crash the renderer when throwing some errors in the renderer process. #26748 (Also in 10, 11)
    • Fixed an occasional crash on Windows related to NativeViewHost::SetParentAccessible. #26950 (Also in 10, 11, 12)
    • Fixed usage of --disable-dev-shm-usage for apps using --no-sandbox on linux. #26806

    Other Changes

    • Backported the fix to CVE-2020-16024: Heap buffer overflow in UI. #26831
    • Security: backport fix for 1150649. #26897
    • Security: backported fix for 1137603. #26893
    • Security: backported fix for 1141350. #26895
    • Security: backported the fix to CVE-2020-16014: Use after free in PPAPI. #26856
    • Security: backported the fix to CVE-2020-16015: Insufficient data validation in WASM. #26859
    • Security: backported the fix to CVE-2020-16022: Insufficient policy enforcement in networking. #26861

    electron v9.3.5

    Release Notes for v9.3.5

    Fixes

    • Fixed <webview> render-process-gone event dispatch. #26576
    • Fixed LC_ALL environment variable getting changed in Electron. #26508 (Also in 10, 11)
    • Fixed debug.log files being created under working directory on windows. #26267 (Also in 10)
    • Fixed draggable regions stops working when devtools is opened on macOS. #26506 (Also in 10, 11)

    Other Changes

    • Backported the fix to CVE-2020-16017: Browser UAF when detaching a provisional frame. #26477
    • Fixed value of getSystemVersion() on Big Sur. #26430
    • Security: backported fix for 1143772. #26400
    • Security: backported fix for 1144489. #26397
    • Security: backported fix for chromium:1133527. #26412
    • Security: backported fix for chromium:1137608. #26409
    • Security: backported fix for chromium:1139398. #26406

    Unknown

    • Re-enable Rosetta on Apple Silicon devices. #26572 (Also in 7.3, 8, 10, 11)

    electron v9.3.4

    Release Notes for v9.3.4

    Fixes

    • Fixed an issue where Hover Text on macOS Catalina did not work without VoiceOver also being enabled. #26244 (Also in 10, 11)

    ... (truncated)

    Commits
    • f37c1ff Bump v9.4.0
    • 5c8e7e8 fix: restrict sendToFrame to same-process frames by default (#26928)
    • 36b1f8f fix: Upload all *.dll.pdb to symbol server (#26967)
    • e83bd9b fix: Avoid crashing in NativeViewHost::SetParentAccessible on Windows 10 (#26...
    • c2136b6 chore: cherry-pick 290fe9c6e245 from v8 (#26897)
    • a574285 chore: cherry-pick 3abc372c9c00 from chromium (#26895)
    • 559c008 chore: cherry-pick d8d64b7cd244 from chromium (#26893)
    • 2d41c02 chore: cherry-pick ecdec1fb0f42 from chromium (#26867)
    • 662810f chore: cherry-pick bbc6ab5bb49c from chromium (#26861)
    • 0065e3d fix: Propagate --disable-dev-shm-usage to child processes (#26806)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    opened by dependabot[bot] 5
  • BUG Text in

    BUG Text in "Condution Yourself" needs updating to reflect UI

    Describe the bug Quite a minor bug and a quick fix β€” The "Condution Yourself" tutorial project says to tap the three vertical dots, but after some searching I found the button is actually a vertical/horizontal arrowed line toggle. Presumably the UI was tweaked but the text remains the same in Condution Yourself.

    To Reproduce Steps to reproduce the behavior:

    1. In Condution app on macOs, go to 'Condution Yourself' tutorial project.
    2. See the "Tap the three vertical dots β†—" text, but no vertical dots on UI.

    Expected behavior The text should refer to the actual button that is there now.

    Desktop (please complete the following information):

    • OS: macOS
    • Browser: Chrome
    • Version: v1.0.2_build0_M

    Additional context Thanks for what looks like a great tool!

    bug ᨁ aftercare/docs πŸ“‘ niceties 🌷 flow-ux πŸ„β€β™‚οΈ 
    opened by TheDowdy 4
  • BUG Inconsistent Due Times

    BUG Inconsistent Due Times

    Describe the bug Due times require some persistence to be set correctly.

    To Reproduce Steps to reproduce the behavior:

    1. Make a new task.
    2. Set a due date for another day at 1:23 PM
    3. Click away to another perspective
    4. Click back and notice how the due time reset to 12:00 AM

    Expected behavior Due dates should not change as soon as I turn my back on them.

    Desktop (please complete the following information):

    • OS: MacOS X 10.13.6
    • Version: beta-v0.2.3_build1_M
    bug ᨁ needs-triage πŸ“© 
    opened by quantumish 4
  • Bump express from 4.17.1 to 4.17.3 in /scripts

    Bump express from 4.17.1 to 4.17.3 in /scripts

    Bumps express from 4.17.1 to 4.17.3.

    Release notes

    Sourced from express's releases.

    4.17.3

    4.17.2

    Changelog

    Sourced from express's changelog.

    4.17.3 / 2022-02-16

    4.17.2 / 2021-12-16

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump qs from 6.5.2 to 6.5.3

    Bump qs from 6.5.2 to 6.5.3

    Bumps qs from 6.5.2 to 6.5.3.

    Changelog

    Sourced from qs's changelog.

    6.5.3

    • [Fix] parse: ignore __proto__ keys (#428)
    • [Fix] utils.merge: avoid a crash with a null target and a truthy non-array source
    • [Fix] correctly parse nested arrays
    • [Fix] stringify: fix a crash with strictNullHandling and a custom filter/serializeDate (#279)
    • [Fix] utils: merge: fix crash when source is a truthy primitive & no options are provided
    • [Fix] when parseArrays is false, properly handle keys ending in []
    • [Fix] fix for an impossible situation: when the formatter is called with a non-string value
    • [Fix] utils.merge: avoid a crash with a null target and an array source
    • [Refactor] utils: reduce observable [[Get]]s
    • [Refactor] use cached Array.isArray
    • [Refactor] stringify: Avoid arr = arr.concat(...), push to the existing instance (#269)
    • [Refactor] parse: only need to reassign the var once
    • [Robustness] stringify: avoid relying on a global undefined (#427)
    • [readme] remove travis badge; add github actions/codecov badges; update URLs
    • [Docs] Clean up license text so it’s properly detected as BSD-3-Clause
    • [Docs] Clarify the need for "arrayLimit" option
    • [meta] fix README.md (#399)
    • [meta] add FUNDING.yml
    • [actions] backport actions from main
    • [Tests] always use String(x) over x.toString()
    • [Tests] remove nonexistent tape option
    • [Dev Deps] backport from main
    Commits
    • 298bfa5 v6.5.3
    • ed0f5dc [Fix] parse: ignore __proto__ keys (#428)
    • 691e739 [Robustness] stringify: avoid relying on a global undefined (#427)
    • 1072d57 [readme] remove travis badge; add github actions/codecov badges; update URLs
    • 12ac1c4 [meta] fix README.md (#399)
    • 0338716 [actions] backport actions from main
    • 5639c20 Clean up license text so it’s properly detected as BSD-3-Clause
    • 51b8a0b add FUNDING.yml
    • 45f6759 [Fix] fix for an impossible situation: when the formatter is called with a no...
    • f814a7f [Dev Deps] backport from main
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump decode-uri-component from 0.2.0 to 0.2.2

    Bump decode-uri-component from 0.2.0 to 0.2.2

    Bumps decode-uri-component from 0.2.0 to 0.2.2.

    Release notes

    Sourced from decode-uri-component's releases.

    v0.2.2

    • Prevent overwriting previously decoded tokens 980e0bf

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2

    v0.2.1

    • Switch to GitHub workflows 76abc93
    • Fix issue where decode throws - fixes #6 746ca5d
    • Update license (#1) 486d7e2
    • Tidelift tasks a650457
    • Meta tweaks 66e1c28

    https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.0...v0.2.1

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump electron from 13.1.7 to 18.3.7 in /electron

    Bump electron from 13.1.7 to 18.3.7 in /electron

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • Bump electron from 13.1.4 to 18.3.7

    Bump electron from 13.1.4 to 18.3.7

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

    You can disable automated security fix PRs for this repo from the Security Alerts page.

    dependencies javascript 
    opened by dependabot[bot] 0
  • FEAT save state to and load state from cloud storage

    FEAT save state to and load state from cloud storage

    Is your feature request related to a problem? Please describe. No, only that one should not to be restricted to using the app on only one machine

    Describe the solution you'd like

    • save state to and load state from cloud storage
    • to be able to access todo-lists on any device.

    My understanding so far, is that condution saves its state in browser cache/storage.
    There are many cloud storage providers such as google-drive, dropbox, onedrive, box etc.
    There are javascript cloud storage adapters that perhaps interface with many storage providers.
    saving state via ical could be another way saving state via webdav could be another way

    One may then also need the following. These could be filed as follow on bugs if and when condution supports cloud storage.

    • to ensure some synchronization mechanism so that data not clobbered by simultaneous access.
    • to ensure some encryption/decryption so that data is safe on 3rd party provider

    Additional context na

    feature πŸš„ needs-triage πŸ“© 
    opened by hgkamath 0
Releases(v1.1.1)
  • v1.1.1(Jul 14, 2021)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there. Also available on your friendly-neighborhood Samsung and Huawei stores β€” look up "Condution" and it should show up.


    Release Notes

    Drag'n'drop, Markdown, and Mach 1 Speed

    Phew! It's been a while. We have been hard at work creating a new modular backend that serves at blazing fast speeds.

    Go ahead and open a large project and you'll see the difference immediately! We also were able to bring a few early interfaces changes to you. You will notice that the description field now supports Markdown, which is great for those of you who write long-form essays in your tasks (or just want links...) The drag-and-drop experience has also been vastly improved, with a new beautiful drop animation to complement the app. Check it out!

    Next up on the blocks

    We are currently diverting most of our development time and resources towards merging and stabilizing self-hosting with the new backend. If you want to stay up to date on our progress with that you can check it out here!

    People that you should thank

    @zbuster05 @TheEnquirer @Ban-Ironic-Ohms @Exr0n (Lynn Yang the designer, but she doesn't have a Github account) and our latest contributor @FlyN-Nick (and I guess myself @Jemoka)

    Hopefully, you are now free to be productive people with more QOL fixes. πŸ˜„

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-1.1.1-mac.zip(87.54 MB)
    Condution-1.1.1.AppImage(88.73 MB)
    Condution-1.1.1.dmg(90.37 MB)
    Condution-v1.1.1-build34.apk(18.27 MB)
    Condution.Setup.1.1.1.exe(65.02 MB)
    Condution.Setup.1.1.1.exe.zip(65.01 MB)
    Condution_1.1.1_amd64.snap(76.37 MB)
    latest-linux.yml(368 bytes)
    latest-mac.yml(515 bytes)
    latest.yml(346 bytes)
  • v1.0.3(Mar 15, 2021)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there. Also available on your friendly-neighborhood Samsung and Huawei stores β€” look up "Condution" and it should show up.


    Release Notes

    Bug fixes and performance improvements

    Implemented Quarterly Repeats & squashed small flies.

    Are you a big business doing things by quarters? Then good news for you! We now have a shortcut to repeat for 3 months at a time, so you get to... repeat by quarters! Nice.

    Next up on the blocks

    We are currently diverting most of our development time and resources towards a new backend. If you want to stay up to date on our progress with that you can check it out here!

    People that you should thank

    @Jemoka @TheEnquirer @Ban-Ironic-Ohms @Exr0n (Lynn Yang the designer, but she doesn't have a Github account) and our latest contributor @FlyN-Nick (and I guess myself @zbuster05 )

    Hopefully, you are now free to be productive people with more QOL fixes. πŸ˜„

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    app-release.apk(15.28 MB)
    Condution-1.0.3-mac.zip(83.38 MB)
    Condution-1.0.3.AppImage(84.30 MB)
    Condution-1.0.3.dmg(86.05 MB)
    Condution.Setup.1.0.3.exe(61.98 MB)
    Condution.Setup.1.0.3.exe.zip(61.98 MB)
    Condution_1.0.3_amd64.snap(72.37 MB)
    latest-linux.yml(368 bytes)
    latest-mac.yml(515 bytes)
    latest.yml(346 bytes)
  • v1.0.2(Feb 17, 2021)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there. Also available on your friendly-neighborhood Samsung and Huawei stores β€” look up "Condution" and it should show up.


    Release Notes

    Bug fixes and performance improvements

    Yet another healthy dose of bug spray for some day 1 bugs! Hopefully this time we are much more bug free...

    Next up on the blocks

    We are trying to work on stability and minor features for the next few months. Check out our issues page (and which issues are expedited) for more info.

    People that you should thank

    @zbuster05 @TheEnquirer @Ban-Ironic-Ohms @Exr0n (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka )

    Hopefully, you are now free to be productive people with fewer bugs. πŸ˜„

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-1.0.2-mac.zip(93.49 MB)
    Condution-1.0.2.AppImage(94.75 MB)
    Condution-1.0.2.dmg(96.39 MB)
    Condution.Setup.1.0.2.exe(70.50 MB)
    Condution.Setup.1.0.2.exe.zip(70.50 MB)
    Condution_1.0.2_amd64.snap(82.19 MB)
    latest-linux.yml(369 bytes)
    latest-mac.yml(517 bytes)
    latest.yml(346 bytes)
  • v1.0.1(Feb 9, 2021)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there. Also avalible on your friendly-neighborhood Samsung and Huawei stores β€” look up "Condution" and it should show up.


    Release Notes

    πŸŽ‰ πŸŽ‰ πŸŽ‰ Condution: One-Point-O πŸŽ‰ πŸŽ‰ πŸŽ‰

    Through collecting community feedback over the past months from this wonderful community and after a sprint of rewrites, we are now proud to present the next evolution in the Condution app!

    Collaborative Workspaces

    Users can now create and share "workspaces" by tapping on the new "personal workspace" badge found on upcoming. These workspaces are collaborative Condution views in which multiple users can work real time on collaborating in an isolated set of projects.

    Task Delegation

    In Workspace mode, you could delegate a task to the personal workspace of any user shared on that workspace. Delegated tasks will be a synced copy of the original task that lands in the upcoming tab of the personal workspace

    Tag Weights

    Tags are now weighted! You could now set a tag to be more "heavy" than others (say.. High Energy with a weight of 10, Low Energy with a weight of 0.5), and these weight values will reflect across various parts of the interface (including a "completion bar" on projects and the all-new calendar view) to give you an intuitive view of how "hard" something will be.

    Task Calendar View

    A new built-in tab comes to Condution! This is a much requested feature by this community. Tasks could now be viewed on a heatmap-style calendar that allows you to see how busy each day is at a glance.

    Upcoming Timeline

    We replaced the one-week datebox on the Upcoming view with an infinitely-scrollable timeline! Tap "show timeline" below the Due-Soon section of Upcoming view and you will see every task with a due date sorted in chronological order.

    Niceties

    We added a plethora of niceties to make the app more fluid and streamlined. Just a few of these niceties include: completable projects, sidebar drag & drop, easy navigation with a quick-switcher and key-binds, deletable and editable tags, an intuitive perspective builder, deletable tasks, and so much more!

    Thank You!

    We could not be here without this community, your insightful feedback, and the support of our generous Patrons.

    Like any project with a database solution behind it, money is needed to feed our servers. If you are interested in supporting us, please visit our Patreon page or get yourself some Condution Merch; we can't thank you enough for your trust in our application + your support.

    And of course, thank you so much using our application, sticking with us, and supporting us along the way.

    Next up on the blocks

    We are trying to work on stability and minor features for the next few months. Check out our issues page (and which issues are expedited) for more info.

    People that you should thank

    @zbuster05 @TheEnquirer @Ban-Ironic-Ohms @Exr0n (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka )

    Hopefully, you are now free to be productive people with fewer bugs. πŸ˜„

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-1.0.1-mac.zip(93.06 MB)
    Condution-1.0.1.AppImage(94.30 MB)
    Condution-1.0.1.dmg(95.95 MB)
    Condution.Setup.1.0.1.exe(70.48 MB)
    Condution.Setup.1.0.1.exe.zip(70.47 MB)
    Condution_1.0.1_amd64.snap(81.78 MB)
    latest-linux.yml(369 bytes)
    latest-mac.yml(517 bytes)
    latest.yml(346 bytes)
  • v0.3.2-beta.0(Oct 17, 2020)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there. Also avalible on your friendly-neighborhood Samsung and Huawei stores β€” look up "Condution" and it should show up.


    Release Notes

    Bug fixes that closes #164 Fixed a bug regarding advanced repeating UI that causes some users to experience unstable task completion of an advanced weekly repeating task.

    Shout out to jmonty108 (MathClassHB) for bringing this up with us!

    A quick note: like any project with a database solution behind it, money is needed to feed our servers. If you are interested in supporting us, please visit our Patreon page or get yourself some Condution Merch; we can't thank you enough for your trust in our application + your support.

    Next up on the blocks

    one-point-o. We are completely renovating the codebase for long term stability, niceties, and overall greatness. Enjoy the familiar Condution with a refreshed interface, new features, and STABILITY!

    => check the one-point-o branch for progress!

    People that you should thank

    @zbuster05 @TheEnquirer @Ban-Ironic-Ohms @Exr0n (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka )

    Hopefully, you are now free to be productive people with fewer bugs.

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.3.2-beta.0-mac.zip(194.98 MB)
    Condution-0.3.2-beta.0-x64.nsis.7z(934.09 MB)
    Condution-0.3.2-beta.0.AppImage(202.24 MB)
    Condution-0.3.2-beta.0.dmg(200.00 MB)
    Condution-Web-Setup-0.3.2-beta.0.exe(676.30 KB)
    Condution_0.3.2-beta.0_amd64.snap(183.76 MB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.3.1-beta.0(Aug 21, 2020)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there. Also avalible on your friendly-neighborhood Samsung and Huawei stores β€” look up "Condution" and it should show up.


    Release Notes

    On-Device mode and Localization!

    One of the most frequent feature request that we've been getting over the last months is "On-Device" mode β€” where you could use Condution completely locally. Well, here it is. On Device Mode. Now you could choose to keep your tasks right on your device β€” while also getting a small performance boost; nice ;)

    To bring Condution to everyone, we have also internationalized the app β€” adding pathways for translations. We are releasing 031 with English and Chinese, German is going out with 032, and many other languages are in the works!

    The keen amongst y'all will realize that version code 030 is missing from Desktop. This, unfortunately, is because 030 was quite buggy during the initial rollout that we had to hold off to do some updates. Hopefully this one is better >.<...

    Next up: 0.3.2 beta β€” German translation thanks to our wonderful community (shout out to Tabloid), and some stability improvements!

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Next up on the blocks

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar #59
    • [ ] A settings page #55

    => check the beta.4 project for progress!

    People that you should thank

    @zbuster05 @TheEnquirer @Ban-Ironic-Ohms @Exr0n (for whom I am typing this up) (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka )

    Hopefully, you are now free to be productive people with fewer bugs.

    With :heart:s and :salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.3.1-beta.0-mac.zip(176.29 MB)
    Condution-0.3.1-beta.0-x64.nsis.7z(296.92 MB)
    Condution-0.3.1-beta.0.AppImage(184.07 MB)
    Condution-0.3.1-beta.0.dmg(181.09 MB)
    Condution-Web-Setup-0.3.1-beta.0.exe(676.30 KB)
    Condution-Web-Setup-0.3.1-beta.0.exe.zip(655.92 KB)
    Condution_0.3.1-beta.0_amd64.snap(166.17 MB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.2.4-beta.0(Aug 5, 2020)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there.


    Release Notes

    Performance improvement and bug fixes

    The latest version on Condution is focused on stability (and a little interface). We improved the mobile experience to be more stable and reliable, as well as responded to some user feedback about the interface: buttons are larger, boxes are rounder, and everything is just a little bit better.

    Next up: [0.3.0 beta]https://github.com/Shabang-Systems/Condution/tree/beta-v0.3.0)! We are quite hyped to bring three highly requested feature β€” settings page, search, and offline support β€” very soon!

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Next up on the blocks

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar #59
    • [ ] A settings page #55
    • [ ] Offline JSON-based mode #88

    => check the beta.3 project for progress!

    People that you should thank

    @zbuster05 @TheEnquirer @Ban-Ironic-Ohms @Exr0n (for whom I am typing this up) (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka )

    Hopefully, you are now free to be productive people with fewer bugs.

    With :heart:s and :salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.2.4-beta.0-mac.zip(157.79 MB)
    Condution-0.2.4-beta.0-x64.nsis.7z(249.27 MB)
    Condution-0.2.4-beta.0.AppImage(181.36 MB)
    Condution-0.2.4-beta.0.dmg(162.02 MB)
    Condution.Web.Setup.0.2.4-beta.0.exe(676.30 KB)
    Condution.Web.Setup.0.2.4-beta.0.exe.zip(655.92 KB)
    Condution_0.2.4-beta.0_amd64.snap(164.06 MB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.2.3-beta.1(Jul 27, 2020)

    :point_right: Direct Download the latest version of Condution here! :point_left:

    Also, here's the App Store & Play Store links for y'all phone nerds out there.


    Release Notes

    (Patch on the (Fixing the (Fix of the))) Big :clap: Beta :clap: Release :clap:!!!

    Bug fixes and proposing improvements!

    In this version, we should've, hopefully, fingers crossed squashed (again) the repeat onboarding bug.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Next up on the blocks

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar #59
    • [ ] A settings page, for sure says @zbuster05#8071 and @TheEnquirer #55
    • [ ] Time tracking integration for tasks #58

    => check the beta.3 project for progress!

    People that you should thank

    @zbuster05#8071 @TheEnquirer @Ban-Ironic-Ohms @Jemoka (for whom I am typing this up) (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Exr0n)

    Hopefully, you are now free to be productive people with fewer bugs.

    With :heart:s and :salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.2.3-beta.1-mac.zip(174.78 MB)
    Condution-0.2.3-beta.1-x64.nsis.7z(816.39 MB)
    Condution-0.2.3-beta.1.AppImage(188.86 MB)
    Condution-0.2.3-beta.1.dmg(179.19 MB)
    Condution.Web.Setup.0.2.3-beta.1.exe(676.30 KB)
    Condution.Web.Setup.0.2.3-beta.1.exe.zip(655.25 KB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.2.3-beta.0(Jul 27, 2020)

    πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ

    Also, here's the App Store & Play Store links for y'all phone nerds out there.


    Release Notes

    (Fixing the (Fix of the)) Big πŸ‘ Beta πŸ‘ Release πŸ‘!!!

    Bug fixes and proposing improvements!

    In this version, we scaled the interface up to better fit smaller devices. In addition, we replaced the large adding bar with a much smaller haptic FAB that would not get in the way. Hopefully, this update, will make everything easier to use over all departments. There are also quite a few changes under the hood, but you, our dear user, don't need to worry about those ;)

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Next up on the blocks

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar #59
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer #55
    • [ ] Time tracking integration for tasks #58

    => check the beta.3 project for progress!

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.2.3-beta.0-mac.zip(174.78 MB)
    Condution-0.2.3-beta.0-x64.nsis.7z(267.24 MB)
    Condution-0.2.3-beta.0.AppImage(181.37 MB)
    Condution-0.2.3-beta.0.dmg(179.19 MB)
    Condution.Web.Setup.0.2.3-beta.0.exe(676.30 KB)
    Condution.Web.Setup.0.2.3-beta.0.exe.zip(655.88 KB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.2.2-beta.1(Jul 23, 2020)

    πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ

    Also, here's the App Store & Play Store links for y'all phone nerds out there.


    Release Notes

    (Fixing the) Big πŸ‘ Beta πŸ‘ Release πŸ‘!!! The most important thing that regular humans care about is probably the Completed view. Our lovely users could not only see tasks they have yet to complete, but also completed before. For some users, this will take a bit to load simply because a lot is there... We will push an update to that following #57.

    There have been many bugs + UX problems reported since the last beta release... Now, we fix them. This includes a better onboarding UI flow, and a few other niceties that would surly make your life better. After this update, old users will have to click the "Let's Sync" option to keep using their old accounts.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Next up on the blocks

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar #59
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer #55
    • [ ] Time tracking integration for tasks #58

    => check the beta.3 project for progress!

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.2.2-beta.1-mac.zip(172.94 MB)
    Condution-0.2.2-beta.1-x64.nsis.7z(252.41 MB)
    Condution-0.2.2-beta.1.AppImage(179.39 MB)
    Condution-0.2.2-beta.1.dmg(177.30 MB)
    Condution.Web.Setup.0.2.2-beta.1.exe(676.31 KB)
    Condution.Web.Setup.0.2.2-beta.1.exe.zip(655.88 KB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.2.1-beta.0(Jul 18, 2020)

    πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ

    Oh, right, this app is now available also for mobile!! on the App Store & Play Store for y'all phone nerds out there.


    Release Notes

    Big πŸ‘ Beta πŸ‘ Release πŸ‘!!! It's good to be back on the Desktop front! A lot has been going on under the hood (not least of which support for mobile). But, there is still a bit that you, lovely desktop users, could appreciate.

    Firstly, check this out:

    Screen Shot 2020-07-17 at 9 19 09 PM

    ooOOO, a datebar, you say. Exactly, Bob, exactly. We have now a navigable "Look-Ahead" feature where you could see your tasks due soon ahead of just 24 hrs β€” now, it's a week. We will be adding calendaring soon as well!

    Also, you will notice that quite a bit more files got uploaded. This is because we have now a Linux AppImage, so all y'all Linux fans could rejoice.

    Lastly, we consolidated the app into a SVA (Single View Application), so enjoy less window-fuss and more smooth transitions. Due to our work under the hood, we will soon be able to offer an online version of Condution as well. Stay tuned!

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes
    13. Performance things!
    14. Better Artwork Courtesy of Lynn Yang
    15. Better repeating tasks
    16. Stability, stability, stability (with significant performance improvements!)

    Things that you will be able to enjoy

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.2.1-beta.0-mac.zip(223.89 MB)
    Condution-0.2.1-beta.0-x64.nsis.7z(253.56 MB)
    Condution-0.2.1-beta.0.AppImage(231.34 MB)
    Condution-0.2.1-beta.0.dmg(229.06 MB)
    Condution.Web.Setup.0.2.1-beta.0.exe(676.29 KB)
    Condution.Web.Setup.0.2.1-beta.0.exe.zip(655.86 KB)
    Condution_0.2.1-beta.0_amd64.snap(212.60 MB)
    latest-linux.yml(391 bytes)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.1.3-beta.4(Jun 27, 2020)

    First of all, thanks to the ever-wonderful @Exr0n, we now have a website! So... πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ


    Release Notes

    This version addresses auto-update issues.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes
    13. Performance things!
    14. Better Artwork Courtesy of Lynn Yang
    15. Better repeating tasks
    16. Stability, stability, stability (with significant performance improvements!)

    Things that you will be able to enjoy

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @Jemoka @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @zbuster05)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.3-beta.4-mac.zip(139.18 MB)
    Condution-0.1.3-beta.4.dmg(143.38 MB)
    latest-mac.yml(546 bytes)
  • v0.1.3-beta.3(Jun 27, 2020)

    First of all, thanks to the ever-wonderful @Exr0n, we now have a website! So... πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ


    Release Notes

    Here, we have some user experience changes that make people happy. `Cause, ye know, we love making people happy! The app is now notarized by Apple, so we are all nice and happy campers contributing Apple's coffers. That also means for you that you won't have any problems opening the app on macOS.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes
    13. Performance things!
    14. Better Artwork Courtesy of Lynn Yang
    15. Better repeating tasks
    16. Stability, stability, stability (with significant performance improvements!)

    Things that you will be able to enjoy

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @Jemoka @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @zbuster05)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.3-beta.3-mac.zip(139.18 MB)
    Condution-0.1.3-beta.3.dmg(143.38 MB)
    latest-mac.yml(546 bytes)
  • v0.1.3-beta.2(Jun 22, 2020)

    First of all, thanks to the ever-wonderful @Exr0n, we now have a website! So... πŸ‘‰ Direct Download the latest version of Condution here! πŸ‘ˆ


    Release Notes

    You will realize that the bundle number of this build is v0.1.3-beta2 but not! beta1. Why is that, you ask? Beta1 had some stability improvements and other general drag ghosting prevention, but it ended up being so buggy that I didn't even bring it to the team for final approval. Beta2 addresses the issues, amount others: some color changes, project filters in perspective recursive bug fixes (DFS, booya!), etc. This is probably what we show on the keynote.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes
    13. Performance things!
    14. Better Artwork Courtesy of Lynn Yang
    15. Better repeating tasks
    16. Stability, stability, stability (with significant performance improvements!)

    Things that you will be able to enjoy

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @Jemoka @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @zbuster05)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.3-beta.2-mac.zip(139.18 MB)
    Condution-0.1.3-beta.2-x64.nsis.7z(106.78 MB)
    Condution-0.1.3-beta.2.dmg(143.35 MB)
    Condution.Web.Setup.0.1.3-beta.2.exe(676.29 KB)
    Condution.Web.Setup.0.1.3-beta.2.exe.zip(655.53 KB)
    latest-mac.yml(546 bytes)
    latest.yml(609 bytes)
  • v0.1.3-beta.0(Jun 13, 2020)

    Hello all! Today the Condution team is proud to bring you our first Beta release! Keep in mind; however, that once again, most of the changes made were focused on bringing you a stable (and significantly more snappy) application. With that said, we are still bringing you all some great quality of life improvements that will hopefully make productivity at least 0.001% easier for you, such as better repeating tasks.

    Side note: like any project with a database solution behind it, we need money to keep it running. This is why we have launched a Patreon page here for anyone and everyone that wants to support this project.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes
    13. Performance things!
    14. Better Artwork Courtesy of Lynn Yang
    15. Better repeating tasks
    16. Stability, stability, stability (with significant performance improvements!)

    Things that you will be able to enjoy

    These are the features yet to be implemented that will be implemented hopefully in the near future (keep in mind that we have a great deal more features in store for all of you).

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @Jemoka @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @zbuster05)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.3-beta.0-mac.zip(120.57 MB)
    Condution-0.1.3-beta.0-x64.nsis.7z(89.63 MB)
    Condution-0.1.3-beta.0.dmg(124.63 MB)
    Condution.Web.Setup.0.1.3-beta.0.exe(676.30 KB)
    latest-mac.yml(546 bytes)
    latest.yml(607 bytes)
  • v0.1.2-alpha.1(Jun 4, 2020)

    This time, get ready for a POINT UPDATE TO A POINT UPDATE!!!! Are you psyched? Because I am!

    With this new-and-improved patch, auto-update runs every so often so you, my dear user, could experience background updates even while using the app! Isn't that fun. We also updated the logo, but you won't notice it. That's for us Retina nerds to rejoice over.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes

    Things that you will be able to enjoy

    These are the features yet to be implemented.

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.2-alpha.1-mac.zip(133.18 MB)
    condution-0.1.2-alpha.1-x64.nsis.7z(896.66 MB)
    Condution-0.1.2-alpha.1.dmg(137.56 MB)
    Condution.Web.Setup.0.1.2-alpha.1.exe(678.31 KB)
    latest-mac.yml(550 bytes)
    latest.yml(614 bytes)
  • v0.1.2-alpha.0(Jun 3, 2020)

    While this release may look less feature-heavy than the ones you have seen in the past, we have been working hard here to bring more stability to this wonderful application. Despite that focus on stability, we have still brought you some quality of life improvements including better perspectives (yay!), but if that wasn't enough we have finally brought you all the draggy draggy action of tasks and subprojects into projects you asked for.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= documentation on the filter syntax!
    9. Mostly bugless natural language input on quick-add and task due dates
    10. Advanced perspective filtering for remaining and available tasks, sort perspectives by their due date
    11. Dragging tasks into projects and subprojects
    12. Bug fixes

    Things that you will be able to enjoy

    These are the features yet to be implemented.

    • [ ] A universal search bar
    • [ ] A settings page, for sure says @zbuster05 and @TheEnquirer

    People that you should thank

    @Exr0n @Jemoka @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @zbuster05)

    Hopefully, you are now free to be productive people with fewer bugs

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.2-alpha.0-mac.zip(129.45 MB)
    condution-0.1.2-alpha.0-x64.nsis.7z(98.24 MB)
    Condution-0.1.2-alpha.0.dmg(133.43 MB)
    Condution.Web.Setup.0.1.2-alpha.0.exe(670.88 KB)
    latest-mac.yml(550 bytes)
    latest.yml(614 bytes)
  • v0.1.1-alpha.3(May 23, 2020)

    Bug fixes and performance improvements.

    In this PR we fix two bugs.

    • [ ] The one where clearing defer dates crashes the app
    • [ ] The one where adding new tags crashes the app

    We really should have caught this earlier.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= no documentation on the filter syntax, good luck!
    9. Mostly bugless natural language input on quickadd and task due dates

    Things that you will be able to enjoy

    These are the features yet to be implemented before even thinking about a beta release candidate.

    • [ ] Bug Squishes
    • [ ] Dragging tasks into things
    • [ ] A universal search bar
    • [ ] A settings page, maybe (just not immediately, but there will be one, at some point, right @zbuster05 @TheEnquirer? They claim there will be one.)

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Have fun! Hope this will be useful (if not today, then soon.)

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.1-alpha.3-mac.zip(127.91 MB)
    condution-0.1.1-alpha.3-x64.nsis.7z(96.93 MB)
    Condution-0.1.1-alpha.3.dmg(131.90 MB)
    Condution.Web.Setup.0.1.1-alpha.3.exe(670.89 KB)
    latest-mac.yml(550 bytes)
    latest.yml(614 bytes)
  • v0.1.1-alpha.2(May 17, 2020)

    This is also the Release Note for the alpha.

    Many (one) moons (months) later, we release a point update. Not very exciting, no, but I (maybe also others on the team?) have APs to take, ok?

    In this version, we patch a few things so that your life is generally smoother.

    1. Updated codebase for backend
    2. Fixed bug where empty sequential projects causes a crash
    3. Fixed bug where dark mode does not update itself on theme switch
    4. Fixed bug where windows have red bars... Thanks @Ban-Ironic-Ohms
    5. Potentially broken auto-updater

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= no documentation on the filter syntax, good luck!
    9. Mostly bugless natural language input on quickadd and task due dates

    Things that you will be able to enjoy

    These are the features yet to be implemented before even thinking about a beta release candidate.

    • [ ] Bug Squishes
    • [ ] Dragging tasks into things
    • [ ] A universal search bar
    • [ ] A settings page, maybe (just not immediately, but there will be one, at some point, right @zbuster05 @TheEnquirer? They claim there will be one.)

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Have fun! Hope this will be useful (if not today, then soon.)

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.1-alpha.2.dmg(131.90 MB)
  • v0.1.1-alpha.1(Apr 29, 2020)

    This is also the Release Note for the alpha.

    Ok so apparently, Β‘wawee! We screwed up a little. For a hot second in the last update nobody could create an account. :sadface:! We patched that now, which is good, otherwise how do we get new users?

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= no documentation on the filter syntax, good luck!
    9. Mostly bugless natural language input on quickadd and task due dates

    Things that you will be able to enjoy

    These are the features yet to be implemented before even thinking about a beta release candidate.

    • [ ] Bug Squishes
    • [ ] Dragging tasks into things
    • [ ] A universal search bar
    • [ ] A settings page, maybe (just not immediately, but there will be one, at some point, right @zbuster05 @TheEnquirer? They claim there will be one.)

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Have fun! Hope this will be useful (if not today, then soon.)

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.1.dmg(131.59 MB)
    Condution.Setup.0.1.1.exe(96.97 MB)
  • v0.1.1-alpha.0(Apr 28, 2020)

    This is also the Release Note for the alpha.

    Hey y'all, guess what? Since we last built, we realized we are actually terrible at making apps and have a lot of bugs. We fixed many of them, and addressed one of the biggest concerns that y'all had: oww my πŸ‘οΈs!

    So we made a πŸ•ΆοΈ mode! You could now set your system dark mode (on macOS and Windows, at least), and you get a glamorous dark theme!

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= no documentation on the filter syntax, good luck!
    9. Mostly bugless natural language input on quickadd and task due dates

    Things that you will be able to enjoy

    These are the features yet to be implemented before even thinking about a beta release candidate.

    • [ ] Bug Squishes
    • [ ] Dragging tasks into things
    • [ ] A universal search bar
    • [ ] A settings page, maybe (just not immediately, but there will be one, at some point, right @zbuster05 @TheEnquirer? They claim there will be one.)

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Have fun! Hope this will be useful (if not today, then soon.)

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.1.dmg(129.94 MB)
    Condution.Setup.0.1.1.exe(95.58 MB)
  • v0.1.0-alpha.0(Apr 21, 2020)

    This is also the Release Note for the alpha.

    You could make accounts now, so for those of your who wants to live on the edge, I guess you could use it. We have implemented all of the major features at this point, aaand hooked up the Firebase. So if you are happy to potentially loose all of your data, I guess go ahead and use this app.

    Things that you could enjoy today

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks
    8. Perspectives <= no documentation on the filter syntax, good luck!

    So, basically anything you could do with a dated list you could do with this app. Right now.

    Things that you will be able to enjoy

    These are the features yet to be implemented before even thinking about a beta release candidate.

    • [ ] Bug Squishes
    • [ ] Dragging tasks into things

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account) (and I guess myself @Jemoka)

    Have fun! Hope this will be useful (if not today, then soon.)

    With :heart:s and :green_salad:s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.1.0.dmg(126.05 MB)
    Condution.Setup.0.1.0.exe(91.99 MB)
  • v0.0.1-alpha.0(Apr 19, 2020)

    This is also the Release Note for the alpha.

    After an actual month of work, we are very pleased to bring you an early, nightly, alpha build! I know, I know, some people pump out beta release candidates in two weeks, but, we are still proud that we made something that kinda-sorta works very nicely.

    Things that you could enjoy today

    Because of the fact we don't have a user creation method, nothing! If you build the app, you need to supply your own Firebase configs.

    But! If you did all of that, you could enjoy...

    1. Task creation/destruction
    2. Project creation/destruction
    3. Tag creation/destruction
    4. Main window, due soon, and coloring
    5. Task/project sorting
    6. Parallel and sequential projects
    7. Repeating tasks

    (Oh, right, we use yarn now.)

    So, basically anything you could do with a dated list you could do with this app. Right now.

    Things that you will be able to enjoy

    These are the features yet to be implemented before even thinking about a beta release candidate.

    • [ ] Custom perspective filtering rules

    Oh, right

    This doesn't really work right now because you, our dear potential user, can't create a user in Condution yet. If you really want, email Houjun at [email protected] and we could try to set you up. This is pretty darn internal right now.

    People that you should thank

    @Exr0n @zbuster05 @TheEnquirer @Ban-Ironic-Ohms (and Lynn Yang the designer, but she doesn't have a Github account)

    Have fun! Hope this will be useful (if not today, then soon.)

    With :heart:s and πŸ₯—s from everyone at #!/Shabang

    Source code(tar.gz)
    Source code(zip)
    Condution-0.0.1-win.zip(89.85 MB)
    Condution-0.0.1.dmg(123.26 MB)
Simple Background Fetch Tasks

Simple Background Fetch Tasks

samrez Ikram 0 Oct 30, 2021
Currency Converter - Free and Quick Converter calculates money quick and easy way to see live foreign exchange rates.

Currency Converter - Free and Quick Converter calculates money quick and easy way to see live foreign exchange rates. This app is available in the App

Tirupati Balan 212 Dec 30, 2022
Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets.

SPAlert Popup from Apple Music & Feedback in AppStore. Contains Done, Heart, Error and other presets. Supports Dark Mode. I tried to recreate Apple's

Ivan Vorobei 1.8k Jan 7, 2023
Swift Property Wrappers, but in Objective-C. And done horribly.

TOPropertyAccessor is an open source, Objective-C abstract class. Similar to Realm's Cocoa API, it uses the dynamic nature of the Objective-C runtime to access the properties of any of its subclasses, and routes calling them through overridable access points.

Tim Oliver 3 May 23, 2021
🧭 SwiftUI navigation done right

?? NavigationKit NavigationKit is a lightweight library which makes SwiftUI navigation super easy to use. ?? Installation ?? Swift Package Manager Usi

Alex Nagy 152 Dec 27, 2022
iOS routing done right. Handles both URL recognition and controller displaying with parsed parameters. All in one line, controller stack preserved automatically!

Developed and Maintained by Ipodishima Founder & CTO at Wasappli Inc. (If you need to develop an app, get in touch with our team!) So what is this lib

null 589 Dec 24, 2022
This project will add done button on TexField and TextViews by just turning on from storyboard.

RTDoneKeyboard Example To run the example project, clone the repo, and run pod install from the Example directory first. Requirements Installation RTD

Rahul Tiwari 0 Oct 29, 2021
This project will add a done button on your UITextField and UITextView

This project will add a done button on your UITextField and UITextView

Botla Venkatesh 0 Nov 23, 2021
A coding challenge done for Blinq

QuickText This is a coding challenge done for Blinq Launch Screen Add message screen Message List screen Edit Messsage screen Message Delete screen iM

null 0 Nov 28, 2021
Native alert from Apple Music & Feedback. Contains Done, Heart & Message and other presets. Support SwiftUI.

SPAlert Popup from Apple Music & Feedback in AppStore. Contains Done, Heart, Error and other presets. Supports Dark Mode. I tried to recreate Apple's

Ivan Vorobei 1.4k Dec 10, 2021
MVVM - Model View ViewModel done on Swift

MVVM Model View ViewModel done on iOS Swift Model–view–viewmodel (MVVM) is a sof

null 0 Jan 19, 2022
Input Validation Done Right. A Swift DSL for Validating User Input using Allow/Deny Rules

Valid Input Validation Done Right. Have you ever struggled with a website with strange password requirements. Especially those crazy weird ones where

Mathias Quintero 37 Nov 3, 2022
Eugene Kazaev 713 Dec 25, 2022
iOS app for keeping track of tasks using to-do lists

ToDo ToDo is a simple app that helps you keep track of tasks. Requirements iOS 15+ iPadOS 15+ License Distributed under the GPLv3 license. See LICENSE

Daniil 3 Apr 23, 2022
Simple Background Fetch Tasks

Simple Background Fetch Tasks

samrez Ikram 0 Oct 30, 2021
A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories.

A todo list iOS app developed with swift5 and coredata to persist data, this app help people organise their tasks on categories. The app is simple, intuitive, and easy to use and update tasks informations.

null 1 Oct 10, 2022
Wrapper class for handling all tasks related to RSA cryptography

RSAWrapper Wrapper class for handling all tasks related to RSA cryptography USAG

null 1 Dec 24, 2021
Demonstration of using Tasks and TaskGroup to thread a calculation.

TasksTest Demonstration of using Tasks and TaskGroup to thread a calculation. The calculation takes place in a separate Swift class that can be reused

null 0 Dec 27, 2021
CRUD - A simple iOS App to manage tasks

CRUD App ⭐ The App ?? A simple iOS App to manage tasks Setup ??‍?? Clone the rep

null 1 Feb 4, 2022
Pomodoro App - an App that helps you perform tasks for a while, following the Pomodoro technique

Pomodoro App - an App that helps you perform tasks for a while, following the Pomodoro technique

Giovanna 3 May 10, 2022