diff --git a/.all-contributorsrc b/.all-contributorsrc index 26f28f43..04d554bf 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -41,6 +41,33 @@ "ideas" ] }, + { + "login": "snajdovski", + "name": "Stefan Najdovski", + "avatar_url": "https://avatars2.githubusercontent.com/u/42580385?v=4", + "profile": "https://stefannajdovski.com/", + "contributions": [ + "design" + ] + }, + { + "login": "aypie", + "name": "Alex Potterson", + "avatar_url": "https://avatars3.githubusercontent.com/u/57075012?v=4", + "profile": "http://aypie.design/", + "contributions": [ + "design" + ] + }, + { + "login": "KevinNThomas", + "name": "Kevin Thomas", + "avatar_url": "https://avatars2.githubusercontent.com/u/15370181", + "profile": "http://kevinthomas.dev", + "contributions": [ + "financial" + ] + }, { "login": "Shadowspear123", "name": "Shadowspear123", @@ -54,15 +81,6 @@ "userTesting" ] }, - { - "login": "KevinNThomas", - "name": "Kevin Thomas", - "avatar_url": "https://avatars2.githubusercontent.com/u/15370181", - "profile": "http://kevinthomas.dev", - "contributions": [ - "financial" - ] - }, { "login": "e-edgren", "name": "Airikr", @@ -83,6 +101,15 @@ "translation" ] }, + { + "login": "farzadx", + "name": "farzadx", + "avatar_url": "https://avatars2.githubusercontent.com/u/70059397?v=4", + "profile": "https://github.com/farzadx", + "contributions": [ + "translation" + ] + }, { "login": "kernoeb", "name": "kernoeb", diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md index d1c87691..9804a8f7 100644 --- a/.github/CODE_OF_CONDUCT.md +++ b/.github/CODE_OF_CONDUCT.md @@ -1,76 +1,5 @@ -# Contributor Covenant Code of Conduct +# Contributor Code of Conduct -## Our Pledge +This project adheres to No Code of Conduct. We are all adults. We accept anyone's contributions. Nothing else matters. -In the interest of fostering an open and welcoming environment, we as -contributors and maintainers pledge to making participation in our project and -our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender identity and expression, -level of experience, education, socio-economic status, nationality, personal -appearance, race, religion, or sexual identity and orientation. - -## Our Standards - -Examples of behavior that contributes to creating a positive environment -include: - -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members - -Examples of unacceptable behavior by participants include: - -* The use of sexualized language or imagery and unwelcome sexual attention or - advances -* Trolling, insulting/derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or electronic - address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Our Responsibilities - -Project maintainers are responsible for clarifying the standards of acceptable -behavior and are expected to take appropriate and fair corrective action in -response to any instances of unacceptable behavior. - -Project maintainers have the right and responsibility to remove, edit, or -reject comments, commits, code, wiki edits, issues, and other contributions -that are not aligned to this Code of Conduct, or to ban temporarily or -permanently any contributor for other behaviors that they deem inappropriate, -threatening, offensive, or harmful. - -## Scope - -This Code of Conduct applies both within project spaces and in public spaces -when an individual is representing the project or its community. Examples of -representing a project or community include using an official project e-mail -address, posting via an official social media account, or acting as an appointed -representative at an online or offline event. Representation of a project may be -further defined and clarified by project maintainers. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at im@austinhuang.me. All -complaints will be reviewed and investigated and will result in a response that -is deemed necessary and appropriate to the circumstances. The project team is -obligated to maintain confidentiality with regard to the reporter of an incident. -Further details of specific enforcement policies may be posted separately. - -Project maintainers who do not follow or enforce the Code of Conduct in good -faith may face temporary or permanent repercussions as determined by other -members of the project's leadership. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, -available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see -https://www.contributor-covenant.org/faq +For more information please visit the [No Code of Conduct](https://github.com/domgetter/NCoC) homepage. \ No newline at end of file diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index b126cbed..7c462f88 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -5,9 +5,9 @@ ## Contributing -Thank you for your interest in InstaGrabber! +Thank you for your interest in Barinsta! -Our vision of InstaGrabber is an open source true alternative of the official Instagram app. It is Austin's pursuit of a libre life that lead him to this app during its abandonment, and it was one unresolved bug that made him have the enthusiasm in implementing numerous features for this app, despite having 0 knowledge of Java beforehand. +Our vision is an open source true alternative of the official Instagram app. It is Austin's pursuit of a libre life that lead him to this app during its abandonment, and it was one unresolved bug that made him have the enthusiasm in implementing numerous features for this app, despite having 0 knowledge of Java beforehand. As we grow in popularity, it becomes apparent that we are short on hands. Every contribution counts! @@ -23,26 +23,7 @@ Check errors are for reference only. Try to minimize them, but usually they don' **NEVER touch the l10n-master branch.** It's automatically managed by Crowdin. -### Structure - -It is preferred that you read the scripts yourself, as my understanding (and presentation) may be basic. - -* `awais.instagrabber` - * `activities`: Scripts directly binding to each view. Assigns `adapters`. - * `adapters`: Scripts used to present a list of `models` from `asyncs` into `activities`. - * Those inside `viewholder` are for frontend, while others are for backend. - * `asyncs`: Scripts used to communicate with Instagram. Returns `models` which is sent to `adapters`. - * `asyncs.i`: Scripts that fetch data from `i.instagram.com`, except DM. - * `asyncs.direct_messages`: As the name suggests, communication scripts used for DM. - * `customviews`: Custom frontend components for this app. - * `dialogs`: Scripts directly binding to dialogs (i.e. those that are nested in the main view). - * `fragments.directmessages`: Scripts directly binding to each fragment ("small views") within `DirectMessageActivity` in `activities`. - * `interfaces`: Custom backend components for this app. - * `models`: Data structure for Instagram API responses from `asyncs`. - * `utils`: Various tools. - * `MainHelper.java` is basically an extension of `activities.main`. -* `awaisomereport`: Crash reporter. Shouldn not require too much maintenance. -* `thoughtbot.expandableadapter`: These are for the follower comparison view, which allows grouping users. +The legacy branch is no longer maintained. ### I can't code Java, but I want to! @@ -68,6 +49,6 @@ You can... * translate it [![badge](https://badges.crowdin.net/instagrabber/localized.svg)](https://crowdin.com/project/instagrabber) * promote it (reddit [r/AndroidApps](https://www.reddit.com/r/androidapps/comments/i30tpp/instagrabber_an_open_source_instagram_client/), YouTube [HowToMen](https://www.youtube.com/watch?v=1Um2ZJG_mB4), [Ekşi Sâzlük](https://eksisozluk.com/instagrabber--6643143)) -* star it [![stars](https://img.shields.io/github/stars/austinhuang0131/instagrabber.svg?style=social&label=Star)](https://github.com/austinhuang0131/instagrabber/stargazers) +* star it [![stars](https://img.shields.io/github/stars/austinhuang0131/instagrabber.svg?style=social&label=Star)](https://github.com/austinhuang0131/barinsta/stargazers) Happy contributing! diff --git a/.project b/.project new file mode 100644 index 00000000..800b8ec3 --- /dev/null +++ b/.project @@ -0,0 +1,28 @@ + + + InstaGrabber + Project instagrabber created by Buildship. + + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + + org.eclipse.buildship.core.gradleprojectnature + + + + 1600117114918 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/.settings/org.eclipse.buildship.core.prefs b/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 00000000..fa615039 --- /dev/null +++ b/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,13 @@ +arguments= +auto.sync=false +build.scans.enabled=false +connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) +connection.project.dir= +eclipse.preferences.version=1 +gradle.user.home= +java.home=/Library/Java/JavaVirtualMachines/jdk-12.0.1.jdk/Contents/Home +jvm.arguments= +offline.mode=false +override.workspace.settings=true +show.console.view=true +show.executions.view=true diff --git a/README.md b/README.md index 5b2b3a3a..a521b3cd 100755 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ -InstaGrabber +InstaGrabber -## InstaGrabber +## Barinsta [![Awesome Humane Tech](https://raw.githubusercontent.com/humanetech-community/awesome-humane-tech/main/humane-tech-badge.svg?sanitize=true)](https://github.com/humanetech-community/awesome-humane-tech) [![Open Source Love](https://badges.frapsoft.com/os/v3/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com) [![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](./LICENSE) -[![GitHub stars](https://img.shields.io/github/stars/austinhuang0131/instagrabber.svg?style=social&label=Star)](https://GitHub.com/austinhuang0131/instagrabber/stargazers/) +[![GitHub stars](https://img.shields.io/github/stars/austinhuang0131/instagrabber.svg?style=social&label=Star)](https://GitHub.com/austinhuang0131/barinsta/stargazers/) -For documentation, visit [InstaGrabber.AustinHuang.me](https://instagrabber.austinhuang.me). +We're previously known as InstaGrabber and still in process of rebranding. For documentation, visit [InstaGrabber.AustinHuang.me](https://instagrabber.austinhuang.me). ### Download **By installing, you indicate your acceptance of [Disclosure and Privacy Policy](https://instagrabber.austinhuang.me/disclosure).** - + -Version status: ![F-Droid](https://img.shields.io/f-droid/v/me.austinhuang.instagrabber.svg) vs. ![GitHub](https://img.shields.io/github/release/austinhuang0131/instagrabber.svg?logo=github) +Version status: ![F-Droid](https://img.shields.io/f-droid/v/me.austinhuang.instagrabber.svg) vs. ![GitHub](https://img.shields.io/github/release/austinhuang0131/barinsta.svg?logo=github) Profile Post @@ -30,12 +30,12 @@ Version status: ![F-Droid](https://img.shields.io/f-droid/v/me.austinhuang.insta * Use [GitHub issues](https://github.com/austinhuang0131/instagrabber/issues) when possible. * Email: [InstaGrabber@AustinHuang.me](mailto:instagrabber@austinhuang.me) (Synced to GitHub issues) -* Chat (Bridged to each other): [![Matrix](https://img.shields.io/badge/Matrix-@InstaGrabber:matrix.org-000000?logo=matrix)](https://matrix.to/#/#instagrabber:matrix.org) [![Telegram](https://img.shields.io/badge/Telegram-@Grabber__App-2CA5E0?logo=telegram)](https://t.me/grabber_app) [![Discord](https://img.shields.io/badge/Discord-YtEDzN2-7289da?logo=discord&logoColor=white)](https://discord.gg/YtEDzN2) [![Gitter](https://img.shields.io/badge/Gitter-InstaGrabber/General-ed1965?logo=gitter)](https://gitter.im/instagrabber/general) +* Chat (Bridged to each other): [![Matrix](https://img.shields.io/badge/Matrix-@Barinsta:matrix.org-000000?logo=matrix)](https://matrix.to/#/#barinsta:matrix.org) [![Telegram](https://img.shields.io/badge/Telegram-@Grabber__App-2CA5E0?logo=telegram)](https://t.me/grabber_app) [![Discord](https://img.shields.io/badge/Discord-YtEDzN2-7289da?logo=discord&logoColor=white)](https://discord.gg/YtEDzN2) [![Gitter](https://img.shields.io/badge/Gitter-InstaGrabber/General-ed1965?logo=gitter)](https://gitter.im/instagrabber/general) ### Contributors -[![All Contributors](https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square)](#contributors-) +[![All Contributors](https://img.shields.io/badge/all_contributors-16-orange.svg?style=flat-square)](#contributors-) Prominent contributors are listed here in the [all-contributors](https://allcontributors.org/) specifications. See [emoji key](https://allcontributors.org/docs/en/emoji-key). @@ -48,19 +48,22 @@ Prominent contributors are listed here in the [all-contributors](https://allcont
Austin Huang

πŸ’» πŸ“– πŸ’¬ 🌍 πŸ€”
Ammar Githam

πŸ’» 🎨 πŸ€” 🚧 πŸ’¬
AWAiS

πŸ’» πŸ€” -
Shadowspear123

πŸ“ πŸ› πŸ€” πŸ’¬ πŸ““ +
Stefan Najdovski

🎨 +
Alex Potterson

🎨
Kevin Thomas

πŸ’΅ -
Airikr

πŸ’¬ πŸ€” +
Shadowspear123

πŸ“ πŸ› πŸ€” πŸ’¬ πŸ““ +
Airikr

πŸ’¬ πŸ€”
Galang23

πŸ’¬ 🌍 +
farzadx

🌍
kernoeb

🌍
Ten_Lego

🌍 + +
MoaufmKlo

🌍
peterge1998

🌍
RAMAR-RAR

🌍 - -
wagnim

🌍 @@ -73,7 +76,7 @@ Prominent contributors are listed here in the [all-contributors](https://allcont This app is originally made by [@AwaisKing](https://github.com/AwaisKing) on [GitLab](https://gitlab.com/AwaisKing/instagrabber). - InstaGrabber + Barinsta (ex-InstaGrabber) Copyright (C) 2019 AWAiS Copyright (C) 2020 Austin Huang Ammar Githam @@ -91,6 +94,8 @@ This app is originally made by [@AwaisKing](https://github.com/AwaisKing) on [Gi You should have received a copy of the GNU General Public License along with this program. If not, see . +Logo by [Stefan Najdovski](https://stefannajdovski.com/). Used under license. + [![Snyk Vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/austinhuang0131/instagrabber)](https://snyk.io/test/github/austinhuang0131/instagrabber) [![LGTM Alerts](https://img.shields.io/lgtm/alerts/github/austinhuang0131/instagrabber)](https://lgtm.com/projects/g/austinhuang0131/instagrabber) [![LGTM Grade](https://img.shields.io/lgtm/grade/java/github/austinhuang0131/instagrabber)](https://lgtm.com/projects/g/austinhuang0131/instagrabber) diff --git a/app/.classpath b/app/.classpath new file mode 100644 index 00000000..32d66919 --- /dev/null +++ b/app/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/app/.project b/app/.project new file mode 100644 index 00000000..4f457503 --- /dev/null +++ b/app/.project @@ -0,0 +1,34 @@ + + + app + Project app created by Buildship. + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.buildship.core.gradleprojectnature + + + + 1600117114944 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/app/.settings/org.eclipse.buildship.core.prefs b/app/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 00000000..b1886adb --- /dev/null +++ b/app/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,2 @@ +connection.project.dir=.. +eclipse.preferences.version=1