KeePass v1.30

Changes from 1.29 to 1.30:

New Features:
Refined application icons (thanks to Victor Andreyenkov).
Added option ‘UUID‘ in the ‘Find‘ dialog (to search in UUIDs of entries).
Added option ‘Delete attachments‘ in the ‘Mass Modify‘ dialog.
Key provider plugin API: added support for a direct key flag that instructs KeePass to use a key provided by the plugin as-is, i.e. without hashing it using SHA-256.
Added workaround for Windows XP non-client metrics bug.
The installer now prevents running the installer while it is already running.
All KeePass program binaries are now dual signed using SHA-1 and SHA-256.

Improvements:
Quick searches (toolbar) now also search in UUIDs of entries.
Improved icon recoloring.
The password generator based on a character set now ensures that the generated password is Spr-invariant.
Password generator based on a pattern: when a Spr-variant password is generated, a confirmation dialog for accepting this password is displayed.
KeePass is now compiled with Windows Vista definitions (but still also runs on older Windows systems).
Added support for compiling KeePass with Visual Studio 2015.
Upgraded to Boost libraries version 1.60.0.
Upgraded installer.
Various code optimizations.
Minor other improvements.

Bugfixes:
The main window is now updated immediately after closing the ‘Mass Modify‘ dialog.

下载:
http://ncu.dl.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.zip
http://ncu.dl.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30-Setup.exe

http://ncu.dl.sourceforge.net/project/keepass/KeePass%201.x/1.30/KeePass-1.30.msi

时间: 2024-12-20 18:17:14

KeePass v1.30的相关文章

WimTool(Wim映像处理工具) V1.30.2011.501 免费绿色版

软件名称: WimTool(Wim映像处理工具) V1.30.2011.501 免费绿色版软件语言: 简体中文授权方式: 免费软件运行环境: Win7 / Vista / Win2003 / WinXP / Win2008软件大小: 460KB图片预览: 软件简介:1.WimTool并不是Imagex的GUI,可以脱离Imagex而独立使用.2.WimTool能提供普通用户对WIM格式文件最常用的处理功能,如制作映像文件.挂载映像.解开Wim映像到硬盘的目录和向现存的Wim文件加入新的映像卷等.

docker深入2-API示例

2017/9/18 一.目的 演示 http API 使用的方式 注1:本次实例是在 docker swarm mode 下使用的,目的是:更新指定服务的镜像. 注2:要在 swarm manager node 上执行. docker 的 API 文档是自动生成的,没有太多有用的示例可用. [版本] ~]# docker version Client:  Version:      17.06.0-ce  API version:  1.30  Go version:   go1.8.3  Gi

*HDU2254 矩阵乘法

奥运 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 2990    Accepted Submission(s): 761 Problem Description 北京迎来了第一个奥运会,我们的欢呼声响彻中国大地,所以今年的奥运金牌 day day up!比尔盖兹坐上鸟巢里,手里摇着小纸扇,看的不亦乐乎,被俺们健儿的顽强拼搏的精神深深的

排序问题1

h2.western { font-family: "Liberation Sans", sans-serif; font-size: 16pt } h2.cjk { font-size: 16pt } h2.ctl { font-size: 16pt } h1 { margin-bottom: 0.21cm } h1.western { font-family: "Liberation Sans", sans-serif; font-size: 18pt } h1

codevs 2822 爱在心中

codevs 2822 爱在心中 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题目描述 Description “每个人都拥有一个梦,即使彼此不相同,能够与你分享,无论失败成功都会感动.爱因为在心中,平凡而不平庸,世界就像迷宫,却又让我们此刻相逢Our Home.” 在爱的国度里有N个人,在他们的心中都有着一个爱的名单,上面记载着他所爱的人(不会出现自爱的情况).爱是具有传递性的,即如果A爱B,B爱C,则A也爱C.如果有这样一部分人,他们彼此都相爱,则

C++11 lambda表达式基本用法

#include <iostream> using namespace std; void func1() { cout<<"lambda表达式,值捕获,类似值传递"<<endl; size_t v1=30;//size_t为unsigned int无符号整数 size_t v2=30; size_t v3=30; auto f=[v1,v2,v3]{return v1+v2+v3;};//lambda表达式中[]里面放的是要传递的参数,可以放多个.

12563 - Jin Ge Jin Qu hao——[DP递推]

(If you smiled when you see the title, this problem is for you ^_^) For those who don’t know KTV, see: http://en.wikipedia.org/wiki/Karaoke_box There is one very popular song called Jin Ge Jin Qu(). It is a mix of 37 songs, and is extremely long (11

样条之埃尔米特(Hermite)

埃尔米特(Charles Hermite,1822—1901) 法国数学家.巴黎综合工科学校毕业.曾任法兰西学院.巴黎高等师范学校.巴黎大学教授.法兰西科学院院士.在函数论.高等代数.微分方程等方面都有重要发现.1858年利用椭圆函数首先得出五次方程的解.1873年证明了自然对数的底e的超越性.在现代数学各分支中以他姓氏命名的概念(表示某种对称性)很多,如“埃尔米特二次型”.“埃尔米特算子”等. 这种算法是由上一节讲的CatmullRom演变而成. 关于插值与样条的介绍请看:http://www

Python基础之collection

collection-系列 cellection是作为字典.元组(列表与元组可互相转换)的扩充,在此需要导入cellection 一.计数器(counter) counter是对字典类型的补充,用户获取字典中元素出现的次数.它具备字典所有的功能以及自己自带的功能. 1 import collections 2 stra = collections.Counter('asdfasdfasdfdgghjertgfgsa') 3 print(stra) 4 输出的结果是: 5 Counter({'a'