├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom-layout-request.md │ └── feature-request.md ├── .vscode └── settings.json ├── README.md └── changelog.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help improve Stardew Planner 4 | title: "[BUG]" 5 | labels: 'bug, state: pending' 6 | assignees: hpeinar 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. If applicable, please provide link to your plan. You can get one by using the planner save feature and copying the resulting URL. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior in the planner: 15 | 1. Click on '....' 16 | 2. Do this '...' 17 | 18 | **Expected behavior** 19 | A clear and concise description of what you expected to happen. 20 | 21 | **Screenshots** 22 | Please add screenshots or screen recording for every bug. 23 | Planner is a visual product and 99% of the issues are visually represented. 24 | 25 | **System information (please complete the following information):** 26 | - Device: [e.g. Mobile, desktop, iPad, iPhone] 27 | - OS: [e.g. Window, iOS] 28 | - Browser [e.g. firefox, chrome, safari] 29 | - Version [e.g. 22] 30 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom-layout-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom layout request 3 | about: For requesting new farm layouts 4 | title: '' 5 | labels: 'layout request, state: pending' 6 | assignees: hpeinar 7 | 8 | --- 9 | 10 | **nexusmods.com link to the farm layout you'd like to be added** 11 | Link to [https://www.nexusmods.com/stardewvalley/mods/](https://www.nexusmods.com/stardewvalley/mods/) 12 | 13 | **Any additional notes** 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest new features or improvements for Stardew Planner 4 | title: "[FEATURE]" 5 | labels: 'enhancement, state: pending' 6 | assignees: hpeinar 7 | 8 | --- 9 | 10 | **Describe your idea / feature / improvement** 11 | This can be anything from functional feature to a visual thing like bad UI. 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "workbench.colorCustomizations": { 3 | "activityBar.background": "#482227", 4 | "titleBar.activeBackground": "#652F36", 5 | "titleBar.activeForeground": "#FCF9F9" 6 | } 7 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Stardew Planner v3 [BETA] 2 | A brand new, shiny version of the Stardew Valley planner. Still under development though. 3 | 4 | # Whats NEW? 5 | There were several main goals for yet another full rewrite of the planner. 6 | 7 | * **Actual sprites** - The planner now uses full sized sprites to give better idea of how your farm will actually look in the game without needing of rendering. It's planned to support all seasons with a press of a button! 8 | * **Mobile support [WIP]** - As the game itself released on mobile, I was also taking on a task to make the planner at least somewhat usable in mobile. This is still on-going process, but I now have to tools to support it. 9 | * **Built in UI** - All of planners core UI is now part of the planner itself which gives better control over it. 10 | 11 | # How does it work? 12 | If you have used the old planner... pretty much the same way. You select things from the menus, place them, try to make your plan look nice or optimal. 13 | - Esc will close menus 14 | - Holding shift will allow you place multiple items in a row 15 | - Selecting an item and pressing Esc will delete it 16 | 17 | # How to leave feedback 18 | Use GitHub issue tracker to do so. There are guidelines how to submit a good issue when posting a new one. You'll need github account (free) to do so. If it seems like too much effort you could just email me as well or poke in Discord 19 | 20 | # Other notes 21 | ## I can't see any code?! 22 | The new version of the planner is not open source. 23 | This repository here is a place to voice your feedback and report any issues. 24 | 25 | ## It looks half-done, why release it before it's ready? 26 | I've been sitting on the v3 version for over a year, making small to no progress due to lack of motivation and / or time. Getting it out there and receiving feedback from actual users, having discussions over what to do and how and maybe even getting a hand to help out will hopefully push me enough to finish it. 27 | 28 | # Contact 29 | I'm reachable in [Stardew Valley discord #farm-designs @hpeinar](https://discord.gg/RRPKc4Z) feel free to ping me anytime. 30 | Or via email: henrikpeinar@gmail.com -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | I'll try to keep track of changes here that are published live to https://v3.starfew.info 2 | If it's been a long while since the last release it's because I have a life to manage. 3 | 4 | ## 2023-04-11 - first public release 5 | Initial public release of the beta version 6 | 7 | Biggest things to note: 8 | * Fully new engine, rewritten from scratch using pixi.js 9 | * Full sized sprites! The planner finally looks more like the actual game and doesn't need rendering (which was broken and didn't support custom layouts) 10 | * Potential mobile support (not very good yet, still trying to make it good) 11 | * Most of the old planner functionalities should work 12 | * All old plans are compatible with the new planner. --------------------------------------------------------------------------------