Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Change README.md #26

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
973d5b6
[ADD]Markdown syntax support
Jul 23, 2014
a36f521
Markdown/textile syntax support.
646b Mar 12, 2015
cf6d7fd
Compatibility with redmine 3.0
thorin Apr 20, 2015
6e01e1f
Working solution
646b Apr 22, 2015
8186f19
Remove unused code.
646b Apr 23, 2015
f8761f5
Code improvements, browser support check.
646b Apr 23, 2015
3c53f4e
Paste fix.
646b Apr 24, 2015
a828733
One more fix.
646b Apr 25, 2015
4fd8dc1
Paste into comments; focus fix.
646b Apr 28, 2015
7e7ff64
Firefox html paste fix.
646b Apr 28, 2015
4351bfb
Merge remote-tracking branch 'dkalachov/master'
thorin May 14, 2015
19fa5ac
Fix paste when the user can only add notes
thorin May 15, 2015
5d651b3
Fix ctrl keyup not triggered
thorin Aug 26, 2015
69d8a45
Fix window scroll on paste
thorin Aug 26, 2015
838ad4c
Remove extraneous file
thorin Jan 6, 2016
6e47e38
Correct Firefox text and image paste
thorin Dec 16, 2016
1c133cb
Add support for IE11
thorin Dec 17, 2016
efcd59d
Fix variable not defined
thorin Dec 19, 2016
42f587b
Update README.md
t-gergely Mar 7, 2017
3aaa844
fix AltGr+V
t-gergely Mar 7, 2017
0403f04
Merge pull request #1 from t-gergely/master
thorin Mar 7, 2017
e8553c5
Fix Undo for Chrome
taikii Jan 28, 2018
cb9837a
README specifically mention textile, markdown
paulvi Feb 5, 2019
9440e41
Merge pull request #3 from paulvi/patch-1
thorin Feb 5, 2019
e104f56
Merge pull request #2 from taikii/master
thorin Feb 5, 2019
c787f9b
Fix: thorin/redmine_image_clipboard_paste#2 breaks the ability to pas…
taikii May 18, 2019
9773f95
Merge pull request #4 from taikii/master
thorin May 19, 2019
48d0be2
Add support for Safari >= 8
Tomas2D Oct 18, 2019
1e8a554
Merge pull request #5 from Tomas2D/master
thorin Nov 5, 2019
5569536
Fix drag & drop for multiple files
Tomas2D Nov 8, 2019
5267841
Merge pull request #6 from Tomas2D/patch-1
thorin Nov 8, 2019
578d26d
feat: support shift+insert paste
santiagodls Dec 21, 2020
de1512e
Merge pull request #7 from santiagodls/master
thorin Dec 22, 2020
95903f1
[TASK] Redmine 5.0.4 compatibility
mz-aimcom Jan 31, 2023
378a770
[TASK] Redmine 5.0.4 compatibility
mz-aimcom Jan 31, 2023
fe73969
[TASK] Redmine 5.0.4 compatibility
mz-aimcom Jan 31, 2023
e91531c
Merge pull request #8 from mz-aimcom/release/5.0.4
thorin Feb 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Gemfile

This file was deleted.

15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Redmine Image Clipboard Paste

Plugin for redmine which allows pasting image data from the clipboard directly into the comments input field on a new ticket or comment. The image will be given an arbitrary filename and added as an attachment and also inserted into the comment text using Redmine's markup language.
Plugin for redmine which allows pasting image data from the clipboard directly into the comments input field on a new ticket or comment. The image will be given an arbitrary filename and added as an attachment and also inserted into the comment text using Redmine's markup language (textile or markdown).

## Features

Expand All @@ -11,35 +11,32 @@ Plugin for redmine which allows pasting image data from the clipboard directly i

## Getting the plugin

A copy of the plugin can be downloaded from GitHub: http://github.com/credativUK/redmine_image_clipboard_paste
A copy of the plugin can be downloaded from GitHub: https://github.com/thorin/redmine_image_clipboard_paste

## Installation

To install the plugin clone the repro from github and migrate the database:

```
cd /path/to/redmine/
git clone git://github.com/credativUK/redmine_image_clipboard_paste.git plugins/redmine_image_clipboard_paste
rake db:migrate_plugins RAILS_ENV=production
git clone git://github.com/thorin/redmine_image_clipboard_paste.git plugins/redmine_image_clipboard_paste
bundle exec rake redmine:plugins:migrate RAILS_ENV=production
```

To uninstall the plugin migrate the database back and remove the plugin:

```
cd /path/to/redmine/
rake db:migrate:plugin NAME=redmine_image_clipboard_paste VERSION=0 RAILS_ENV=production
bundle exec rake redmine:plugins:migrate NAME=redmine_image_clipboard_paste VERSION=0 RAILS_ENV=production
rm -rf plugins/redmine_image_clipboard_paste
```

Further information about plugin installation can be found at: http://www.redmine.org/wiki/redmine/Plugins

## Compatibility

The latest version of this plugin is only tested with Redmine 2.3.x.
The latest version of this plugin is tested with Redmine 5.0.4.

Browser compatibility will be an issue since it is making use of the FileAPI which is still a working draft at time of writing and each browser has it's own implementation of this.

Paste is only supported by WebKit based browsers.
Drag and drop should be supported by all modern browsers, tested with Chrome, Firefox and IE.

## License
Expand Down
2 changes: 0 additions & 2 deletions app/views/boards/show.html.erb

This file was deleted.

3 changes: 0 additions & 3 deletions app/views/issues/_imagepaste.erb

This file was deleted.

9 changes: 0 additions & 9 deletions app/views/issues/update_form.js.erb

This file was deleted.

2 changes: 0 additions & 2 deletions app/views/messages/show.html.erb

This file was deleted.

3 changes: 0 additions & 3 deletions app/views/wiki/edit.html.erb

This file was deleted.

Loading