software-distribution

How do you protect your software from illegal distribution? [closed]

做~自己de王妃 提交于 2019-12-17 02:39:16
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I am curious about how do you protect your software against cracking, hacking etc. Do you employ some kind of serial number check? Hardware keys? Do you use any third-party solutions? How do you go about solving licensing issues? (e.g. managing floating licenses) EDIT: I'm not talking any open source, but

distributing R package with optional dependencies

我的梦境 提交于 2019-12-14 03:48:48
问题 I've written a small package for logging, I'm distributing it through r-forge, recently I received some very interesting feedback on how to make it easier to use, but this functionality is based on stuff ( setRefClass ) that was added to R in 2.12. I'd like to keep distributing the package also for R-2.11, so I'm looking for a way to include or exclude the S4 syntactical sugar automatically, and include it when the library is loaded on a R >= 2.12 system. one other option I see, that is to

Distribution of Projects

让人想犯罪 __ 提交于 2019-12-13 04:43:11
问题 I am looking to release a 'sneak peak' of my project on my website, in Windows I know how to properly distribute the required files, like .dll's and such. But for Linux (Ubuntu distro) I am having trouble running my program on any other machine but my development machine. I have been able to statically link all dependancies but one -Tiny XML -FreeType2 -SDL -Lua -LuaBind -GLU These all have their own appropriate .a static library's. However OpenGL or lGL as I have linked it, apparently points

Which Linux kernels and Linux distros are supported by G-WAN?

喜你入骨 提交于 2019-12-12 04:44:52
问题 I can find a statement at the beginning of the user's manual: version 3 for Linux (tested with Debian and CentOS 32-bit and 64-bit) I am using Ubuntu 12.10 64-bit for development. So far, I found no problem with it, but I still have no confidence on it, since there is no official announcement from gwan about this. 回答1: At least G-WAN v3.3 should be compatible with the Linux distributions used when the development started in 2009 (Ubuntu 8+). G-WAN v3.10+ added significant enhancements

Where to obtain Visual C++ Express runtime dlls

让人想犯罪 __ 提交于 2019-12-11 20:59:05
问题 I want to distribute msvcr100.dll and msvcp100.dll in the application local folder along with my .exe I don't want to use the vcredist_x86.exe installer, static linking or a msm merge module. Where can I find the correct versions of these files? VC++ Express doesn't have a \Program Files\Microsoft Visual Studio 10.0\VC\redist\x86\ folder as described on msdn. I'm concerned about trying to take them from \Windows\System32 in case they're the wrong version or its somehow not correct. 来源: https:

iOS7.1 - install .ipa with wireless AdHoc distribution and Entreprise account

谁说胖子不能爱 提交于 2019-12-11 20:27:16
问题 I have some questions about the installation of .ipa file with wireless AdHoc distribution and Enterprise account to be completely clear in my mind (we use XCode 5.1, iOS 7.1) I read (here) that, for adhoc distribution, we don't need an Entreprise account, is that true ? Because I tested the method described in the link but it didn't work. Do we need an Entitlement file anymore ? Is the mobileprovision file already included in the .ipa file generated by XCode 5.1 ? (if we do Product ->

How to notarize an app bundle containing helpers embedded in it?

孤者浪人 提交于 2019-12-11 17:15:38
问题 Does anyone know how to send a Mac application bundle containing embedded helper app bundles to be notarized by Apple? When I try to archive a simple application, everything goes smoothly. The app is archived properly, and I can upload the archive and my app gets notarized in a question of minutes. However, when I try to archive an app bundle containing helper app bundles in it, using script phases and try to automatically sign and notarize my application bundle via the normal, automatic

itms-services IPA wireless distribution link not working

谁说胖子不能爱 提交于 2019-12-11 12:07:27
问题 I'm trying to get an IPA downloadable through a website. From reading around I see this is done itms-services. My issue is my link in php is not working - I have a feeling it's down to the syntax but i can't figure it out. I tried url encoding etc but no luck. Any ideas? echo '<a href="itms-services://?action=download-manifest&url=http://localhost:8888/hockey/hockey/appname_type/info.plist">Click here to donwnload</a></br>'; 回答1: This is what Apple answers themselves on this question: Yes,

Alternatives to distribute spring-boot application using maven (other than spring-boot:repackage)

对着背影说爱祢 提交于 2019-12-11 11:47:21
问题 As far as I know, spring-boot-maven-plugin has already provided a way to distribute the entire application in a fat executable jar file: spring-boot-maven-plugin However, sometimes we don't want a fat executable jar that encapsulates all the modules and dependencies and configuration files and such, maybe a zip/tar file with the main module in a jar and launch scripts for different platforms alongside the jar, and dependencies under the lib folder and configurations file reside in the conf

How do I produce a ZIP of my source using Gradle?

為{幸葍}努か 提交于 2019-12-10 12:32:11
问题 I'm converting a relatively small project from Ant to Gradle. I expect to reduce the number of lines in the build script by approximately 75%! One thing the Ant build does is to produce a source ZIP (i.e. a ZIP of the whole project, with certain bits removed - ./build, various Eclipse folders, etc.) Whilst migrating this to Gradle, I decided to use an "inclusive" approach, rather than an "exclusive" approach so that things don't get included by accident later on. I'd like to be able to grab