Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.89 KB

changelog.markdown

File metadata and controls

57 lines (38 loc) · 1.89 KB

Cas.im/ir v2.x

Cas.im/ir v2.2 (2020/10/06)

  • Add support to customize site title and description.
  • Disable API when CAPTCHA is enabled (fixed security flaw allowing using the API to bypass CAPTCHA).
  • Fixed code indentation.
  • Return 404 Not Found when a non-existent URL is requested.
  • Add support for hCaptcha.
  • Add support for CAPTCHA localization.
  • Fix indentation inconsistencies.

Cas.im/ir v2.1 (2014/12/04)

  • New maintainer (#15)
  • Use mysqli extension instead of deprecated mysql_* functions (#14)
  • CAPTCHA support using reCAPTCHA.net
  • Updated project URLs
  • Set up new test site since the old one has expired (#15 (comment), #17)

Cas.im/ir v2.0 (2012/02/07)

Diet. KISS.

If you upgraded from a previous release, you can remove the title_url field from the casimir table: ALTER TABLE casimir DROP COLUMN title_url

Cas.im/ir v1.x

Cas.im/ir v1.3 (2011/01/17)

Enhancements and fixes by Neofutur:

If you don't have it yet, add this field to your "casimir" table: ALTER TABLE casimir ADD title_url VARCHAR(128) NOT NULL DEFAULT 'No title defined for this url', ADD FULLTEXT (title_url)

Cas.im/ir v1.2 (2010/01/20)

  • FIXED: handle empty short URL creation with bookmarklet
  • FIXED: readme.txt

Cas.im/ir v1.1 (2010/01/05)

  • NEW: daily, weekly, and monthly statistics
  • FIXED: access_key added to the bookmarklet

If you don't have it yet, create this table in your MySQL database:

CREATE TABLE `casimir_stats` (
  `short_url` varchar(50) NOT NULL default '',
  `use_date` timestamp NOT NULL default '0000-00-00 00:00:00'
) ENGINE=MyISAM DEFAULT CHARSET=utf8