manifest

Can one edit an InstallShield setup.exe's manifest file?

狂风中的少年 提交于 2019-12-11 13:07:39
问题 I'm running into the Windows Vista/7 Program Compatibility Assistant problem described here: "This program might not have installed correctly" message in Windows 7 RC The solution (backed-up by similar questions elsewhere, and MSDN), is apparently to add a 'compatibility' section to setup.exe's manifest. InstallShield 10 SP1 does this automatically, but unfortunately I only have InstallShield 2009. How would I go about editing the manifest? Is there a way to do this programmatically, so I can

Ancient Delphi VCL app looks to have no Windows theme or VCL Style

六眼飞鱼酱① 提交于 2019-12-11 12:28:55
问题 That's my analysis, anyway. I "distributed" my app to our organization this morning only to learn that, after a month of new work in XE8 on this old win32 app, clients not using the Windows 7 "Basic" theme see a very faded appearance. But those of us using remote desktop or using the Basic theme see about what I think we've always seen. Facts: Made with XE8, Win32, current Raize components XPMan removed along the way "Enable themes" is "on" in all configs, Metropolis checked, Windows is set

manifest delete SET_WALLPAPER permission when export

送分小仙女□ 提交于 2019-12-11 09:38:38
问题 sorry my english I am exporting signed apk, and when eclipse finish exporting, the manifest.xml automaticaly delete this code file: <uses-permission android:name="android.permission.SET_WALLPAPER"/> somebody knows why manifest reload without this permision? Obviusly the app doesn't run ok without this. Thanks for all, and sorry my english 回答1: I think it is solved: Project -> Android tools -> Fix Project properties Thanks for the reply 来源: https://stackoverflow.com/questions/11493486/manifest

How do I inject new manifest into an existing jar for applet

二次信任 提交于 2019-12-11 09:27:28
问题 I have a website that has been working for years (2). But since the new java restrictions (January 2014), my applet is blocked. So after doing some reading, it seems all I have to do is change the manifest file; I don't even need to recompile the code. (If I am wrong about this, please correct me.) So I have created the following manifest file Manifest-Version: 1.0 Created-By: 1.7.0_51 Permissions: sandbox Application-Name: MyFarmingBusiness Application-Library-Allowable-Codebase:http:/

Trouble turning java project into jar file

非 Y 不嫁゛ 提交于 2019-12-11 08:30:56
问题 I've made a project consisting of some java files, an images folder with a few images and a data folder with a few text files. Everything works perfectly when I compile the program and run it through terminal. I decided to try and turn it into a jar file, so after lots of research I managed to do it, including using a manifest file. Here is what I type into terminal to do it: jar cvfm Program.jar manifest.txt *.class images data Giving this output: added manifest adding: a.class (in = 500)

How do I move an embedded manifest to external .manifest file?

喜夏-厌秋 提交于 2019-12-11 08:24:20
问题 I have an existing C# application that has a manifest file which is embedded into the exe. How do I change this to use an external manifest that will be included in the setup.msi? I can only see options (in the Project Properties) to create the application without a manifest, or to embed one. 回答1: In solution explorer, try changing the Build Action for the manifest to Content. 回答2: Use the MT utility (part of Visual Studio) to manipulate manifest files. From the online help: > To extract

Rails 4, Heroku doesn't recognize precompiled manifest-(fingerprint).json

前提是你 提交于 2019-12-11 07:49:28
问题 After upgrading to Rails 4, public/assets/manifest.yml is not generated anymore. Instead the different formatted manifest-(fingerprint).json is present. But it seems to me that the server is still looking for the old manifest.yml format, ignoring the .json version? I see other questions based on similar problems, but they seems to be sovled by upgrading to Rails 4, adding rails_12factor to gem file, setting serve_static_assets = true, etc., but none of these solutions seems to have any effect

HTML5 iphone offline webapp

假如想象 提交于 2019-12-11 06:06:24
问题 So i know that "offine mode" is supposed to work when you have no internet connection. But suppose I build a local network webapp, let's say at 192.168.1.100, then I leave my house, and i'm off the network, then I try to hit that address. Will the webapp pull from the cache, or will it say, "you have internet, but the host is unreachable" or some such thing? I don't want to go crazy with cache.manifests and WebDB's when it might not work the way I hoped. 回答1: If a particular resource is

Specify encoding in manifest file

眉间皱痕 提交于 2019-12-11 05:53:59
问题 I created a jar using the Export functionality in Eclipse and when I try to execute it in the following way it fails java -jar Code.jar However it works correctly for java -Dfile.encoding=UTF-8 -jar Code.jar Current manifest file Manifest-Version: 1.0 Main-Class: test.Reader Class-Path: . How can I mention the encoding inside the manifest file? So that I dont have to mention it explicitly while running the jar file? 回答1: This indicates a problem with your code. Your code is currently

Logo not appearing on splash screen of progressive web

谁说我不能喝 提交于 2019-12-11 05:36:42
问题 In these demos, there are logos on the splash screens. https://addyosmani.com/blog/getting-started-with-progressive-web-apps/ I don't know what I am doing wrong in my manifest - I have an icon but it is not showing up on my splash screen. My manifest looks like this: { "short_name": "Weather Service", "name": "Weather Service", "icons": [ { "src": "logo.png", "sizes": "144x144", "type": "image/png" } ], "start_url": "index.html", "display": "standalone", "orientation": "portrait", "background