Click anywhere to close this dialog

Farewell

Great is the art of beginning, but greater is the art of ending
Henry Wadsworth Longfellow

I announce that I cease all development and activity in the programming universe indefinitely. My career has reached the turning point I was not expecting for at least another year, leaving me highly off guard and without laid-out plans for this hobby's continuity. I have begun a 5-year residency program in Neurosurgery which is clearly not compatible, time-wise, with programming.

I gave in all my passion for developing, and you gave me back your loyalty and trust, even when I did not deserve that much. Now it is the time for payback. I release all my present and past work as Open Source software, in the hope some talented developer will continue maintaining and expanding my vision of a modern, sleek forum software. The intrinsic flexibility of MyBB is the true hidden gem of an otherwise outdated codebase; I do hope the project can continue and be updated complying to the latest coding standards.

I hereby thank Euan, kawaii, andrewjs18, Ben, Matt, Omar G., effone, Eric J., Devilshakerz, Wildcard, JordanMussi and all the other team members I have had the opportunity to work with when I was a MyBB team member. I thank Tomm M, my mentor, who inspired me to pick up coding with his piece-of-art plugins. And finally, I thank all of you MyBBoost subscribers who have helped me getting through my toughest university years economically.

Yours sincerely, Filippo

Drafts AutoSave 1.1

11 Nov 2015 Edited
#1
Drafts AutoSave saves new threads and replies as drafts automatically once in a while, so you don't have to worry about losing your writings anymore. Whether if your browser freezes or the AC powers off, you will always have an emergency backup of what you have written down ready to be restored.

Several options are available to customize your own copy of Drafts AutoSave, including different storage methods. You can choose between three different storage methods:
  • Browser LocalStorage, which is a client-side solution and does not waste any server resources at all. This option is highly recommended and it's enabled by default. Browser LocalStorage may be unavailable in certain browsers, so a fallback will be always available choosing between the following other storage methods.
  • PluginLibrary, which is the fastest server-side method but the less reliable (as its cache may vanish at any time, eg. on server's failure).
  • Database, which ensures that drafts will be always available but may cost something in terms of performances.
When the user posts his message, saved drafts are automatically deleted by the system. Both the message and the subject (if available) are saved.

You can also specify whether to load saved drafts - if available - directly when an user opens the target page or to display a message asking the user to do so.

Minimum requirements


PHP 5.4
MyBB 1.6.0

Quick Reply, New Reply and New Thread pages are supported, as well as plain textareas in additional pages (ID: #message), MyBB 1.6 Clickable Editor and MyBB 1.8 WYSIWYG editor. Quick Edit and Editpost are not available yet.

1.8 users can decide to whether or not show messages using the default jGrowl library, or use Humane.js as a valid alternative. 1.6 users are stuck with Humane.js.

Availability


Drafts AutoSave is available for free. WARNING SIGN Support is discontinued due to my departure from programming. Read more why here.


This project is licensed under

MIT


A simple license with little to no use restrictions, except for author's crediting. Read the provided LICENSE file for more informations.

Permissions

Commercial use
Modification
Distribution
Private use
Limitations

Warranty
Liability
Conditions

License notice
Copyright notice
Filename Size Downloads
10.33 KB 199
Jopie and Enes Palit like this post
Shade 23 Nov 2019
#11
File jscripts/autosavedrafts.js, find:

special_options = {};
Replace with:

var special_options = {
    theme: 'jgrowl_success'
};
I don't know when it happened, but a recent MyBB update has changed how jGrowl handles theming.
ProX likes this post