1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
Version 1.8:
- Support Proxy settings in client via environment variables. Closes Debian
Bug #975632
- Prepare the client to support UUIDs from the server.
Prepares Debian Bug #975695
Version 1.7:
- Change nopaste.ip varchar(20) to varchar(39) to save IPv6 addresses.
Version 1.6:
- Add update SQL to migrate the code field from text to mediumtext and per
default install new databases with mediumtext to avoid truncation. Closes
Debian Bug #827803
- Set default paste URL to 'https://nopaste.linux-dev.org/' (HTTPS enabled now).
- Add the current working directory to @INC. With Debian Stretch it is removed
from the default include path because of security reasons.
- Do not set storage engine in sql script, so new databases are created with
the default storage engine (e.g. InnoDB instead of the deprecated MyISAM).
Version 1.5:
- Fix potential Perl warning: Use of uninitialized value within
%Syntax_Languages::Langs
- Fix Perl warning if GeoIP does not return any country flag.
- Bump version to 1.5.
- Return english language instead of german one if GeoIP does not find any
country.
- Add patch from Harri Porten, to use the correct & in lib/HTML.
- nopaste-it: some small cleanups. make use of STDERR, $/, corrected spacings
and use of die
- added a quite mode for nopaste-it which only prints url. can for example be
used in shell scripts.
- Expire: existance of hash elements is checked using exists() not defined()
- Remove LIMITs at the end of UPDATE querys. It is not supported by Postgres.
- nopaste-it: Rename script with extension.
- Fix Perl warning "Use of uninitialized" in lib/Highlighting.
- Add patch from Debian packaging to add Apache 2.4 compatibility.
Version 1.4:
- Fix typo in french translation.
- Remove MySQL'ish "`" from Querys.
- Change default user for running the cronjob from nobody to www-data.
- Change my email address and adjust the copyright years.
- Minor code cleanups.
- Dont print warnings if the remote address or the URL base could not be
initialized. This happens e.g. if you execute index.pl about your shell.
Version 1.3:
- Fix warning from Perl if the code view parameter does not only
contain integers, triggered by int().
- Implemented a translation system, which will translate the application
to the users language. The users language is automatic detected by Geo::IP.
- Add german translation.
- Add francaise translation from Denis Briand.
Version 1.2:
- Fix error in MySQL scheme.
- Update copyrights.
- Some code cleanups.
- Use "use"-statements instead of the unsafe require.
Version 1.1:
- Skin support.
- Switch to XHTML.
- Fix security issue where a attacker may include input
to the "language" field in the nopaste table.
- Display "Download" and "New" on a nopaste output page.
- Some Perl warnings fixes.
- Split out the highlighting css to highlight/.
- Workaround a line ending bug in Syntax::HL::Kate.
- Add cli tool bin/nopaste-it for nopasting things from the shell.
- And also his manpage.
- Add settings table.
- Increase $CGI::POST_MAX by *= 8.
- Some code cleanups.
- Fix some typos.
Version 1.0:
- Initial release.
|