-
Notifications
You must be signed in to change notification settings - Fork 0
2025 wrap-up updates #61
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6e2b28d
updated papers
VatsalSy b9d77a8
updated News and History
VatsalSy 5e3080a
Fix js-yaml security vulnerability (CVE-2025-64718)
VatsalSy cfe67d9
Update publication details for Soft Matter paper [21]
VatsalSy d71b530
Add CLI options and help text to build and deploy scripts
VatsalSy 178ea96
Reorganize news structure with year headings
VatsalSy 4007425
Update location to Durham University and remove duplicate email badge
VatsalSy 04d9185
Relocate command configs to .opencode
VatsalSy ac314ec
Validate deploy host/port options
VatsalSy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ vendor/ | |
| # Ignore ai rules | ||
| .windsurfrules | ||
| .cursorrules | ||
| .claude | ||
| **/copilot-instructions.md | ||
| .DS_Store | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| Add the following news item to both News.md and history.md: | ||
|
|
||
| $ARGUMENTS | ||
|
|
||
| Follow these steps: | ||
|
|
||
| 1. Parse the news content from $ARGUMENTS | ||
| 2. Determine the appropriate month and year (ask if unclear) | ||
| 3. Read both News.md and history.md files | ||
| 4. Add the news item to history.md in the correct chronological position: | ||
| - Years are organized with `## Year` headings (e.g., `## 2026`, `## 2025`) | ||
| - Years are sorted descending (newest first) | ||
| - Create year section if it doesn't exist | ||
| - Months within a year are in chronological order (January at top) | ||
| - Format: `- [news content]` | ||
| 5. Add the same item to News.md: | ||
| - Years are organized with `## Year` headings | ||
| - Find or create the correct year section | ||
| - Find or create the month subsection (### Month) | ||
| - Insert after the month heading | ||
| - The Durham announcement is a special item under the `## 2025` heading | ||
| 6. Count regular news items in News.md (items that start with "- ") | ||
| 7. If more than 5 regular news items exist, remove the oldest ones | ||
| - Special announcements (like Durham) don't count toward the 5-item limit | ||
| - Only remove items from the oldest months, preserving year structure | ||
| 8. Ensure proper spacing between sections | ||
| 9. Save both files | ||
|
|
||
| Important formatting: | ||
|
|
||
| - Year headings: `## 2026`, `## 2025`, etc. | ||
| - Month headings: `### January`, `### December`, etc. | ||
| - News items start with "- " | ||
| - Leave blank lines between different sections | ||
| - Special announcements (like Durham) use `### <i class="fa-solid...">` format | ||
| - Special announcements don't count toward the 5-item limit | ||
|
|
||
| Structure example: | ||
|
|
||
| ```markdown | ||
| ## 2026 | ||
|
|
||
| ### January | ||
|
|
||
| - [News item] | ||
|
|
||
| ## 2025 | ||
|
|
||
| ### <Special announcement with icon> | ||
|
|
||
| [Announcement content] | ||
|
|
||
| ### December | ||
|
|
||
| - [News item] | ||
| ``` | ||
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation states "Months within a year are in chronological order (January at top)" but this is incorrect. Looking at the actual News.md and history.md files, months within a year are in REVERSE chronological order (newest first), with December appearing before November, November before September, etc. This inconsistency could lead to incorrect news item placement when following this documentation.