-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New UI #423
New UI #423
Conversation
Added sample images to Output section
Great addition, @jywarren - this'll come in handy when including them as samples on the sandbox page, too.
Co-authored-by: Tilda Udufo <mathildaudufo@gmail.com>
Fixes #332 Deleting style.styl to make the code better.
Co-authored-by: Neelam <neelam@mt.iitr.ac.in>
Removed the extra paragraph tag
Fixes #348 Deleting urlParams.js with no code to make the overall code better.
Created a pull request file
Fixes#363
Move Contributing Guidelines to Bottom of README
Bumps [http-server](https://github.com/http-party/http-server) from 14.1.0 to 14.1.1. - [Release notes](https://github.com/http-party/http-server/releases) - [Commits](http-party/http-server@v14.1.0...v14.1.1) --- updated-dependencies: - dependency-name: http-server dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [grunt](https://github.com/gruntjs/grunt) from 1.4.1 to 1.5.3. - [Release notes](https://github.com/gruntjs/grunt/releases) - [Changelog](https://github.com/gruntjs/grunt/blob/main/CHANGELOG) - [Commits](gruntjs/grunt@v1.4.1...v1.5.3) --- updated-dependencies: - dependency-name: grunt dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [grunt-contrib-uglify](https://github.com/gruntjs/grunt-contrib-uglify) from 5.0.1 to 5.2.1. - [Release notes](https://github.com/gruntjs/grunt-contrib-uglify/releases) - [Changelog](https://github.com/gruntjs/grunt-contrib-uglify/blob/main/CHANGELOG) - [Commits](gruntjs/grunt-contrib-uglify@v5.0.1...v5.2.1) --- updated-dependencies: - dependency-name: grunt-contrib-uglify dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [grunt-contrib-concat](https://github.com/gruntjs/grunt-contrib-concat) from 1.0.1 to 2.1.0. - [Release notes](https://github.com/gruntjs/grunt-contrib-concat/releases) - [Changelog](https://github.com/gruntjs/grunt-contrib-concat/blob/main/CHANGELOG) - [Commits](gruntjs/grunt-contrib-concat@v1.0.1...v2.1.0) --- updated-dependencies: - dependency-name: grunt-contrib-concat dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
I have edited the part mentioned in the issue. @TildaDares kindly review this. Thank you.
* Fixed the use of MouseinitEvent in infragram.js * fixed use of initMouseEvent in src/file * fixed Uncaught ReferenceError * Fix initMouseEvent
@jywarren, @TildaDares, @cesswairimu This is the draft UI that we will use to build upon. All feedback, opinions and suggestions are greatly appreciated. At this point, I do not feel like there is a visual hierarchy to this new UI, but perhaps once we add in steps we can achieve this. Please let me know if you would like any specific changes before moving forward. |
Hi @stephaniequintana I first tried merging the README changes we did in #419 -- i see that in the list of commits here, those are listed at the top. That means they were made in relation to the main branch from around the time of #259 -- see how they come just before it: My guess is that since I hadn't merged #419, and those 3 commits aren't squashed into a single commit (which is what happens by default when we merge a PR in GitHub), they were somehow made on top of a non-updated local main branch. I'm not totally sure how all the other commits then got added after that. But the key is that we can fix it pretty easily in a couple ways, and we can avoid it in the future too. First the fixes -- I think we could either just rebase this over a completely up-to-date version of the main branch, OR we could cherry-pick out the following commits which are your new work:
I'll try a rebase to see how it goes... i remember you said it didn't look easy, but I'll first be sure I have an updated main branch, so we'll see... |
Great, I'm glad you made sense of it for me. I'm on the road right now, but will be able to take a closer look at it this afternoon. Thanks, @jywarren |
So what I found was that in GitPod, I tried checking out the main branch
So what I really want to do is rewind the main branch to get back in sync with the
I can rewind to that commit with When i run the And although it's not completely smooth -- i still had to resolve the conflicts in the README manually -- a bit annoying, took a few steps. Maybe I could've run the "skip" command on some of these. But we'll be able to see if any of the README changes went wrong when I open a new PR. Now it's rebased:
OK -- so, looks like it worked but a couple commits somehow persisted in the middle -- i'll try redoing the rebase skipping these.
OK -- that worked -- i just added "drop" to the commits that weren't relevant, during an interactive rebase OK sooooo -- that PR looks great: #426 Now -- how do we avoid this again? Here's the clue -- #419 says: That's a pretty common issue, it happens to folks all the time. You just have to remember to be opening new PRs from a named feature branch and not your main branch. AND you need to occasionally go into your local main branch and Sorry for such a long comment, but I hope walking through each step makes sense! Please let me know if there are things you didn't get here and we can dig into it a bit more. I'm going to merge #426 now! |
@jywarren, thank you! Thanks to your explanation, I see where I went awry. I was certain I had set the remote on my main branch to PL's main branch, but this must have gotten out of sync when I forgot to open a new branch for the #419 README.md update. I apologize for the time you had to take for this, but I do have a much stronger grasp on how/why things ended up the way they did and I will stay on top of what I'm doing and from where. I'm currently working on my planning issues and milestones and hope to be opening the first PR that begins connecting the functions back up soon. |
No worries at all, I'm glad it makes sense! Sounds good and looking forward
to what comes next!!
…On Thu, Jun 23, 2022, 9:44 PM Stephanie Quintana ***@***.***> wrote:
@jywarren <https://github.com/jywarren>, thank you! Thanks to your
explanation, I see where I went awry. I was certain I had set the remote on
my main branch to PL's main branch, but this must have gotten out of sync
when I forgot to open a new branch for the #419
<#419> README.md update. I
apologize for the time you had to take for this, but I do have a much
stronger grasp on how/why things ended up the way they did and I will stay
on top of what I'm doing and from where.
I'm currently working on my planning issues and milestones and hope to be
opening the first PR that begins connecting the functions back up soon.
—
Reply to this email directly, view it on GitHub
<#423 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAF6J2XKJ6LMFBLTSDRBUTVQSA4FANCNFSM5ZNLCHYA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
This is the working draft of the new interface for the sandbox page of infragram.org.
It is the first PR to be implemented from the Infragram - Full-Screen User Interface project #415 (Planning and Discussion).
Functionality will be added and the UI will be updated as necessary in upcoming PRs.
This PR replaces #417, the code has been updated:
Make sure these boxes are checked before your pull request (PR) is ready to be reviewed and merged. Thanks!
@publiclab/reviewers
for help, in a comment below