Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
version 1.2.0
  • Loading branch information
mumurik committed May 14, 2012
1 parent a222ec1 commit 04c0465
Show file tree
Hide file tree
Showing 13 changed files with 1,335 additions and 0 deletions.
2 changes: 2 additions & 0 deletions guidgen/LICENSE.txt
@@ -0,0 +1,2 @@
guidgenのライセンスはMITライセンスです。
詳細はguidgen.lの先頭部分を参照ください。
36 changes: 36 additions & 0 deletions guidgen/guidgen.l
@@ -0,0 +1,36 @@
; -*- mode: lisp; package: user; encoding: shift_jis -*-

;;; guidgen.l
;;
;; Copyright (c) 2006 MIYAMUKO Katsuyuki.
;;
;; Permission is hereby granted, free of charge, to any person obtaining
;; a copy of this software and associated documentation files (the
;; "Software"), to deal in the Software without restriction, including
;; without limitation the rights to use, copy, modify, merge, publish,
;; distribute, sublicense, and/or sell copies of the Software, and to
;; permit persons to whom the Software is furnished to do so, subject to
;; the following conditions:
;;
;; The above copyright notice and this permission notice shall be
;; included in all copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
;; LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
;; OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
;; WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

;;; Code:

(require "guidgen/package")
(require "guidgen/guidgen-ffi")
(require "guidgen/guidgen")
(require "guidgen/editor/command")
(require "guidgen/editor/about")
(require "guidgen/editor/menu")


;; End
20 changes: 20 additions & 0 deletions guidgen/guidgen/docs/COPYING
@@ -0,0 +1,20 @@
Copyright (c) 2006,2008,2011 MIYAMUKO Katsuyuki.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69 changes: 69 additions & 0 deletions guidgen/guidgen/docs/ChangeLog
@@ -0,0 +1,69 @@
2011-08-06 MIYAMUKO Katsuyuki

* guidgen 1.2.0 released!

2011-08-04 MIYAMUKO Katsuyuki

* DEFINE_GUID などで GUID を生成するときに
大文字で生成するときはコード部分の 16 進数も大文字にするようにした

* 小文字で GUID を生成する機能を追加
- guidgen-toggle-use-downcase
- guidgen-use-downcase-p

2008-08-20 MIYAMUKO Katsuyuki

* guidgen 1.1.0 released!

* GUID 一括置換機能を追加
- guidgen-replace-all-buffer
- guidgen-replace-buffer
- guidgen-replace-region
- guidgen-replace-selection
- guidgen-replace-history-clear
- guidgen-replace-history-show

* 直前の GUID を繰り返す機能を追加
- guidgen-toggle-use-last-guid
- guidgen-use-last-guid-p

2006-07-09 MIYAMUKO Katsuyuki

* guidgen 1.0.0 released!

2006-07-07 MIYAMUKO Katsuyuki

* README.txt を MIT-LICENSE を site-lisp/guidgen に移動。

* ファイル構成を変更。
ui-about.l => editor/about.l
ui-editor.l => editor/command.l
ui-menu.l => editor/menu.l

2006-07-05 MIYAMUKO Katsuyuki

* urn:uuid:xxxx 形式をサポートした。

* ツールメニューと右クリックメニューに追加・削除する関数を作成。
- guidgen-install-app-menu
- guidgen-install-app-popup-menu
- guidgen-uninstall-app-menu
- guidgen-uninstall-app-popup-menu

2006-07-04 MIYAMUKO Katsuyuki

* ライブラリ部分 (guidgen/guidgen) は実験的に clisp に対応。

* 以下の関数を追加。
- guidgen-replace
- guidgen-replace-or-insert
- guidgen-insert-implement-olecreate
- guidgen-insert-define-guid
- guidgen-insert-static-const-GUID
- guidgen-insert-registry
- guidgen-popup-menu

2006-06-22 MIYAMUKO Katsuyuki

* guidgen.l 作成開始。

36 changes: 36 additions & 0 deletions guidgen/guidgen/docs/History.rdoc
@@ -0,0 +1,36 @@
== History

=== 2011/08/06

* 1.2.0 リリース!
- 新規機能
- DEFINE_GUID などで GUID を生成するときに
大文字で生成するときはコード部分の 16 進数も大文字にするようにした
- 小文字で GUID を生成する機能を追加
- guidgen-toggle-use-downcase
- guidgen-use-downcase-p

=== 2008/08/20

* 1.1.0 リリース!
- 新規機能
- GUID 一括置換機能を追加
- guidgen-replace-all-buffer
- guidgen-replace-buffer
- guidgen-replace-region
- guidgen-replace-selection
- guidgen-replace-history-clear
- guidgen-replace-history-show
- 直前の GUID を繰り返す機能を追加
- guidgen-toggle-use-last-guid
- guidgen-use-last-guid-p
- 非互換を含む変更点
- なし
- バグ修正
- なし
- その他
- なし

=== 2007/07/09

* 1.0.0 リリース!

0 comments on commit 04c0465

Please sign in to comment.