commit 529e55b4b4aead4ea5f1a06ec241e954cc368788 Author: NunoSempere Date: Fri Mar 10 16:25:45 2023 -0600 feat: v.0.1 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..0aad499 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,1875 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Best-README-Template/LICENSE.txt at master · othneildrew/Best-README-Template · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ Skip to content + + + + + + + + + + + + +
+ +
+ + + + + + + +
+ + + + + + +
+ + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + +
+ + + + + +
+ + +
+ + + + + + + +Permalink + +
+ +
+
+ + + master + + + + +
+
+
+ Switch branches/tags + +
+ + + +
+ +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+ +
+ +
+ + +
+ +
+
+
+

Name already in use

+
+
+ +
+
+
+
+ +
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch? +
+ +
+
+ + +
+
+ + + + Go to file + +
+ + + + +
+
+
+ + + +
+
+
+ +

+ othneildrew/Best-README-Template + is licensed under the +

+

MIT License

+

A short and simple permissive license with conditions only requiring preservation of copyright and license notices. Licensed works, modifications, and larger works may be distributed under different terms and without source code.

+
+ +
+
+

Permissions

+
    +
  • + + + Commercial use + +
  • +
  • + + + Modification + +
  • +
  • + + + Distribution + +
  • +
  • + + + Private use + +
  • +
+
+
+

Limitations

+
    +
  • + + + Liability + +
  • +
  • + + + Warranty + +
  • +
+
+
+

Conditions

+
    +
  • + + + License and copyright notice + +
  • +
+
+
+
+

+ This is not legal advice. + Learn more about repository licenses. +

+
+ + + + + + + +
+ +
+
+ + + + +
+ + Latest commit + d9406e6 + Oct 2, 2021 + + + + + + History + + +
+
+
…o top link
+ +
+ +
+
+ + + 1 + + contributor + + +
+ +

+ Users who have contributed to this file +

+
+ + + + + + +
+
+
+
+ + + + + + + + + +
+ +
+ + +
+ + 21 lines (17 sloc) + + 1.04 KB +
+ +
+ + + + +
+ +
+
+
+
+ +
+
+
+
+
+ + + Open in GitHub Desktop +
+
+
+
+
+ + + +
+
+ + + +
+
+ +
+ +
+
+ + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MIT License
+
Copyright (c) 2021 Othneil Drew
+
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
+
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+
+ + + +
+ +
+ + + + +
+ + +
+ + +
+
+ + + +
+ +
+ + +
+ +
+ + +
+
+ +
+ + + + + + + + + + + + + + + + + + +
+ +
+ + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..622860f --- /dev/null +++ b/README.md @@ -0,0 +1,60 @@ +## About + +This is a project for creating a desktop app for Asana on Linux, and in particular on Ubuntu/Debian (although the idea should be easily adaptable to other systems). The core idea is to use [rose](https://github.com/mini-rose/rose), a minimalistic browser written in C based on webkit2 and gtk, in the same way that one would use Chrome for Electron. But the advantage is that on my system rose takes ~68M of memory, whereas slack takes something like ~733M. + +Technical requirements are medium. You should be familiar with Linux systems and willing to debug things yourself if and when you get any errors. But your beard need not be long. + +## Built with + +- [rose](https://github.com/mini-rose/rose) + +## Getting started + +### Requirements + +Install [rose](https://github.com/mini-rose/rose): + +``` +git clone https://github.com/mini-rose/rose +cd rose +bash build.sh +sudo bash install.sh +``` + +When the above doesn't work, you may want to either apply or take inspiration from [these instructions](https://github.com/mini-rose/rose/blob/master/user-scripts/ubuntu-20.04/install-with-dependencies.sh) for installing rose with its dependencies in Ubuntu 20.04. + +### Installation + +Once you've installed rose to `/bin/rose`, install this repository: + +``` +git clone [this repository] +cd asana-for-linux +sudo ln -sf /bin/rose /bin/asana ## this is so that the xdg-open gods recognize asana as its own thing +chmod +x asana.desktop +sudo cp asana.desktop /usr/share/applications +``` + +Then you should wait for a bit until the xdg-open gods recognize the asana app in the Ubuntu/Debian search bar. + +## FAQ + +**Is this legal? Do you own the copyright for the Asana logo?** + +I'm guessing that the Asana people are not going to care either way + +**What is the status of this repository?** + +This repository is provided as is. I don't make any guarantees of merchantability. I consider it pretty much feature complete. + +## To do + +- Make it so that typing the `asana` command on the command line also opens the asana app. + +## Contributing + +Contributions are welcome + +## License + +Distributed under the MIT License diff --git a/asana.desktop b/asana.desktop new file mode 100755 index 0000000..a1f1ecb --- /dev/null +++ b/asana.desktop @@ -0,0 +1,9 @@ +#!/usr/bin/env xdg-open +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Exec= /usr/bin/asana https://app.asana.com/0/home +Name=Asana +Comment=An app to help teams manage their work +Icon=/home/loki/Documents/core/software/fresh/C/asana-for-linux/assets/asana-logo-round.png diff --git a/assets/asana-logo-large.png b/assets/asana-logo-large.png new file mode 100644 index 0000000..6b1caf1 Binary files /dev/null and b/assets/asana-logo-large.png differ diff --git a/assets/asana-logo-round.png b/assets/asana-logo-round.png new file mode 100644 index 0000000..a32ee67 Binary files /dev/null and b/assets/asana-logo-round.png differ diff --git a/assets/asana-logo-small.png b/assets/asana-logo-small.png new file mode 100644 index 0000000..21d622b Binary files /dev/null and b/assets/asana-logo-small.png differ