summaryrefslogtreecommitdiff
path: root/client/js/controllers/post_upload_controller.js
AgeCommit message (Collapse)Author
2025-02-15Merge branch 'master' into hunternifHunternif
2021-11-29client/upload: restore option to pause upload chain on errorShyam Sunder
2021-09-13Fix styleShyam Sunder
2021-08-04Merge remote-tracking branch 'origin/master' into hunternifHunternif
# Conflicts: # client/css/post-content-control.styl # client/css/post-list-view.styl # client/html/post_edit_sidebar.tpl # client/js/controllers/post_list_controller.js # client/js/controllers/post_main_controller.js # client/js/controllers/post_upload_controller.js # client/js/controllers/tag_controller.js # client/js/controllers/user_list_controller.js # client/js/controls/expander_control.js # client/js/controls/post_content_control.js # client/js/controls/post_edit_sidebar_control.js # client/js/controls/post_readonly_sidebar_control.js # client/js/controls/tag_input_control.js # client/js/main.js # client/js/models/abstract_list.js # client/js/models/post.js # client/js/models/post_list.js # client/js/models/settings.js # client/js/models/tag.js # client/js/models/tag_list.js # client/js/tags.js # client/js/util/search.js # client/js/util/touch.js # client/js/util/uri.js # client/js/util/views.js # client/js/views/post_main_view.js # client/js/views/post_upload_view.js # client/js/views/posts_header_view.js # client/js/views/posts_page_view.js # client/js/views/settings_view.js # client/js/views/tag_view.js # client/package-lock.json # client/package.json # server/config.yaml.dist # server/szurubooru/api/__init__.py # server/szurubooru/api/post_api.py # server/szurubooru/api/tag_api.py # server/szurubooru/func/posts.py # server/szurubooru/func/tags.py # server/szurubooru/model/__init__.py # server/szurubooru/model/post.py # server/szurubooru/model/tag.py # server/szurubooru/search/configs/__init__.py # server/szurubooru/search/configs/post_search_config.py # server/szurubooru/search/executor.py # server/szurubooru/tests/api/test_post_retrieving.py # server/szurubooru/tests/api/test_post_updating.py # server/szurubooru/tests/api/test_tag_updating.py # server/szurubooru/tests/conftest.py # server/szurubooru/tests/func/test_posts.py # server/szurubooru/tests/func/test_tags.py # server/szurubooru/tests/search/configs/test_post_search_config.py
2021-05-07Option to always upload similar posts instead of confirming every timeRuin0x11
2021-05-07If one post fails to upload, don't prevent the rest from uploadingRuin0x11
2020-06-06client+server: implement code autoformatting using prettier and blackShyam Sunder
2020-06-04client/js: format code to ESLintShyam Sunder
2019-07-23client/upload: automatically set source when uploading from urlneobooru
Fixes #230
2019-05-07client: tags with categories are saved immediately after input, in all ↵Hunternif
places: upload page, post editor, bulk tag editor
2019-04-13Settings stored locally per user and include default upload safetyHunternif
2019-04-12Add tag input control to upload page. Fix some issues with tag input.Hunternif
2019-04-10client/upload: add checkboxes to copy common tags to existing postsHunternif
2018-06-27client: fetch configurations from server at runtimeShyam Sunder
Permissions, regex filters, app title, email info, and safety now fetched using server's Info API
2017-10-01remove tags.jsonrr-
2017-03-30client/posts: add option to disable safety ratingsrr-
2017-01-21client: refactor linking and routingrr-
Print all links through new uri.js component Refactor the router to use more predictable parsing Fix linking to entities with weird names (that contain slashes, + etc.)
2017-01-15client/posts: fix skipping duplicate uploadsrr-
2017-01-08client/posts: wrap with big progressrr-
fixes #114
2017-01-08client/posts: fix dup finder for swf and webmrr-
fixes #110
2017-01-08client/api: better promise abortingrr-
2017-01-08client: rework promise error handlingrr-
2017-01-08client/api: merge URL and Blob based file uploadsrr-
2017-01-08client/posts: search for similar posts on uploadrr-
2017-01-08client/posts: tweak upload appearance and UXrr-
2016-11-11client/posts: control over video loops on uploadrr-
Also loop videos by default
2016-09-29client/posts: add 'skip duplicates' to upload formrr-
Closes #102
2016-09-29client/posts: add upload cancellingrr-
2016-08-23client/auth: fix not hiding anonymity checkboxrr-
2016-08-23client/auth: show errors early in controllersrr-
In other words, verify the privileges client-side before issuing an request to the server. This commit focuses on routing (e.g. clicking a link while not logged in), rather than DOM element visibility that should be already taken care of.
2016-08-21client/posts: implement upload formrr-
2016-07-13client/general: add title to every pagerr-
2016-06-18client/general: refactor control flowrr-
- Controller lifetime is bound to route lifetime - View lifetime is bound to controller lifetime - Control lifetime is bound to view lifetime - Enhanced event dispatching - Enhanced responsiveness in some places - Views communicate user input to controllers via new event system
2016-06-14client/posts: split controllersrr-