问题标签 [versioninfo]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 为 python 安装 pyquery
我想安装 pyquery 我有 lxml-2.2.2 文件夹我不知道如何继续我已经尝试过
在 cmd 提示符下
我收到此错误,任何人都可以指导我安装 pyquery 提前谢谢
c++ - 修改编译后的exe描述
我想修改已编译 exe 的版本信息以更改描述。
我自己看了一点,发现我需要使用 UpdateRessource 函数,我做到了这一点。
我不太清楚的部分是lpBuffer。我只想更改包含文件描述的资源部分。
我的猜测是我必须从 exe 加载旧版本并对其进行一些修改,但我不太确定它的结构。
c++ - 正确使用 VERSIONINFO 资源
我在我的 version.rc 文件中设置了我的版本表信息,如下所示:
每当我的应用程序崩溃或弹出一些防病毒消息请求许可或基本上任何显示我的应用程序名称的事件发生时,应用程序名称都会显示为“A test application that do something”,即FileDescription
作为应用程序名称。我使用这篇文章作为我的参考。
我所看到的:
我想看的:
为了实现第二张图片,我编辑FileDescription
为"Test Application"。
但是,现在在任务管理器中(以及使用描述的其他区域),
编辑FileDescription
到“测试应用程序”后:
编辑前FileDescription
:
我想知道是否有某种方法可以指定操作系统ProductName
在上面的第一种情况(和其他类似情况)和FileDescription
上面的第二种情况(和其他类似情况)中使用。
windows - Can DOS MZ binaries have VERSIONINFO metadata at all?
I was under impression what VERSIONINFO resource is a purely Windows invention, however while reading documentation, I stumbled upon VOS_DOS
possible value of fileos
parameter of VERSIONINFO
resource definition statement. Likewise, a binary equivalent, VS_FIXEDFILEINFO
struct have dwFileOS
member, which can have VOS_DOS
value, designating what "The file was designed for MS-DOS." (??).
How can it be? I thought what MZ binary format simply does not have a room for such metadata... Am I missing something, like VERSIONINFO support in the greater MS-DOS versions and some kind of libraries to read it?
delphi - 如何在 Delphi 项目中手动更改版本信息
我想在没有IDE的情况下在Delphi项目中手动设置程序版本。当我更改这样的*.dproj
文件时:
然后CMD
使用 MSBuild 构建项目:
我*.exe
在文件属性中获取带有空版本信息的文件
但是当我在 IDE 中设置版本并使用相同的 MSBuild 调用进行构建时,一切正常。*.exe
有版本信息
问题:为什么我使用相同的*.dproj
文件得到不同的结果?
msbuild - How to inject the right version information into the resources at compile time?
I was surprised to discover that apparently it is not possible to import C predefined macros inside the resource files (.rc
) because Resource Compiler is not able to deal with them.
I was trying to put the version information inside a version.h
that would be generated / updated by the build system. This file was supposed to be included from the resource.rc
so when you build the resources you will always get the same versions across all the built files.
It seems that this has something to do with RC_INVOKED
and this bug http://connect.microsoft.com/VisualStudio/feedback/details/532929/rc4011-warnings-from-vc10-rc -- which is closed as "as-designed".
How can I solve this problem?
Is the only option to patch the final exe in order to update the version information? ... I would prefer not do to this and use a more standard way for this.
c# - 是什么取代了 C# 项目的 VERSIONINFO 资源?
C# 项目使用 .resx 文件获取资源。这对字符串很好,但它似乎没有 C++ 项目 .rc 文件支持的旧 VERSIONINFO 资源的等价物。
我不敢相信微软已经放弃了跟踪可执行版本的想法……那么 .resx 资源文件是否使用了一些与 VERSIONINFO 等效的资源?如何将版本信息绑定到 C# 项目中?
qt - 在 Qt 中将版本信息添加到 .rc 文件中
我分别有一个myprogramm.exe.manifest
文件和myprogramm.rc
资源文件。当我添加到资源文件(其中有一个CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "myprogramm.exe.manifest"
可以看到清单的路径)版本信息时,它看不到清单文件并显示错误:“debug/myprogramm_res.0”找不到。如何添加版本信息?这样我就可以看到清单和版本信息。PS 我在 .pro 文件中添加RC_FILE = myprogramm.rc
。
delphi - 更改可执行文件中的内部版本号
我正在寻找在可执行文件的版本信息中更改内部版本号(VersionLS 的低阶)。因此,我应该阅读VS_VERSIONINFO结构,更改内部版本号,然后将其更新回 PE。
我正在使用此代码作为基础:https ://stackoverflow.com/a/7999813/1970843 。此代码非常适合更改VS_FIXEDFILEINFO数据,但它不会更改(也不会访问)StringFileInfo信息。
我很确定我应该在 VERSIONHEADER 打包记录中包含一些内容以添加 VS_VERSIONINFO 的 Children 条目,但我不知道具体该怎么做。这是我到目前为止所拥有的:
因此,信息似乎正确地出现在第一个 StringStruc 上。但是由于 szKey 和 Value 都不是固定大小,我不知道如何正确定义我的打包记录(甚至可能吗?)来获取这些值。我也遇到了数组问题......我该如何定义它们?我正在做的方式是,我只是在每个 Struc 上获得第一个孩子。请注意,我忽略了填充...可以吗?
任何帮助表示赞赏。我在这里所做的大部分工作都是通过反复试验,所以我真的不明白发生了什么。
PS:我还在做这个,所以我可能会经常更新这个帖子。
jquery - 在 tablesorter.js 中对版本信息进行排序
我想知道是否有办法对几个版本号(如1.8.5
或2.7.1
)进行排序。
它们的长度并不总是相同的(例如1.8
大于)。1.7.1
有没有办法做到这一点?