summaryrefslogtreecommitdiff
path: root/views/new-post.php
AgeCommit message (Collapse)Author
2019-09-29add a dropdown to choose post visibilityAaron Parecki
2019-05-27wait for localforage callback before redirectingAaron Parecki
should help clear out the draft when a post is created. for #109
2018-08-01better error messagesAaron Parecki
2018-08-01if no syndication targets are found, hide the sectionAaron Parecki
add syndication reload button to the settings screen
2018-07-20hide reply button unless replies are supportedAaron Parecki
2018-07-20disable post type buttons if the server doesn't support themAaron Parecki
2018-05-27set max height on image to prevent tall images from blocking scrollingAaron Parecki
closes #87
2018-05-27split tags using tokenfield instead of comma-separatedAaron Parecki
this allows tag values to contain spaces, which is up to your own micropub server to handle appropriately. closes #95 and replaces #96
2018-03-28typing a backtick when replying to a github url switches to markdownAaron Parecki
2018-03-05keyboard shortcut to switch to markdownAaron Parecki
2018-02-11add hidden content type selectorAaron Parecki
2018-01-01fix note name for github issuesAaron Parecki
2017-12-27add name field when replying to github reposAaron Parecki
2017-11-08updates for twitter 280 limitAaron Parecki
2017-10-29query the media endpoint for the last photo uploadedAaron Parecki
2017-09-25show syndication links with icons in reply contextAaron Parecki
2017-06-26fix JSON request to always send arraysAaron Parecki
2017-06-26only send photo property if there is a photoAaron Parecki
2017-05-14hide alt text field if no media endpoint existsAaron Parecki
2017-05-11add interface for checking in to flightsAaron Parecki
let's give this a shot
2017-03-13show RSVP field when replying to eventsAaron Parecki
closes #71
2017-03-07fix JSON syntax on note formAaron Parecki
2017-02-25add alt text inputAaron Parecki
* now you can enter alt text for photos. see https://www.w3.org/TR/micropub/#uploading-a-photo-with-alt-text for details * if the note has alt text, then the request is sent as JSON instead
2017-02-24nicer photo uploading experienceAaron Parecki
2017-02-12replace photo section with camera iconAaron Parecki
2017-01-17use `mp-syndicate-to` by default, add settingAaron Parecki
* adds setting to choose the property to use for the syndication targets * all existing users default to the old value `syndicate-to` * new users default to `mp-syndicate-to` closes #66
2017-01-15add tokenfield for tagsAaron Parecki
2017-01-15store the user's timezone after their location is foundAaron Parecki
2017-01-15use XRay to parse tweetsAaron Parecki
2017-01-04add tags, slug and status field to quill editorAaron Parecki
2016-12-29front-end check for authorAaron Parecki
2016-12-24automatically expand text fieldAaron Parecki
closes #61
2016-12-24fix reply context display for long postsAaron Parecki
closes #62
2016-12-19reset reply context state when URL is removedAaron Parecki
2016-12-19clean up note UI, show reply contextAaron Parecki
* shows reply context of the URL you're replying to * autocomplete nicknames from the post when replying * moved debug info to the settings screen to clean up the UI
2016-12-15add h-review interfaceAaron Parecki
2016-10-19fix removing photo urlAaron Parecki
2016-10-19fix replacing photo upload form with uploaded photoAaron Parecki
2016-10-08support posting multiple photos by URLAaron Parecki
2016-08-06add manual photo URL fieldAaron Parecki
2016-05-28don't restore previous note state if reply URL is setAaron Parecki
2016-05-11support media endpoint, autosave notes in local storageAaron Parecki
* looks for a media endpoint in the micropub config * if media endpoint is available, both the note interface and the editor will upload files to it instead of posting the photo directly * the note interface autosaves in-progress notes in localstorage
2016-05-06escape html in syndication targetsAaron Parecki
2016-05-05get rid of duplicate ctrl-s handlersAaron Parecki
2016-04-29hide remove photo button before JS loadsAaron Parecki
2016-04-29Merge branch 'master' of github.com:aaronpk/QuillAaron Parecki
2016-04-29fix when multiple syndication are checkedAaron Parecki
2016-04-23Use jQuery event handler instead of the HTML onchange attributePrateek Saxena
The `#note_photo` form element is the only instance in the application that used the attribute.
2016-04-23Add a way to remove image from post once addedPrateek Saxena
Accidents happen, you shouldn't have to refresh the entire page to get rid of the image.
2016-04-22Stop showing broken image icon on the new post pagePrateek Saxena