Revali25 / emilyofnewmoon

Standard eBooks Repo of Emily of New Moon by L. M. Montgomery
Other
1 stars 1 forks source link

Review #1 #1

Open lukasbystricky opened 3 months ago

lukasbystricky commented 3 months ago

Hi Ben,

It looks quite good overall, but there are a few things that need some fixing. I had a couple questions about your workflow though. Why did you add the chapters at different points? It would have made more sense to add them all together after splitting them. It looks like after you add them you'd already run clean, did you run anything else on them before adding them?

In general it would be better if your commit messages were more descriptive. For example a18e30b is "Update chapter 10". It looks like you've run clean and changed some semantics, so a better commit message would be "Clean chapter 10, correct semantics". Likewise in 81d3fd3 the message "Formatted text for chapter 9", but the commit is adding chapters 8 and 9, as well as some CSS. You should also consider keeping commits to a single "type" of work. This isn't always easy to do retroactively so it's not essential, but sometimes it is straightforward. For instance b8227d4 "Updated section-id + added some chapter 10 text" should really be two separate commits (and "added some chapter 10 text" is quite vague so that should be re-worded).

Anyways, I've made a first pass. Let me know if there's anything that's not clear or that you need help with. If you're not quite comfortable with Git it might be a bit daunting, but I don't think it's anything too extreme. Feel free to ask here or in the group chat if you have any questions.

Revali25 commented 3 months ago

Thanks for the feedback! I am new at using Git, so I was treating it more like a save function than version control, hence the more disorganized commit history. I was paranoid of losing changes so this ended up meaning that things happened out of order. It's good to learn, so I'll keep that in mind going forward.

I won't lie the step by step guide was kind of confusing for me at points, like I'm not really sure what the function of clean specifically is, besides a nebulous "it cleans up the code." I was also having issues with the python version, it wasn't stated in the step by step guide to use version 3.8-3.11, I was able to figure that part out though. Is there a recommended workflow or like, tips and tricks to efficiently find out the proper semantic inflection tags? Not every tag that I needed to use was in the manual of style, the example that comes to mind is <i> being untagged for ships, which I thought the manual said didn't need an inflection.

I don't know why Kate insists on putting files in the working directory instead of a separate cache location, but any file with "kate" in the name in it is from that, and I always tried to make sure it was removed before a commit; that didn't happen all the time evidently though.

I ran clean and lint before making the final commits, but not throughout the process. I'll keep that in mind going forward as well.

When I get home I'll take a look through the issues and address them.

lukasbystricky commented 3 months ago

Yeah there's definitely a steep learning curve. Basically what clean does is that it properly formats the html. It won't make any structural changes, so the output will look identical if you open the file in a web browser (or if you build the epub), but it makes the code easier to read. Feel free to run clean and typogrify throughout the process if you want, but make sure to run them only when you don't have any uncommitted git changes, otherwise things can get very messy. Also, if you're not already using one, I would highly recommend a graphical interface for git. I use git fork, but there are others.

Semantic inflection is discussed in Section 4.2 of the manual . The se list of element is here and you should also be aware of the z3998 vocabulary. Unsemanticated <i> tags are rather uncommon so there will usually be an appropriate inflection somewhere.

Like I said, there's lots to learn, but I think once you get the hang of it it's not so bad. The Git stuff could be a headache especially if you're new to it, so don't hesitate to ask for any help or clarifications.

Revali25 commented 3 months ago

I'm currently working on removing commit 72598ce, does that mean I have to revert the entire repo to before that change? if I needed to do that, would I copy the files as they are to a separate location, revert to the change, and then copy them back into the repo? I'm seeing stuff about cherry picking, would that make more sense for this?

lukasbystricky commented 3 months ago

So if you do an interactive rebase it should be possible to select the commit you want and drop it entirely. Looking through your commits though there's a lot of extra Kate files that have been added as parts of other commits and these will have to be edited. It can be a bit tricky, but essentially the idea will be to pick those commits, unstage the unwanted files, delete them (regular deletion, not git rm), and then continue with the rebase. Make sure to make a backup copy of the repo because it's not uncommon to mess something up and then it's no longer possible to recover.

Give that a try at least, and if you have trouble with it I can have a look.

Revali25 commented 3 months ago

Yeah those Kate files are annoying as hell. I can't figure out what setting they're under. On my desktop at least the file name is generated randomly each time too so they have to manually be added to gitignore. I'll take a look at that tomorrow to see what I can do about them.

Ben Winstead


From: Lukas Bystricky @.> Sent: Monday, June 10, 2024 4:07:20 PM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

So if you do an interactive rebasehttps://www.sitepoint.com/git-interactive-rebase-guide/ it should be possible to select the commit you want and drop it entirely. Looking through your commits though there's a lot of extra Kate files that have been added as parts of other commits and these will have to be edited. It can be a bit tricky, but essentially the idea will be to pick those commits, unstage the unwanted files, and then delete them (regular deletion, not git rm). Make sure to make a backup copy of the repo because it's not uncommon to mess something up and then it's no longer possible to recover.

Give that a try at least, and if you have trouble with it I can have a look.

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2159192714, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYKGALM2YEHHD2VZG33ZGYBPRAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCNJZGE4TENZRGQ. You are receiving this because you commented.Message ID: @.***>

lukasbystricky commented 3 months ago

Adding something like kate.* to your gitignore should work.

lukasbystricky commented 3 months ago

Hi Ben,

Have you made any progress on this? Let me know if you need any help with anything.

Best wishes,

Lukas

Revali25 commented 2 months ago

Hey Lukas! Apologies for the delay, I just got back from vacation. I’ll be pushing changes later on this coming week.

Ben Winstead


From: Lukas Bystricky @.> Sent: Friday, June 21, 2024 2:44:48 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

Hi Ben,

Have you made any progress on this? Let me know if you need any help with anything.

Best wishes,

Lukas

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2182110163, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYOHOQ6PU67XCP3OF2DZIPDWBAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOBSGEYTAMJWGM. You are receiving this because you commented.Message ID: @.***>

lukasbystricky commented 2 months ago

No need to apologize! There's no rush, just wanted to make sure there weren't any problems.

Revali25 commented 2 months ago

I am following the guide you sent for interactive rebasing, but the command is giving me issues with that. I use the desktop app for commits and pushes and such, but for some reason when trying to run git rebase -i it gives me back cannot rebase: you have unstaged changes. please commit or stash them but when I check the app it says there's no changes made. I tried running git push to see if there was anything but I don't want to add something if I don't know what the changes are.

lukasbystricky commented 2 months ago

What does git status say? It might be that you've somehow created another Kate file, in which case I would update and commit the gitignore file.

Which app do you mean? Are you using a graphical interface for git?

Revali25 commented 2 months ago

I’m using the GitHub official desktop app. I'll take a look at that with the gitignore file.

Ben Winstead


From: Lukas Bystricky @.> Sent: Friday, June 28, 2024 5:16:49 PM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

What does git status say? It might be that you've somehow created another Kate file, in which case I would update and commit the gitignore file.

Which app do you mean? Are you using a graphical interface for git?

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2197672359, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYLJMCJC4TL5IZBWU4TZJXHEDAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOJXGY3TEMZVHE. You are receiving this because you commented.Message ID: @.***>

Revali25 commented 2 months ago

I think I've rebased issue 7 in the list, please let me know if it's working right. With regards to commit https://github.com/Revali25/emilyofnewmoon/commit/7fd9618237b71572e0f6238a3243a622f6eea1d6, those are my errors that I saw after previously committing. I did make sure to use the [Editorial] tag liberally throughout the process, so anything that isn't marked as editorial shouldn't be editorial.

With issue 8, do I need to do anything special? Or just leave them unchanged.

With the rest of the issues, I'll take a look here quickly. Thanks.

lukasbystricky commented 2 months ago

I'll look at it more closely in the next few days, but off the top of my head it doesn't quite look like I imagined it would. I know that what I wrote was much easier said than done though. If it's not right I can try and see what can be done.

lukasbystricky commented 2 months ago

So I created a fork of the repo and rebased it to get closer to what I was aiming for: https://github.com/lukasbystricky/emilyofnewmoon

I removed all the Kate files, split up a few of the commits and reworded some others.

I think you can work with that repo from now on. I'd go ahead and make any remaining non-rebasing edits. There may be some additional work left on the repository side, but let's worry about that later.

Revali25 commented 2 months ago

So that I can understand better, what were the steps you took to get it the way it is? I tried doing git cherry-pick, and git rebase -i but evidently they didn't work properly. I put the commit id as the one previous to the problematic commits.

In any case, what’s the next step on getting this done? I definitely want to just finish this haha.

Thanks,

Ben Winstead


From: Lukas Bystricky @.> Sent: Tuesday, July 16, 2024 4:01:06 PM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

So I created a fork of the repo and rebased it to get closer to what I was aiming for: https://github.com/lukasbystricky/emilyofnewmoon

I removed all the Kate files, split up a few of the commits and reworded some others.

I think you can work with that repo from now on. I'd go ahead and make any remaining non-rebasing edits. There may be some additional work left on the repository side, but let's worry about that later.

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2231730136, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYMKVFDTWNSBHGSKDXLZMV3YFAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDEMZRG4ZTAMJTGY. You are receiving this because you commented.Message ID: @.***>

lukasbystricky commented 2 months ago

I used a graphical interface, so I don't know the exact commands, but roughly what I did was this:

  1. Edit one of the early commits and add Kate.* to a .gitignore file. Amend the commit, continue rebase. This simply adds the gitignore file and should not cause any conflicts that have to be resolved.
  2. Edit all the commits involving Kate files. Unstage them (causing them to be ignored). Amend the commit, continue rebase.
  3. Edit the commits that I wanted to split. Unstage some of the files commit once, restage remaining files, amend commit. Continue rebase.
  4. Force push to remote Really make sure everything's looks as you think it should (including the history) before you do this, since you won't be able to recover the remote afterwards.

That's basically it. I think I ran into some conflicts from one of the edits, but I can't remember which. It was simple to resolve though; my editor gave me the option to choose from which commit to resolve the conflict.

Rebasing can be a pain, but I think it's a skill worth learning if you plan on working with git at all in the future. Having a good graphical interface makes it a lot easier, especially when you're starting out.

As for next steps, I can have another look this weekend. Hopefully there's not much left.

lukasbystricky commented 2 months ago

I added some issues on the new repository: https://github.com/lukasbystricky/emilyofnewmoon/issues/1

If you've already cloned that repo make sure to pull because I made some additional commits/rebases. I also removed the .gitignore file because apparently lint didn't like that so be careful not to add any Kate files by accident.

Revali25 commented 2 months ago

Ok, sounds good. When I’m making these changes, should I be pushing them to my repo? Or making changes to yours?

Ben Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 3:29:33 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

I added some issues on the new repository: lukasbystricky#1https://github.com/lukasbystricky/emilyofnewmoon/issues/1

If you've already cloned that repo make sure to pull because I made some additional commits/rebases. I also removed the .gitignore file because apparently lint didn't like that so be careful not to add any Kate files by accident.

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241509454, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYISZ4NBAEDHA4M2KXLZNNPN3AVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGUYDSNBVGQ. You are receiving this because you commented.Message ID: @.***>

lukasbystricky commented 2 months ago

You should push directly to the one I created. I think you have access, let me know if not.

On Sun, Jul 21, 2024, 15:16 Revali25 @.***> wrote:

Ok, sounds good. When I’m making these changes, should I be pushing them to my repo? Or making changes to yours?

Ben Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 3:29:33 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

I added some issues on the new repository: lukasbystricky#1< https://github.com/lukasbystricky/emilyofnewmoon/issues/1>

If you've already cloned that repo make sure to pull because I made some additional commits/rebases. I also removed the .gitignore file because apparently lint didn't like that so be careful not to add any Kate files by accident.

— Reply to this email directly, view it on GitHub< https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241509454>, or unsubscribe< https://github.com/notifications/unsubscribe-auth/AKTLDYISZ4NBAEDHA4M2KXLZNNPN3AVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGUYDSNBVGQ>.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241607681, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACSACUCJIY6GAYCF3F6UVILZNOYBNAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGYYDONRYGE . You are receiving this because you authored the thread.Message ID: @.***>

Revali25 commented 2 months ago

Do you want me to make a commit for each item in the list? Or each step that I take to complete each item on the list? I don't want to over-commit again.

-Benjamin Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 12:15 PM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

You should push directly to the one I created. I think you have access, let me know if not.

On Sun, Jul 21, 2024, 15:16 Revali25 @.***> wrote:

Ok, sounds good. When I’m making these changes, should I be pushing them to my repo? Or making changes to yours?

Ben Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 3:29:33 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

I added some issues on the new repository: lukasbystricky#1< https://github.com/lukasbystricky/emilyofnewmoon/issues/1>

If you've already cloned that repo make sure to pull because I made some additional commits/rebases. I also removed the .gitignore file because apparently lint didn't like that so be careful not to add any Kate files by accident.

— Reply to this email directly, view it on GitHub< https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241509454>, or unsubscribe< https://github.com/notifications/unsubscribe-auth/AKTLDYISZ4NBAEDHA4M2KXLZNNPN3AVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGUYDSNBVGQ>.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241607681, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACSACUCJIY6GAYCF3F6UVILZNOYBNAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGYYDONRYGE . You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241701508, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYLX7X4VY4D2VPKZJGDZNPNCJAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRG4YDCNJQHA. You are receiving this because you commented.Message ID: @.***>

lukasbystricky commented 2 months ago

The issue before wasn't exactly that you made too many commits. If anything it was the opposite, I had to split several of your commits.

So commit as often as you like, but the general rule is that each commit should be the same kind of operation. Make sure that your commit message is clear. And don't use git add -a. That should ensure you don't add any Kate files by accident.

On Mon, Jul 22, 2024, 01:44 Revali25 @.***> wrote:

Do you want me to make a commit for each item in the list? Or each step that I take to complete each item on the list? I don't want to over-commit again.

-Benjamin Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 12:15 PM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

You should push directly to the one I created. I think you have access, let me know if not.

On Sun, Jul 21, 2024, 15:16 Revali25 @.***> wrote:

Ok, sounds good. When I’m making these changes, should I be pushing them to my repo? Or making changes to yours?

Ben Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 3:29:33 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

I added some issues on the new repository: lukasbystricky#1< https://github.com/lukasbystricky/emilyofnewmoon/issues/1>

If you've already cloned that repo make sure to pull because I made some additional commits/rebases. I also removed the .gitignore file because apparently lint didn't like that so be careful not to add any Kate files by accident.

— Reply to this email directly, view it on GitHub<

https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241509454>,

or unsubscribe<

https://github.com/notifications/unsubscribe-auth/AKTLDYISZ4NBAEDHA4M2KXLZNNPN3AVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGUYDSNBVGQ>.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub < https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241607681>,

or unsubscribe < https://github.com/notifications/unsubscribe-auth/ACSACUCJIY6GAYCF3F6UVILZNOYBNAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGYYDONRYGE>

. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub< https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241701508>, or unsubscribe< https://github.com/notifications/unsubscribe-auth/AKTLDYLX7X4VY4D2VPKZJGDZNPNCJAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRG4YDCNJQHA>.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241817837, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACSACUBHWA3JDRFARW4HVYDZNRBWFAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRHAYTOOBTG4 . You are receiving this because you authored the thread.Message ID: @.***>

Revali25 commented 2 months ago

This time I’m going to try using vs code for the edits and hope that it doesn’t add any unnecessary junk. I would have used it in the first place but I couldn’t figure out how to change just the text color 🙃

Ben Winstead


From: Lukas Bystricky @.> Sent: Monday, July 22, 2024 1:22:13 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

The issue before wasn't exactly that you made too many commits. If anything it was the opposite, I had to split several of your commits.

So commit as often as you like, but the general rule is that each commit should be the same kind of operation. Make sure that your commit message is clear. And don't use git add -a. That should ensure you don't add any Kate files by accident.

On Mon, Jul 22, 2024, 01:44 Revali25 @.***> wrote:

Do you want me to make a commit for each item in the list? Or each step that I take to complete each item on the list? I don't want to over-commit again.

-Benjamin Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 12:15 PM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

You should push directly to the one I created. I think you have access, let me know if not.

On Sun, Jul 21, 2024, 15:16 Revali25 @.***> wrote:

Ok, sounds good. When I’m making these changes, should I be pushing them to my repo? Or making changes to yours?

Ben Winstead


From: Lukas Bystricky @.> Sent: Sunday, July 21, 2024 3:29:33 AM To: Revali25/emilyofnewmoon @.> Cc: Revali25 @.>; Comment @.> Subject: Re: [Revali25/emilyofnewmoon] Review #1 (Issue #1)

I added some issues on the new repository: lukasbystricky#1< https://github.com/lukasbystricky/emilyofnewmoon/issues/1>

If you've already cloned that repo make sure to pull because I made some additional commits/rebases. I also removed the .gitignore file because apparently lint didn't like that so be careful not to add any Kate files by accident.

— Reply to this email directly, view it on GitHub<

https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241509454>,

or unsubscribe<

https://github.com/notifications/unsubscribe-auth/AKTLDYISZ4NBAEDHA4M2KXLZNNPN3AVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGUYDSNBVGQ>.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub < https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241607681>,

or unsubscribe < https://github.com/notifications/unsubscribe-auth/ACSACUCJIY6GAYCF3F6UVILZNOYBNAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRGYYDONRYGE>

. You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHub< https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241701508>, or unsubscribe< https://github.com/notifications/unsubscribe-auth/AKTLDYLX7X4VY4D2VPKZJGDZNPNCJAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRG4YDCNJQHA>.

You are receiving this because you commented.Message ID: @.***>

— Reply to this email directly, view it on GitHub https://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2241817837, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACSACUBHWA3JDRFARW4HVYDZNRBWFAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBRHAYTOOBTG4 . You are receiving this because you authored the thread.Message ID: @.***>

— Reply to this email directly, view it on GitHubhttps://github.com/Revali25/emilyofnewmoon/issues/1#issuecomment-2242112567, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AKTLDYKK5KCIIMKHCNN7X23ZNSJILAVCNFSM6AAAAABI4BYB7KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDENBSGEYTENJWG4. You are receiving this because you commented.Message ID: @.***>