All Projects → SolarLune → Masterplan

SolarLune / Masterplan

MasterPlan is a project management software / visual idea board software. It attempts to be easy to use, lightweight, and fun.

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Masterplan

Projeny
A project and package manager for Unity
Stars: ✭ 656 (+196.83%)
Mutual labels:  management, project-management, project
NearBeach
NearBeach is an open sourced project management tool, helping you keep track of your project. You can track requirements, projects and tasks
Stars: ✭ 97 (-56.11%)
Mutual labels:  management, project, project-management
assign-one-project-github-action
Automatically add an issue or pull request to specific GitHub Project(s) when you create and/or label them.
Stars: ✭ 140 (-36.65%)
Mutual labels:  management, project, project-management
Lambdahack
Haskell game engine library for roguelike dungeon crawlers; please offer feedback, e.g., after trying out the sample game with the web frontend at
Stars: ✭ 439 (+98.64%)
Mutual labels:  indiedev, game
Wizardwarz
WebGL Multiplayer game with NodeJS backend
Stars: ✭ 270 (+22.17%)
Mutual labels:  indiedev, game
Awesome Engineering Team Management
👔 How to transition from software development to engineering management
Stars: ✭ 319 (+44.34%)
Mutual labels:  management, project-management
Gantt Elastic
Gantt Chart [ javascript gantt chart, gantt component, vue gantt, vue gantt chart, responsive gantt, project manager , vue projects ]
Stars: ✭ 869 (+293.21%)
Mutual labels:  project-management, project
Java Game And Application
Java Games and Application with awesome source code and better algorithm
Stars: ✭ 14 (-93.67%)
Mutual labels:  game, project
Toodles
Project management directly from the TODOs in your codebase
Stars: ✭ 963 (+335.75%)
Mutual labels:  management, project-management
Qake
Qake voxel-engine demo
Stars: ✭ 100 (-54.75%)
Mutual labels:  indiedev, game
Expo Three Demo
🍎👩‍🏫 Collection of Demos for THREE.js in Expo!
Stars: ✭ 76 (-65.61%)
Mutual labels:  game, project
Kotlin Koans
kotlin koans examples
Stars: ✭ 116 (-47.51%)
Mutual labels:  idea, project
Dino3d
🦖 Google Chrome T-Rex Run! in 3D (WebGL experiment)
Stars: ✭ 263 (+19%)
Mutual labels:  indiedev, game
Android-Library-Management
Android Library Management Project
Stars: ✭ 32 (-85.52%)
Mutual labels:  project, project-management
Teamvision
Teamvision软件工程协作工具
Stars: ✭ 380 (+71.95%)
Mutual labels:  project-management, project
agileseason-v1
Kanban board for GitHub issues
Stars: ✭ 12 (-94.57%)
Mutual labels:  management, project-management
Cornerstone
一站式项目管理系统 任务管理、需求管理、缺陷管理、DevOps、WIKI、在线文档 同样的功能,带来不同的体验!
Stars: ✭ 33 (-85.07%)
Mutual labels:  project, project-management
pm-idm
IDM project management repository
Stars: ✭ 59 (-73.3%)
Mutual labels:  management, project
Renpy
The Ren'Py Visual Novel Engine
Stars: ✭ 2,734 (+1137.1%)
Mutual labels:  game, visual
Bytepath
A replayable arcade shooter with a focus on build theorycrafting made using Lua and LÖVE.
Stars: ✭ 1,119 (+406.33%)
Mutual labels:  indiedev, game

MasterPlan

MasterPlan is a project management software for independent users or small teams. If you need to share plans across a whole company on an online platform, there are quite a few tools for that. However, if you just want to keep track of your todo list, version control your project plan, or make an ideaboard, MasterPlan is the tool for you.

Note that this is the code repository and external issue tracker for MasterPlan; actual releases can be purchased from the project download page here. You can also just build it yourself from this repository if you're familiar with Go.

History

A few days before the initial commit to this repository, I was working on an indie game, and thought I needed a tool to help me plan out the rest of it. I asked on Twitter for some suggestions of software to try, and found that while they were solid choices, they weren't as applicable to independent development as I would have liked. Most project management software is designed for use by a large team, or even a large company. The disadvantages of many project management tools available today can be due to the features they offer, as they may not be applicable to small teams:

  1. They’re cloud-based, and generally web-focused. This being the case, they usually require using a web browser to view, and so can be relatively heavy applications.
  2. Because of point 1, they may not offer a downloadable copy of their software. Even if they do, they might require hosting a server that serves you the management pages, or might require owning an account to use the application.
  3. They can be more complex than necessary to use by offering features that, while useful for larger organizations, are unnecessary for small teams or individual developers (for example, permissions, users, issue assignment, etc). This increases bloat and friction when it comes to learning and using the software.
  4. The data you create in these tools may not easily be version controlled, as the data for your project management lies elsewhere from your source code.

While these features (cloud-based, browser apps, etc.) can be beneficial for large groups of developers, they can also become sticking points for individuals or small teams. So, I decided to make a tool myself to help independent developers plan out projects such as these. And so, the result is a simple, compiled, downloadable application that stores project data on your computer. The project plan file are plain JSON text files, and can be easily committed to a version control system. The goal for MasterPlan is to make a project management and visual planning tool that is easy to use and extremely simple. I believe it is reaching this goal.

Building

MasterPlan is not quite fully free software, but the source is available here. If you wish to build MasterPlan or contribute to its development, I thank you, and welcome it. I've made a build script in Go to simplify the building process. The build script is located at build_script\main.go. The dependencies for building should be resolved automatically by go mod (so you should be using a recent version of Go with support for go.mod files). Just run:

> go run ./build_script/main.go -b

from the MasterPlan source directory to build. It should generate a folder named bin, and populate it with a directory with a release build for your OS and architecture. MasterPlan's go.mod automatically uses my fork of raylib-go, located here. It should be kept up to date with raylib-go master, but with its raylib/config.h file altered to turn off automatic screenshots (as MasterPlan handles this manually).

Requirements

All requirements for building and running MasterPlan should be filled by the go.mod and the building process automatically on all platforms. Linux additionally requires the use of zenity, qarma, or matedialog for opening file selection windows, and xsel, xclip, or wl-clipboard for clipboard copy-and-paste functions. At least one of each of these two groups will most likely be installed by default on your chosen Linux distro.

License

MasterPlan is copyright, All Rights Reserved, SolarLune Games 2019-2020.

Feel free to use the program itself and the generated plan files in the development of projects, commercial or otherwise, as that's the point of the tool, haha. You can also build MasterPlan yourself using the repo here, contribute to its development, and fork it freely, but you may not use any assets (graphics files, sound files, code, etc) from this repository in any commercial creations. Please also do not distribute builds of MasterPlan to others.

Special thanks to raysan5 for creating Raylib, as it's pretty key to the development of MasterPlan, and works rather well!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].