├── .gitignore ├── LICENSE ├── README.md ├── RcloneBrowserLauncher.sln ├── RcloneBrowserLauncher ├── About.designer.vb ├── About.resx ├── About.vb ├── EndAction.Designer.vb ├── EndAction.resx ├── EndAction.vb ├── MainForm.Designer.vb ├── MainForm.resx ├── MainForm.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── RcloneBrowserLauncher.vbproj ├── SharedCode.vb ├── WindowsAPI.vb ├── app.config └── resources │ └── pictures │ ├── RcloneBrowserLauncher.ico │ ├── RcloneBrowserLauncher.png │ ├── coded_by.png │ ├── demo_1.PNG │ ├── demo_2.PNG │ ├── demo_3.PNG │ ├── demo_4.GIF │ └── information-small_white.png ├── RcloneBrowserLauncher_Setup └── RcloneBrowserLauncher_Setup.vdproj └── _config.yml /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Aa][Rr][Mm]/ 27 | [Aa][Rr][Mm]64/ 28 | bld/ 29 | [Bb]in/ 30 | [Oo]bj/ 31 | [Ll]og/ 32 | [Ll]ogs/ 33 | 34 | # Visual Studio 2015/2017 cache/options directory 35 | .vs/ 36 | # Uncomment if you have tasks that create the project's static files in wwwroot 37 | #wwwroot/ 38 | 39 | # Visual Studio 2017 auto generated files 40 | Generated\ Files/ 41 | 42 | # MSTest test Results 43 | [Tt]est[Rr]esult*/ 44 | [Bb]uild[Ll]og.* 45 | 46 | # NUnit 47 | *.VisualState.xml 48 | TestResult.xml 49 | nunit-*.xml 50 | 51 | # Build Results of an ATL Project 52 | [Dd]ebugPS/ 53 | [Rr]eleasePS/ 54 | dlldata.c 55 | 56 | # Benchmark Results 57 | BenchmarkDotNet.Artifacts/ 58 | 59 | # .NET Core 60 | project.lock.json 61 | project.fragment.lock.json 62 | artifacts/ 63 | 64 | # StyleCop 65 | StyleCopReport.xml 66 | 67 | # Files built by Visual Studio 68 | *_i.c 69 | *_p.c 70 | *_h.h 71 | *.ilk 72 | *.meta 73 | *.obj 74 | *.iobj 75 | *.pch 76 | *.pdb 77 | *.ipdb 78 | *.pgc 79 | *.pgd 80 | *.rsp 81 | *.sbr 82 | *.tlb 83 | *.tli 84 | *.tlh 85 | *.tmp 86 | *.tmp_proj 87 | *_wpftmp.csproj 88 | *.log 89 | *.vspscc 90 | *.vssscc 91 | .builds 92 | *.pidb 93 | *.svclog 94 | *.scc 95 | 96 | # Chutzpah Test files 97 | _Chutzpah* 98 | 99 | # Visual C++ cache files 100 | ipch/ 101 | *.aps 102 | *.ncb 103 | *.opendb 104 | *.opensdf 105 | *.sdf 106 | *.cachefile 107 | *.VC.db 108 | *.VC.VC.opendb 109 | 110 | # Visual Studio profiler 111 | *.psess 112 | *.vsp 113 | *.vspx 114 | *.sap 115 | 116 | # Visual Studio Trace Files 117 | *.e2e 118 | 119 | # TFS 2012 Local Workspace 120 | $tf/ 121 | 122 | # Guidance Automation Toolkit 123 | *.gpState 124 | 125 | # ReSharper is a .NET coding add-in 126 | _ReSharper*/ 127 | *.[Rr]e[Ss]harper 128 | *.DotSettings.user 129 | 130 | # JustCode is a .NET coding add-in 131 | .JustCode 132 | 133 | # TeamCity is a build add-in 134 | _TeamCity* 135 | 136 | # DotCover is a Code Coverage Tool 137 | *.dotCover 138 | 139 | # AxoCover is a Code Coverage Tool 140 | .axoCover/* 141 | !.axoCover/settings.json 142 | 143 | # Visual Studio code coverage results 144 | *.coverage 145 | *.coveragexml 146 | 147 | # NCrunch 148 | _NCrunch_* 149 | .*crunch*.local.xml 150 | nCrunchTemp_* 151 | 152 | # MightyMoose 153 | *.mm.* 154 | AutoTest.Net/ 155 | 156 | # Web workbench (sass) 157 | .sass-cache/ 158 | 159 | # Installshield output folder 160 | [Ee]xpress/ 161 | 162 | # DocProject is a documentation generator add-in 163 | DocProject/buildhelp/ 164 | DocProject/Help/*.HxT 165 | DocProject/Help/*.HxC 166 | DocProject/Help/*.hhc 167 | DocProject/Help/*.hhk 168 | DocProject/Help/*.hhp 169 | DocProject/Help/Html2 170 | DocProject/Help/html 171 | 172 | # Click-Once directory 173 | publish/ 174 | 175 | # Publish Web Output 176 | *.[Pp]ublish.xml 177 | *.azurePubxml 178 | # Note: Comment the next line if you want to checkin your web deploy settings, 179 | # but database connection strings (with potential passwords) will be unencrypted 180 | *.pubxml 181 | *.publishproj 182 | 183 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 184 | # checkin your Azure Web App publish settings, but sensitive information contained 185 | # in these scripts will be unencrypted 186 | PublishScripts/ 187 | 188 | # NuGet Packages 189 | *.nupkg 190 | # NuGet Symbol Packages 191 | *.snupkg 192 | # The packages folder can be ignored because of Package Restore 193 | **/[Pp]ackages/* 194 | # except build/, which is used as an MSBuild target. 195 | !**/[Pp]ackages/build/ 196 | # Uncomment if necessary however generally it will be regenerated when needed 197 | #!**/[Pp]ackages/repositories.config 198 | # NuGet v3's project.json files produces more ignorable files 199 | *.nuget.props 200 | *.nuget.targets 201 | 202 | # Microsoft Azure Build Output 203 | csx/ 204 | *.build.csdef 205 | 206 | # Microsoft Azure Emulator 207 | ecf/ 208 | rcf/ 209 | 210 | # Windows Store app package directories and files 211 | AppPackages/ 212 | BundleArtifacts/ 213 | Package.StoreAssociation.xml 214 | _pkginfo.txt 215 | *.appx 216 | *.appxbundle 217 | *.appxupload 218 | 219 | # Visual Studio cache files 220 | # files ending in .cache can be ignored 221 | *.[Cc]ache 222 | # but keep track of directories ending in .cache 223 | !?*.[Cc]ache/ 224 | 225 | # Others 226 | ClientBin/ 227 | ~$* 228 | *~ 229 | *.dbmdl 230 | *.dbproj.schemaview 231 | *.jfm 232 | *.pfx 233 | *.publishsettings 234 | orleans.codegen.cs 235 | 236 | # Including strong name files can present a security risk 237 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 238 | #*.snk 239 | 240 | # Since there are multiple workflows, uncomment next line to ignore bower_components 241 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 242 | #bower_components/ 243 | 244 | # RIA/Silverlight projects 245 | Generated_Code/ 246 | 247 | # Backup & report files from converting an old project file 248 | # to a newer Visual Studio version. Backup files are not needed, 249 | # because we have git ;-) 250 | _UpgradeReport_Files/ 251 | Backup*/ 252 | UpgradeLog*.XML 253 | UpgradeLog*.htm 254 | ServiceFabricBackup/ 255 | *.rptproj.bak 256 | 257 | # SQL Server files 258 | *.mdf 259 | *.ldf 260 | *.ndf 261 | 262 | # Business Intelligence projects 263 | *.rdl.data 264 | *.bim.layout 265 | *.bim_*.settings 266 | *.rptproj.rsuser 267 | *- [Bb]ackup.rdl 268 | *- [Bb]ackup ([0-9]).rdl 269 | *- [Bb]ackup ([0-9][0-9]).rdl 270 | 271 | # Microsoft Fakes 272 | FakesAssemblies/ 273 | 274 | # GhostDoc plugin setting file 275 | *.GhostDoc.xml 276 | 277 | # Node.js Tools for Visual Studio 278 | .ntvs_analysis.dat 279 | node_modules/ 280 | 281 | # Visual Studio 6 build log 282 | *.plg 283 | 284 | # Visual Studio 6 workspace options file 285 | *.opt 286 | 287 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 288 | *.vbw 289 | 290 | # Visual Studio LightSwitch build output 291 | **/*.HTMLClient/GeneratedArtifacts 292 | **/*.DesktopClient/GeneratedArtifacts 293 | **/*.DesktopClient/ModelManifest.xml 294 | **/*.Server/GeneratedArtifacts 295 | **/*.Server/ModelManifest.xml 296 | _Pvt_Extensions 297 | 298 | # Paket dependency manager 299 | .paket/paket.exe 300 | paket-files/ 301 | 302 | # FAKE - F# Make 303 | .fake/ 304 | 305 | # CodeRush personal settings 306 | .cr/personal 307 | 308 | # Python Tools for Visual Studio (PTVS) 309 | __pycache__/ 310 | *.pyc 311 | 312 | # Cake - Uncomment if you are using it 313 | # tools/** 314 | # !tools/packages.config 315 | 316 | # Tabs Studio 317 | *.tss 318 | 319 | # Telerik's JustMock configuration file 320 | *.jmconfig 321 | 322 | # BizTalk build output 323 | *.btp.cs 324 | *.btm.cs 325 | *.odx.cs 326 | *.xsd.cs 327 | 328 | # OpenCover UI analysis results 329 | OpenCover/ 330 | 331 | # Azure Stream Analytics local run output 332 | ASALocalRun/ 333 | 334 | # MSBuild Binary and Structured Log 335 | *.binlog 336 | 337 | # NVidia Nsight GPU debugger configuration file 338 | *.nvuser 339 | 340 | # MFractors (Xamarin productivity tool) working folder 341 | .mfractor/ 342 | 343 | # Local History for Visual Studio 344 | .localhistory/ 345 | 346 | # BeatPulse healthcheck temp database 347 | healthchecksdb 348 | 349 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 350 | MigrationBackup/ 351 | 352 | # Ionide (cross platform F# VS Code tools) working folder 353 | .ionide/ 354 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RcloneBrowserLauncher 2 | 3 | ## About 4 | Launcher for [Rclone Browser](https://github.com/kapitainsky/RcloneBrowser) (from [kapitainsky](https://github.com/kapitainsky)) allowing you to : 5 | - Start `Rclone Browser` with `RCLONE_CONFIG_PASS` [environment variable](https://rclone.org/docs/#other-environment-variables) set with your `rclone.conf` password 6 | - Shutdown, hibernate, or sleep your computer at the end of a `Rclone Browser` tasks queue 7 | 8 | 9 | 10 | ## Usage 11 | 1. Download and run `RcloneBrowserLauncher` [latest release](https://github.com/FoxP/RcloneBrowserLauncher/releases/latest) : 12 | - Portable version : [RcloneBrowserLauncher_portable.zip](https://github.com/FoxP/RcloneBrowserLauncher/releases/latest/download/RcloneBrowserLauncher_portable.zip) 13 | - Setup installer : [RcloneBrowserLauncher_setup.msi](https://github.com/FoxP/RcloneBrowserLauncher/releases/latest/download/RcloneBrowserLauncher_setup.msi) 14 | 15 | ![](RcloneBrowserLauncher/resources/pictures/demo_1.PNG) 16 | 17 | 2. Select your `RcloneBrowser.exe` location 18 | - If installed for `All users` : `C:\Program Files\Rclone Browser\RcloneBrowser.exe` 19 | - If installed only for yourself : `C:\Users\%USERNAME%\AppData\Local\Programs\Rclone Browser\RcloneBrowser.exe` 20 | 3. Enter your `rclone.conf` password (**optional**) 21 | - :warning: Do it at your own risk, only enter your `rclone.conf` password in a safe environment 22 | 4. Select an action to be performed at the end of a `Rclone Browser` tasks queue (**optional**) : 23 | - Hibernate computer 24 | - Shutdown computer 25 | - Sleep computer 26 | 5. Click on the `Run Rclone Browser` button 27 | 6. Select `RcloneBrowserLauncher.exe` as finishing queue script in `RcloneBrowser` 28 | - This step need to be done only once 29 | 30 | ![](RcloneBrowserLauncher/resources/pictures/demo_2.PNG) 31 | 32 | 7. Don't forget to check `Run script when finished` option in `Rclone Browser` 33 | 34 | ![](RcloneBrowserLauncher/resources/pictures/demo_3.PNG) 35 | 36 | ## Advanced 37 | 38 | Configuration file (including your `rclone.conf` password) is stored in following location : 39 | - `C:\Users\%USERNAME%\AppData\Local\RcloneBrowserLauncher` 40 | 41 | ## Requirements 42 | - Microsoft [.NET Framework 4](https://www.microsoft.com/en-US/download/details.aspx?id=17851) 43 | - Microsoft Windows Vista or later 44 | - [Rclone Browser](https://github.com/kapitainsky/RcloneBrowser) 2.0.0 or later 45 | 46 | ## Libraries 47 | - App icon from [rclone](https://github.com/rclone/rclone) 48 | 49 | ## License 50 | RcloneBrowserLauncher is released under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.fr.html). -------------------------------------------------------------------------------- /RcloneBrowserLauncher.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2046 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "RcloneBrowserLauncher", "RcloneBrowserLauncher\RcloneBrowserLauncher.vbproj", "{6CFC5013-BB93-4B32-B58E-371DB9C0759B}" 7 | EndProject 8 | Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "RcloneBrowserLauncher_Setup", "RcloneBrowserLauncher_Setup\RcloneBrowserLauncher_Setup.vdproj", "{0EA08C56-42F0-4DAE-998E-00FB1B5B7BCA}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {6CFC5013-BB93-4B32-B58E-371DB9C0759B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {6CFC5013-BB93-4B32-B58E-371DB9C0759B}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {6CFC5013-BB93-4B32-B58E-371DB9C0759B}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {6CFC5013-BB93-4B32-B58E-371DB9C0759B}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {0EA08C56-42F0-4DAE-998E-00FB1B5B7BCA}.Debug|Any CPU.ActiveCfg = Debug 21 | {0EA08C56-42F0-4DAE-998E-00FB1B5B7BCA}.Debug|Any CPU.Build.0 = Debug 22 | {0EA08C56-42F0-4DAE-998E-00FB1B5B7BCA}.Release|Any CPU.ActiveCfg = Release 23 | {0EA08C56-42F0-4DAE-998E-00FB1B5B7BCA}.Release|Any CPU.Build.0 = Release 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {8A134439-E287-4B52-A44D-0AD53ADF5A15} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/About.designer.vb: -------------------------------------------------------------------------------- 1 |  _ 2 | Partial Class ABOUT 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Me.labelImg = New System.Windows.Forms.Label() 26 | Me.labelTitle = New System.Windows.Forms.Label() 27 | Me.panelTitle = New System.Windows.Forms.Panel() 28 | Me.labelIcone = New System.Windows.Forms.Label() 29 | Me.labelExeInfo = New System.Windows.Forms.Label() 30 | Me.labelGitHub = New System.Windows.Forms.Label() 31 | Me.panelTitle.SuspendLayout() 32 | Me.SuspendLayout() 33 | ' 34 | 'labelImg 35 | ' 36 | Me.labelImg.BackColor = System.Drawing.Color.Transparent 37 | Me.labelImg.Image = Global.RcloneBrowserLauncher.My.Resources.Resources.coded_by 38 | Me.labelImg.Location = New System.Drawing.Point(36, 53) 39 | Me.labelImg.Name = "labelImg" 40 | Me.labelImg.Size = New System.Drawing.Size(183, 184) 41 | Me.labelImg.TabIndex = 1 42 | ' 43 | 'labelTitle 44 | ' 45 | Me.labelTitle.AutoSize = True 46 | Me.labelTitle.Font = New System.Drawing.Font("Lucida Console", 20.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 47 | Me.labelTitle.ForeColor = System.Drawing.Color.White 48 | Me.labelTitle.Location = New System.Drawing.Point(78, 12) 49 | Me.labelTitle.Name = "labelTitle" 50 | Me.labelTitle.Size = New System.Drawing.Size(172, 27) 51 | Me.labelTitle.TabIndex = 2 52 | Me.labelTitle.Text = "RBLauncher" 53 | ' 54 | 'panelTitle 55 | ' 56 | Me.panelTitle.BackColor = System.Drawing.Color.Black 57 | Me.panelTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle 58 | Me.panelTitle.Controls.Add(Me.labelIcone) 59 | Me.panelTitle.Controls.Add(Me.labelTitle) 60 | Me.panelTitle.Location = New System.Drawing.Point(-22, 0) 61 | Me.panelTitle.Name = "panelTitle" 62 | Me.panelTitle.Size = New System.Drawing.Size(396, 50) 63 | Me.panelTitle.TabIndex = 3 64 | ' 65 | 'labelIcone 66 | ' 67 | Me.labelIcone.BackColor = System.Drawing.Color.Transparent 68 | Me.labelIcone.Image = Global.RcloneBrowserLauncher.My.Resources.Resources.information_small_white 69 | Me.labelIcone.Location = New System.Drawing.Point(27, 9) 70 | Me.labelIcone.Name = "labelIcone" 71 | Me.labelIcone.Size = New System.Drawing.Size(50, 31) 72 | Me.labelIcone.TabIndex = 4 73 | ' 74 | 'labelExeInfo 75 | ' 76 | Me.labelExeInfo.AutoSize = True 77 | Me.labelExeInfo.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 78 | Me.labelExeInfo.Location = New System.Drawing.Point(38, 237) 79 | Me.labelExeInfo.Name = "labelExeInfo" 80 | Me.labelExeInfo.Size = New System.Drawing.Size(82, 16) 81 | Me.labelExeInfo.TabIndex = 4 82 | Me.labelExeInfo.Text = "Version : {...}" 83 | ' 84 | 'labelGitHub 85 | ' 86 | Me.labelGitHub.AutoSize = True 87 | Me.labelGitHub.Cursor = System.Windows.Forms.Cursors.Hand 88 | Me.labelGitHub.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 89 | Me.labelGitHub.ForeColor = System.Drawing.SystemColors.HotTrack 90 | Me.labelGitHub.Location = New System.Drawing.Point(88, 269) 91 | Me.labelGitHub.Name = "labelGitHub" 92 | Me.labelGitHub.Size = New System.Drawing.Size(77, 16) 93 | Me.labelGitHub.TabIndex = 5 94 | Me.labelGitHub.Text = "GitHub : {...}" 95 | ' 96 | 'ABOUT 97 | ' 98 | Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!) 99 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 100 | Me.BackColor = System.Drawing.Color.White 101 | Me.ClientSize = New System.Drawing.Size(254, 292) 102 | Me.Controls.Add(Me.labelGitHub) 103 | Me.Controls.Add(Me.labelExeInfo) 104 | Me.Controls.Add(Me.panelTitle) 105 | Me.Controls.Add(Me.labelImg) 106 | Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 107 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog 108 | Me.MaximizeBox = False 109 | Me.MinimizeBox = False 110 | Me.Name = "ABOUT" 111 | Me.ShowIcon = False 112 | Me.ShowInTaskbar = False 113 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen 114 | Me.Text = "About" 115 | Me.panelTitle.ResumeLayout(False) 116 | Me.panelTitle.PerformLayout() 117 | Me.ResumeLayout(False) 118 | Me.PerformLayout() 119 | 120 | End Sub 121 | Friend WithEvents labelImg As System.Windows.Forms.Label 122 | Friend WithEvents labelTitle As System.Windows.Forms.Label 123 | Friend WithEvents panelTitle As System.Windows.Forms.Panel 124 | Friend WithEvents labelIcone As System.Windows.Forms.Label 125 | Friend WithEvents labelExeInfo As System.Windows.Forms.Label 126 | Friend WithEvents labelGitHub As System.Windows.Forms.Label 127 | End Class 128 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/About.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/About.vb: -------------------------------------------------------------------------------- 1 | '----------------------------------------------------------------------------------------------------------------------------------------------- 2 | ' 3 | ' This program is free software; you can redistribute it and/or 4 | ' modify it under the terms of the GNU General Public License 5 | ' as published by the Free Software Foundation; either version 2 6 | ' of the License, or (at your option) any later version. 7 | ' 8 | ' This program is distributed in the hope that it will be useful, 9 | ' but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | ' GNU General Public License for more details. 12 | ' 13 | ' You should have received a copy of the GNU General Public License 14 | ' along with this program; if not, write to the Free Software Foundation, 15 | ' Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 | ' 17 | ' Name : 18 | ' RcloneBrowserLauncher 19 | ' Author : 20 | ' Paul RENARD 21 | ' 22 | '----------------------------------------------------------------------------------------------------------------------------------------------- 23 | 24 | Imports System.IO 25 | 26 | Public Class ABOUT 27 | 28 | Private Const sGithubRepositoryURL = "https://github.com/FoxP/RcloneBrowserLauncher" 29 | 30 | Private Sub ABOUT_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 31 | labelExeInfo.Text = "Build version : " & My.Application.Info.Version.ToString & vbNewLine & 32 | "Compilation date : " & getCreationDate(Application.ExecutablePath).ToString("yyyy-MM-dd") & vbNewLine & 33 | "GitHub : " 34 | labelGitHub.Text = My.Application.Info.AssemblyName 35 | End Sub 36 | 37 | Private Sub labelGitHub_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles labelGitHub.Click 38 | Process.Start(sGithubRepositoryURL) 39 | End Sub 40 | 41 | Function getCreationDate(ByVal sFilePath As String) As DateTime 42 | Dim dt As New DateTime 43 | Try 44 | dt = File.GetCreationTime(sFilePath) 45 | Catch ex As Exception 46 | 'Oops 47 | End Try 48 | Return dt 49 | End Function 50 | 51 | End Class -------------------------------------------------------------------------------- /RcloneBrowserLauncher/EndAction.Designer.vb: -------------------------------------------------------------------------------- 1 |  _ 2 | Partial Class EndAction 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form remplace la méthode Dispose pour nettoyer la liste des composants. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Requise par le Concepteur Windows Form 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form 21 | 'Elle peut être modifiée à l'aide du Concepteur Windows Form. 22 | 'Ne la modifiez pas à l'aide de l'éditeur de code. 23 | _ 24 | Private Sub InitializeComponent() 25 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(EndAction)) 26 | Me.cbCancel = New System.Windows.Forms.Button() 27 | Me.cbOk = New System.Windows.Forms.Button() 28 | Me.lbCountdown = New System.Windows.Forms.Label() 29 | Me.lbDescription = New System.Windows.Forms.Label() 30 | Me.lbCancel = New System.Windows.Forms.Label() 31 | Me.lbJobsCompleted = New System.Windows.Forms.Label() 32 | Me.SuspendLayout() 33 | ' 34 | 'cbCancel 35 | ' 36 | Me.cbCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel 37 | Me.cbCancel.Location = New System.Drawing.Point(175, 76) 38 | Me.cbCancel.Name = "cbCancel" 39 | Me.cbCancel.Size = New System.Drawing.Size(75, 23) 40 | Me.cbCancel.TabIndex = 2 41 | Me.cbCancel.Text = "Cancel" 42 | Me.cbCancel.UseVisualStyleBackColor = True 43 | ' 44 | 'cbOk 45 | ' 46 | Me.cbOk.Location = New System.Drawing.Point(89, 76) 47 | Me.cbOk.Name = "cbOk" 48 | Me.cbOk.Size = New System.Drawing.Size(75, 23) 49 | Me.cbOk.TabIndex = 1 50 | Me.cbOk.Text = "Ok" 51 | Me.cbOk.UseVisualStyleBackColor = True 52 | ' 53 | 'lbCountdown 54 | ' 55 | Me.lbCountdown.Location = New System.Drawing.Point(168, 32) 56 | Me.lbCountdown.Name = "lbCountdown" 57 | Me.lbCountdown.Size = New System.Drawing.Size(85, 13) 58 | Me.lbCountdown.TabIndex = 3 59 | Me.lbCountdown.Text = "{COUNT}" 60 | Me.lbCountdown.TextAlign = System.Drawing.ContentAlignment.TopRight 61 | ' 62 | 'lbDescription 63 | ' 64 | Me.lbDescription.AutoSize = True 65 | Me.lbDescription.Location = New System.Drawing.Point(9, 32) 66 | Me.lbDescription.Name = "lbDescription" 67 | Me.lbDescription.Size = New System.Drawing.Size(88, 13) 68 | Me.lbDescription.TabIndex = 4 69 | Me.lbDescription.Text = "{DESCRIPTION}" 70 | ' 71 | 'lbCancel 72 | ' 73 | Me.lbCancel.AutoSize = True 74 | Me.lbCancel.Location = New System.Drawing.Point(9, 54) 75 | Me.lbCancel.Name = "lbCancel" 76 | Me.lbCancel.Size = New System.Drawing.Size(183, 13) 77 | Me.lbCancel.TabIndex = 6 78 | Me.lbCancel.Text = "Click ""Cancel"" to abort the operation." 79 | ' 80 | 'lbJobsCompleted 81 | ' 82 | Me.lbJobsCompleted.AutoSize = True 83 | Me.lbJobsCompleted.Location = New System.Drawing.Point(9, 11) 84 | Me.lbJobsCompleted.Name = "lbJobsCompleted" 85 | Me.lbJobsCompleted.Size = New System.Drawing.Size(87, 13) 86 | Me.lbJobsCompleted.TabIndex = 7 87 | Me.lbJobsCompleted.Text = "Jobs completed !" 88 | ' 89 | 'EndAction 90 | ' 91 | Me.AcceptButton = Me.cbOk 92 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 93 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 94 | Me.CancelButton = Me.cbCancel 95 | Me.ClientSize = New System.Drawing.Size(262, 111) 96 | Me.Controls.Add(Me.lbJobsCompleted) 97 | Me.Controls.Add(Me.lbCancel) 98 | Me.Controls.Add(Me.lbDescription) 99 | Me.Controls.Add(Me.lbCountdown) 100 | Me.Controls.Add(Me.cbCancel) 101 | Me.Controls.Add(Me.cbOk) 102 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog 103 | Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) 104 | Me.MaximizeBox = False 105 | Me.MinimizeBox = False 106 | Me.Name = "EndAction" 107 | Me.ShowInTaskbar = False 108 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent 109 | Me.Text = "RcloneBrowserLauncher" 110 | Me.ResumeLayout(False) 111 | Me.PerformLayout() 112 | 113 | End Sub 114 | 115 | Friend WithEvents cbCancel As Button 116 | Friend WithEvents cbOk As Button 117 | Friend WithEvents lbCountdown As Label 118 | Friend WithEvents lbDescription As Label 119 | Friend WithEvents lbCancel As Label 120 | Friend WithEvents lbJobsCompleted As Label 121 | End Class 122 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/EndAction.vb: -------------------------------------------------------------------------------- 1 | Public Class EndAction 2 | 3 | Public TimerEndAction As New Timer 4 | Public CountdownEndAction As Integer 5 | 6 | Private Sub EndAction_Load(sender As Object, e As EventArgs) Handles Me.Load 7 | TimerEndAction.Interval = 1000 8 | AddHandler TimerEndAction.Tick, AddressOf TimerHandler 9 | 10 | '60 seconds countdown 11 | CountdownEndAction = 60 12 | lbCountdown.Text = CountdownEndAction.ToString & " seconds" 13 | Select Case MainForm.cbEndAction.SelectedIndex 14 | Case 0 15 | lbDescription.Text = "System will happily hibernate in : " 16 | Case 1 17 | lbDescription.Text = "System will happily shut down in : " 18 | Case 2 19 | lbDescription.Text = "System will happily sleep in : " 20 | End Select 21 | 22 | 'Flash Window and taskbar 3 times 23 | Dim res = NativeMethods.FlashWindow(Process.GetCurrentProcess().MainWindowHandle, True, True, 3) 24 | 25 | TimerEndAction.Start() 26 | End Sub 27 | 28 | Private Sub EndAction_Closed(sender As Object, e As EventArgs) Handles Me.Closed, cbCancel.Click 29 | TimerEndAction.Dispose() 30 | Me.Dispose() 31 | End Sub 32 | 33 | Sub TimerHandler() 34 | If CountdownEndAction = 0 Then 35 | Call cbOk_Click(Nothing, New EventArgs) 36 | Else 37 | CountdownEndAction = CountdownEndAction - 1 38 | lbCountdown.Text = CountdownEndAction.ToString & " seconds" 39 | End If 40 | End Sub 41 | 42 | Private Sub cbOk_Click(sender As Object, e As EventArgs) Handles cbOk.Click 43 | TimerEndAction.Dispose() 44 | Me.Dispose() 45 | Select Case MainForm.cbEndAction.SelectedIndex 46 | Case 0 47 | Call Hibernate() 48 | Case 1 49 | Call Shutdown() 50 | Case 2 51 | Call Sleep() 52 | End Select 53 | End Sub 54 | 55 | End Class -------------------------------------------------------------------------------- /RcloneBrowserLauncher/MainForm.Designer.vb: -------------------------------------------------------------------------------- 1 |  _ 2 | Partial Class MainForm 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form remplace la méthode Dispose pour nettoyer la liste des composants. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Requise par le Concepteur Windows Form 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form 21 | 'Elle peut être modifiée à l'aide du Concepteur Windows Form. 22 | 'Ne la modifiez pas à l'aide de l'éditeur de code. 23 | _ 24 | Private Sub InitializeComponent() 25 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm)) 26 | Me.TableLayoutPanelMain = New System.Windows.Forms.TableLayoutPanel() 27 | Me.gbEndAction = New System.Windows.Forms.GroupBox() 28 | Me.TableLayoutPanelEndAction = New System.Windows.Forms.TableLayoutPanel() 29 | Me.cbActivateEndAction = New System.Windows.Forms.CheckBox() 30 | Me.cbEndAction = New System.Windows.Forms.ComboBox() 31 | Me.gbSettings = New System.Windows.Forms.GroupBox() 32 | Me.TableLayoutPanelSettings = New System.Windows.Forms.TableLayoutPanel() 33 | Me.cbActivatePwd = New System.Windows.Forms.CheckBox() 34 | Me.lbRcloneBrowserPath = New System.Windows.Forms.Label() 35 | Me.lbRclonePwd = New System.Windows.Forms.Label() 36 | Me.cbRclonePath = New System.Windows.Forms.Button() 37 | Me.tbRclonePwd = New System.Windows.Forms.TextBox() 38 | Me.tbRcloneBrowserPath = New System.Windows.Forms.TextBox() 39 | Me.TableLayoutPanelRun = New System.Windows.Forms.TableLayoutPanel() 40 | Me.cbAbout = New System.Windows.Forms.Button() 41 | Me.cbRunRcloneBrowser = New System.Windows.Forms.Button() 42 | Me.TableLayoutPanelMain.SuspendLayout() 43 | Me.gbEndAction.SuspendLayout() 44 | Me.TableLayoutPanelEndAction.SuspendLayout() 45 | Me.gbSettings.SuspendLayout() 46 | Me.TableLayoutPanelSettings.SuspendLayout() 47 | Me.TableLayoutPanelRun.SuspendLayout() 48 | Me.SuspendLayout() 49 | ' 50 | 'TableLayoutPanelMain 51 | ' 52 | Me.TableLayoutPanelMain.ColumnCount = 1 53 | Me.TableLayoutPanelMain.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) 54 | Me.TableLayoutPanelMain.Controls.Add(Me.gbEndAction, 0, 1) 55 | Me.TableLayoutPanelMain.Controls.Add(Me.gbSettings, 0, 0) 56 | Me.TableLayoutPanelMain.Controls.Add(Me.TableLayoutPanelRun, 0, 2) 57 | Me.TableLayoutPanelMain.Dock = System.Windows.Forms.DockStyle.Fill 58 | Me.TableLayoutPanelMain.Location = New System.Drawing.Point(0, 0) 59 | Me.TableLayoutPanelMain.Name = "TableLayoutPanelMain" 60 | Me.TableLayoutPanelMain.RowCount = 3 61 | Me.TableLayoutPanelMain.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 60.0!)) 62 | Me.TableLayoutPanelMain.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40.0!)) 63 | Me.TableLayoutPanelMain.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45.0!)) 64 | Me.TableLayoutPanelMain.Size = New System.Drawing.Size(704, 216) 65 | Me.TableLayoutPanelMain.TabIndex = 0 66 | ' 67 | 'gbEndAction 68 | ' 69 | Me.gbEndAction.Controls.Add(Me.TableLayoutPanelEndAction) 70 | Me.gbEndAction.Dock = System.Windows.Forms.DockStyle.Fill 71 | Me.gbEndAction.Location = New System.Drawing.Point(10, 105) 72 | Me.gbEndAction.Margin = New System.Windows.Forms.Padding(10, 3, 10, 0) 73 | Me.gbEndAction.Name = "gbEndAction" 74 | Me.gbEndAction.Size = New System.Drawing.Size(684, 65) 75 | Me.gbEndAction.TabIndex = 8 76 | Me.gbEndAction.TabStop = False 77 | Me.gbEndAction.Text = " Finished queue action : " 78 | ' 79 | 'TableLayoutPanelEndAction 80 | ' 81 | Me.TableLayoutPanelEndAction.ColumnCount = 2 82 | Me.TableLayoutPanelEndAction.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) 83 | Me.TableLayoutPanelEndAction.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75.0!)) 84 | Me.TableLayoutPanelEndAction.Controls.Add(Me.cbActivateEndAction, 0, 0) 85 | Me.TableLayoutPanelEndAction.Controls.Add(Me.cbEndAction, 0, 0) 86 | Me.TableLayoutPanelEndAction.Dock = System.Windows.Forms.DockStyle.Fill 87 | Me.TableLayoutPanelEndAction.Location = New System.Drawing.Point(3, 16) 88 | Me.TableLayoutPanelEndAction.Name = "TableLayoutPanelEndAction" 89 | Me.TableLayoutPanelEndAction.Padding = New System.Windows.Forms.Padding(5, 0, 5, 0) 90 | Me.TableLayoutPanelEndAction.RowCount = 1 91 | Me.TableLayoutPanelEndAction.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) 92 | Me.TableLayoutPanelEndAction.Size = New System.Drawing.Size(678, 46) 93 | Me.TableLayoutPanelEndAction.TabIndex = 8 94 | ' 95 | 'cbActivateEndAction 96 | ' 97 | Me.cbActivateEndAction.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 98 | Me.cbActivateEndAction.AutoSize = True 99 | Me.cbActivateEndAction.Location = New System.Drawing.Point(603, 13) 100 | Me.cbActivateEndAction.Margin = New System.Windows.Forms.Padding(5, 3, 3, 3) 101 | Me.cbActivateEndAction.Name = "cbActivateEndAction" 102 | Me.cbActivateEndAction.Padding = New System.Windows.Forms.Padding(0, 2, 0, 0) 103 | Me.cbActivateEndAction.Size = New System.Drawing.Size(67, 19) 104 | Me.cbActivateEndAction.TabIndex = 10 105 | Me.cbActivateEndAction.Text = "Enabled" 106 | Me.cbActivateEndAction.UseVisualStyleBackColor = True 107 | ' 108 | 'cbEndAction 109 | ' 110 | Me.cbEndAction.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 111 | Me.cbEndAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList 112 | Me.cbEndAction.Enabled = False 113 | Me.cbEndAction.FormattingEnabled = True 114 | Me.cbEndAction.Location = New System.Drawing.Point(8, 12) 115 | Me.cbEndAction.Name = "cbEndAction" 116 | Me.cbEndAction.Size = New System.Drawing.Size(587, 21) 117 | Me.cbEndAction.TabIndex = 9 118 | ' 119 | 'gbSettings 120 | ' 121 | Me.gbSettings.Controls.Add(Me.TableLayoutPanelSettings) 122 | Me.gbSettings.Dock = System.Windows.Forms.DockStyle.Fill 123 | Me.gbSettings.Location = New System.Drawing.Point(10, 5) 124 | Me.gbSettings.Margin = New System.Windows.Forms.Padding(10, 5, 10, 3) 125 | Me.gbSettings.Name = "gbSettings" 126 | Me.gbSettings.Size = New System.Drawing.Size(684, 94) 127 | Me.gbSettings.TabIndex = 2 128 | Me.gbSettings.TabStop = False 129 | Me.gbSettings.Text = " Settings : " 130 | ' 131 | 'TableLayoutPanelSettings 132 | ' 133 | Me.TableLayoutPanelSettings.ColumnCount = 3 134 | Me.TableLayoutPanelSettings.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 155.0!)) 135 | Me.TableLayoutPanelSettings.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) 136 | Me.TableLayoutPanelSettings.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 75.0!)) 137 | Me.TableLayoutPanelSettings.Controls.Add(Me.cbActivatePwd, 2, 1) 138 | Me.TableLayoutPanelSettings.Controls.Add(Me.lbRcloneBrowserPath, 0, 0) 139 | Me.TableLayoutPanelSettings.Controls.Add(Me.lbRclonePwd, 0, 1) 140 | Me.TableLayoutPanelSettings.Controls.Add(Me.cbRclonePath, 2, 0) 141 | Me.TableLayoutPanelSettings.Controls.Add(Me.tbRclonePwd, 1, 1) 142 | Me.TableLayoutPanelSettings.Controls.Add(Me.tbRcloneBrowserPath, 1, 0) 143 | Me.TableLayoutPanelSettings.Dock = System.Windows.Forms.DockStyle.Fill 144 | Me.TableLayoutPanelSettings.Location = New System.Drawing.Point(3, 16) 145 | Me.TableLayoutPanelSettings.Name = "TableLayoutPanelSettings" 146 | Me.TableLayoutPanelSettings.Padding = New System.Windows.Forms.Padding(4, 0, 4, 0) 147 | Me.TableLayoutPanelSettings.RowCount = 2 148 | Me.TableLayoutPanelSettings.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) 149 | Me.TableLayoutPanelSettings.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!)) 150 | Me.TableLayoutPanelSettings.Size = New System.Drawing.Size(678, 75) 151 | Me.TableLayoutPanelSettings.TabIndex = 3 152 | ' 153 | 'cbActivatePwd 154 | ' 155 | Me.cbActivatePwd.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 156 | Me.cbActivatePwd.AutoSize = True 157 | Me.cbActivatePwd.Location = New System.Drawing.Point(603, 46) 158 | Me.cbActivatePwd.Margin = New System.Windows.Forms.Padding(4, 3, 3, 3) 159 | Me.cbActivatePwd.Name = "cbActivatePwd" 160 | Me.cbActivatePwd.Padding = New System.Windows.Forms.Padding(0, 2, 0, 0) 161 | Me.cbActivatePwd.Size = New System.Drawing.Size(68, 19) 162 | Me.cbActivatePwd.TabIndex = 7 163 | Me.cbActivatePwd.Text = "Enabled" 164 | Me.cbActivatePwd.UseVisualStyleBackColor = True 165 | ' 166 | 'lbRcloneBrowserPath 167 | ' 168 | Me.lbRcloneBrowserPath.Anchor = System.Windows.Forms.AnchorStyles.Left 169 | Me.lbRcloneBrowserPath.AutoSize = True 170 | Me.lbRcloneBrowserPath.Location = New System.Drawing.Point(7, 12) 171 | Me.lbRcloneBrowserPath.Name = "lbRcloneBrowserPath" 172 | Me.lbRcloneBrowserPath.Size = New System.Drawing.Size(148, 13) 173 | Me.lbRcloneBrowserPath.TabIndex = 8 174 | Me.lbRcloneBrowserPath.Text = "RcloneBrowser.exe location : " 175 | ' 176 | 'lbRclonePwd 177 | ' 178 | Me.lbRclonePwd.Anchor = System.Windows.Forms.AnchorStyles.Left 179 | Me.lbRclonePwd.AutoSize = True 180 | Me.lbRclonePwd.Location = New System.Drawing.Point(7, 49) 181 | Me.lbRclonePwd.Name = "lbRclonePwd" 182 | Me.lbRclonePwd.Size = New System.Drawing.Size(122, 13) 183 | Me.lbRclonePwd.TabIndex = 9 184 | Me.lbRclonePwd.Text = "Rclone.conf password : " 185 | ' 186 | 'cbRclonePath 187 | ' 188 | Me.cbRclonePath.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 189 | Me.cbRclonePath.Location = New System.Drawing.Point(602, 7) 190 | Me.cbRclonePath.Name = "cbRclonePath" 191 | Me.cbRclonePath.Size = New System.Drawing.Size(69, 22) 192 | Me.cbRclonePath.TabIndex = 5 193 | Me.cbRclonePath.Text = "..." 194 | Me.cbRclonePath.UseVisualStyleBackColor = True 195 | ' 196 | 'tbRclonePwd 197 | ' 198 | Me.tbRclonePwd.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 199 | Me.tbRclonePwd.Enabled = False 200 | Me.tbRclonePwd.Location = New System.Drawing.Point(162, 46) 201 | Me.tbRclonePwd.Margin = New System.Windows.Forms.Padding(3, 3, 4, 3) 202 | Me.tbRclonePwd.Name = "tbRclonePwd" 203 | Me.tbRclonePwd.PasswordChar = Global.Microsoft.VisualBasic.ChrW(8226) 204 | Me.tbRclonePwd.Size = New System.Drawing.Size(433, 20) 205 | Me.tbRclonePwd.TabIndex = 6 206 | ' 207 | 'tbRcloneBrowserPath 208 | ' 209 | Me.tbRcloneBrowserPath.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 210 | Me.tbRcloneBrowserPath.Enabled = False 211 | Me.tbRcloneBrowserPath.Location = New System.Drawing.Point(162, 8) 212 | Me.tbRcloneBrowserPath.Margin = New System.Windows.Forms.Padding(3, 3, 4, 3) 213 | Me.tbRcloneBrowserPath.Name = "tbRcloneBrowserPath" 214 | Me.tbRcloneBrowserPath.Size = New System.Drawing.Size(433, 20) 215 | Me.tbRcloneBrowserPath.TabIndex = 4 216 | ' 217 | 'TableLayoutPanelRun 218 | ' 219 | Me.TableLayoutPanelRun.ColumnCount = 2 220 | Me.TableLayoutPanelRun.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) 221 | Me.TableLayoutPanelRun.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 87.0!)) 222 | Me.TableLayoutPanelRun.Controls.Add(Me.cbAbout, 0, 0) 223 | Me.TableLayoutPanelRun.Controls.Add(Me.cbRunRcloneBrowser, 0, 0) 224 | Me.TableLayoutPanelRun.Dock = System.Windows.Forms.DockStyle.Fill 225 | Me.TableLayoutPanelRun.Location = New System.Drawing.Point(6, 173) 226 | Me.TableLayoutPanelRun.Margin = New System.Windows.Forms.Padding(6, 3, 6, 3) 227 | Me.TableLayoutPanelRun.Name = "TableLayoutPanelRun" 228 | Me.TableLayoutPanelRun.RowCount = 1 229 | Me.TableLayoutPanelRun.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) 230 | Me.TableLayoutPanelRun.Size = New System.Drawing.Size(692, 40) 231 | Me.TableLayoutPanelRun.TabIndex = 11 232 | ' 233 | 'cbAbout 234 | ' 235 | Me.cbAbout.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 236 | Me.cbAbout.Location = New System.Drawing.Point(609, 8) 237 | Me.cbAbout.Margin = New System.Windows.Forms.Padding(4, 3, 3, 3) 238 | Me.cbAbout.Name = "cbAbout" 239 | Me.cbAbout.Size = New System.Drawing.Size(80, 23) 240 | Me.cbAbout.TabIndex = 12 241 | Me.cbAbout.Text = "?" 242 | Me.cbAbout.UseVisualStyleBackColor = True 243 | ' 244 | 'cbRunRcloneBrowser 245 | ' 246 | Me.cbRunRcloneBrowser.Anchor = CType((System.Windows.Forms.AnchorStyles.Left Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) 247 | Me.cbRunRcloneBrowser.Location = New System.Drawing.Point(3, 8) 248 | Me.cbRunRcloneBrowser.Margin = New System.Windows.Forms.Padding(3, 3, 2, 3) 249 | Me.cbRunRcloneBrowser.Name = "cbRunRcloneBrowser" 250 | Me.cbRunRcloneBrowser.Size = New System.Drawing.Size(600, 23) 251 | Me.cbRunRcloneBrowser.TabIndex = 11 252 | Me.cbRunRcloneBrowser.Text = "Run Rclone Browser" 253 | Me.cbRunRcloneBrowser.UseVisualStyleBackColor = True 254 | ' 255 | 'MainForm 256 | ' 257 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) 258 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 259 | Me.ClientSize = New System.Drawing.Size(704, 216) 260 | Me.Controls.Add(Me.TableLayoutPanelMain) 261 | Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) 262 | Me.MaximizeBox = False 263 | Me.MaximumSize = New System.Drawing.Size(4320, 255) 264 | Me.MinimumSize = New System.Drawing.Size(720, 255) 265 | Me.Name = "MainForm" 266 | Me.Text = "RcloneBrowserLauncher" 267 | Me.TableLayoutPanelMain.ResumeLayout(False) 268 | Me.gbEndAction.ResumeLayout(False) 269 | Me.TableLayoutPanelEndAction.ResumeLayout(False) 270 | Me.TableLayoutPanelEndAction.PerformLayout() 271 | Me.gbSettings.ResumeLayout(False) 272 | Me.TableLayoutPanelSettings.ResumeLayout(False) 273 | Me.TableLayoutPanelSettings.PerformLayout() 274 | Me.TableLayoutPanelRun.ResumeLayout(False) 275 | Me.ResumeLayout(False) 276 | 277 | End Sub 278 | Friend WithEvents TableLayoutPanelMain As TableLayoutPanel 279 | Friend WithEvents gbSettings As GroupBox 280 | Friend WithEvents lbRclonePwd As Label 281 | Friend WithEvents lbRcloneBrowserPath As Label 282 | Friend WithEvents cbActivatePwd As CheckBox 283 | Friend WithEvents tbRclonePwd As TextBox 284 | Friend WithEvents cbRclonePath As Button 285 | Friend WithEvents tbRcloneBrowserPath As TextBox 286 | Friend WithEvents gbEndAction As GroupBox 287 | Friend WithEvents TableLayoutPanelSettings As TableLayoutPanel 288 | Friend WithEvents TableLayoutPanelEndAction As TableLayoutPanel 289 | Friend WithEvents cbEndAction As ComboBox 290 | Friend WithEvents cbActivateEndAction As CheckBox 291 | Friend WithEvents TableLayoutPanelRun As TableLayoutPanel 292 | Friend WithEvents cbRunRcloneBrowser As Button 293 | Friend WithEvents cbAbout As Button 294 | End Class 295 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/MainForm.vb: -------------------------------------------------------------------------------- 1 | '----------------------------------------------------------------------------------------------------------------------------------------------- 2 | ' 3 | ' This program is free software; you can redistribute it and/or 4 | ' modify it under the terms of the GNU General Public License 5 | ' as published by the Free Software Foundation; either version 2 6 | ' of the License, or (at your option) any later version. 7 | ' 8 | ' This program is distributed in the hope that it will be useful, 9 | ' but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | ' GNU General Public License for more details. 12 | ' 13 | ' You should have received a copy of the GNU General Public License 14 | ' along with this program; if not, write to the Free Software Foundation, 15 | ' Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 | ' 17 | ' Name : 18 | ' RcloneBrowserLauncher 19 | ' Author : 20 | ' Paul RENARD 21 | ' 22 | '----------------------------------------------------------------------------------------------------------------------------------------------- 23 | 24 | Imports System.IO 25 | Imports System.Threading 26 | Imports System.Configuration 27 | 28 | Public Class MainForm 29 | 30 | Private Sub MainForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load 31 | 32 | Me.Text = My.Application.Info.AssemblyName & " - v" & My.Application.Info.Version.ToString 33 | 34 | 'Delete / check for corrupted "user.config" file 35 | 36 | Try 37 | ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal) 38 | Catch exception As ConfigurationErrorsException 39 | File.Delete(exception.Filename) 40 | End Try 41 | 42 | 'Restore user settings 43 | 44 | If My.Settings.sRcloneBrowserPath <> String.Empty Then 45 | tbRcloneBrowserPath.Text = My.Settings.sRcloneBrowserPath 46 | End If 47 | 48 | If My.Settings.sRclonePwd <> String.Empty Then 49 | tbRclonePwd.Text = My.Settings.sRclonePwd 50 | End If 51 | AddHandler tbRclonePwd.TextChanged, AddressOf tbRclonePwd_TextChanged 52 | 53 | If My.Settings.bActivatePwd Then 54 | cbActivatePwd.Checked = True 55 | tbRclonePwd.Enabled = True 56 | End If 57 | AddHandler cbActivatePwd.CheckedChanged, AddressOf cbActivatePwd_CheckedChanged 58 | 59 | If My.Settings.bActivateEndAction Then 60 | cbActivateEndAction.Checked = True 61 | cbEndAction.Enabled = True 62 | End If 63 | AddHandler cbActivateEndAction.CheckedChanged, AddressOf cbActivateEndAction_CheckedChanged 64 | 65 | cbEndAction.Items.Add("Hibernate computer") 66 | cbEndAction.Items.Add("Shutdown computer") 67 | cbEndAction.Items.Add("Sleep computer") 68 | cbEndAction.SelectedIndex = My.Settings.iEndAction 69 | AddHandler cbEndAction.SelectedIndexChanged, AddressOf cbEndAction_SelectedIndexChanged 70 | 71 | 'Set focus on "run" button 72 | 73 | cbRunRcloneBrowser.Select() 74 | 75 | 'If started from RcloneExplorer... 76 | 77 | If Path.GetDirectoryName(My.Settings.sRcloneBrowserPath).ToLower = Environment.CurrentDirectory.ToLower Then 78 | 'If no end action, keep Form hidden and exit 79 | If Not cbActivateEndAction.Checked Then 80 | Visible = False 81 | ShowInTaskbar = False 82 | End If 83 | End If 84 | 85 | End Sub 86 | 87 | Private Sub MainForm_Shown(sender As Object, e As EventArgs) Handles Me.Shown 88 | 89 | 'If started from RcloneExplorer... 90 | 91 | If Path.GetDirectoryName(My.Settings.sRcloneBrowserPath).ToLower = Environment.CurrentDirectory.ToLower Then 92 | 'Run chosen action 93 | If cbActivateEndAction.Checked Then 94 | 'Fix for EndAction.StartPosition = CenterParent 95 | Me.Activate() 96 | 'Countdown before end action 97 | EndAction.ShowDialog() 98 | End If 99 | Application.Exit() 100 | End If 101 | 102 | End Sub 103 | 104 | Private Sub cbRclonePath_Click(sender As Object, e As EventArgs) Handles cbRclonePath.Click 105 | 106 | Dim sFilePath As String 107 | sFilePath = GetFileFromDialog("Select RcloneBrowser.exe", String.Empty, "EXE file|*.exe", True) 108 | If (sFilePath <> String.Empty) Then 109 | tbRcloneBrowserPath.Text = sFilePath 110 | My.Settings.sRcloneBrowserPath = sFilePath 111 | My.Settings.Save() 112 | End If 113 | 114 | End Sub 115 | 116 | Private Sub tbRclonePwd_TextChanged(sender As Object, e As EventArgs) 117 | 118 | My.Settings.sRclonePwd = tbRclonePwd.Text 119 | My.Settings.Save() 120 | 121 | End Sub 122 | 123 | Private Sub cbActivatePwd_CheckedChanged(sender As Object, e As EventArgs) 124 | 125 | If sender.checked Then 126 | tbRclonePwd.Enabled = True 127 | Else 128 | tbRclonePwd.Enabled = False 129 | End If 130 | My.Settings.bActivatePwd = cbActivatePwd.Checked 131 | My.Settings.Save() 132 | 133 | End Sub 134 | 135 | Private Sub cbEndAction_SelectedIndexChanged(sender As Object, e As EventArgs) 136 | 137 | My.Settings.iEndAction = cbEndAction.SelectedIndex 138 | My.Settings.Save() 139 | 140 | End Sub 141 | 142 | Private Sub cbActivateEndAction_CheckedChanged(sender As Object, e As EventArgs) 143 | 144 | If sender.checked Then 145 | cbEndAction.Enabled = True 146 | Else 147 | cbEndAction.Enabled = False 148 | End If 149 | My.Settings.bActivateEndAction = cbActivateEndAction.Checked 150 | My.Settings.Save() 151 | 152 | End Sub 153 | 154 | Private Sub cbRunRcloneBrowser_Click(sender As Object, e As EventArgs) Handles cbRunRcloneBrowser.Click 155 | 156 | If tbRcloneBrowserPath.Text.Trim <> String.Empty Then 157 | If File.Exists(tbRcloneBrowserPath.Text) Then 158 | If cbActivatePwd.Checked Then 159 | If tbRclonePwd.Text.Trim <> String.Empty Then 160 | If Process.GetProcessesByName("RcloneBrowser").Count = 0 Then 161 | Dim t = New Thread(Sub() 162 | Call RunCmdCommand(Path.GetFileName(tbRcloneBrowserPath.Text), False, Path.GetDirectoryName(tbRcloneBrowserPath.Text), "RCLONE_CONFIG_PASS", tbRclonePwd.Text) 163 | Application.Exit() 164 | End Sub) 165 | t.IsBackground = True 166 | t.Start() 167 | Else 168 | MessageBox.Show(Me, "Oops, Rclone Browser is already running.", My.Application.Info.AssemblyName, MessageBoxButtons.OK, MessageBoxIcon.Information) 169 | End If 170 | Else 171 | MessageBox.Show(Me, "Oops, empty rclone.conf password.", My.Application.Info.AssemblyName, MessageBoxButtons.OK, MessageBoxIcon.Information) 172 | End If 173 | Else 174 | If Process.GetProcessesByName("RcloneBrowser").Count = 0 Then 175 | Dim t = New Thread(Sub() 176 | Call RunCmdCommand(Path.GetFileName(tbRcloneBrowserPath.Text), False, Path.GetDirectoryName(tbRcloneBrowserPath.Text)) 177 | Application.Exit() 178 | End Sub) 179 | t.IsBackground = True 180 | t.Start() 181 | Else 182 | MessageBox.Show(Me, "Oops, Rclone Browser is already running.", My.Application.Info.AssemblyName, MessageBoxButtons.OK, MessageBoxIcon.Information) 183 | End If 184 | End If 185 | Else 186 | MessageBox.Show(Me, "Oops, can't find RcloneBrowser.exe location :" & vbNewLine & vbNewLine & tbRcloneBrowserPath.Text, My.Application.Info.AssemblyName, MessageBoxButtons.OK, MessageBoxIcon.Information) 187 | End If 188 | Else 189 | MessageBox.Show(Me, "Oops, empty RcloneBrowser.exe location.", My.Application.Info.AssemblyName, MessageBoxButtons.OK, MessageBoxIcon.Information) 190 | End If 191 | 192 | End Sub 193 | 194 | Private Sub cbAbout_Click(sender As Object, e As EventArgs) Handles cbAbout.Click 195 | ABOUT.StartPosition = FormStartPosition.CenterParent 196 | ABOUT.ShowDialog() 197 | End Sub 198 | 199 | End Class 200 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' Ce code a été généré par un outil. 4 | ' Version du runtime :4.0.30319.42000 5 | ' 6 | ' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | ' le code est régénéré. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'REMARQUE : Ce fichier étant généré automatiquement, ne le modifiez pas directement. Pour apporter des modifications, 18 | ' ou si vous rencontrez des erreurs de build dans ce fichier, accédez au Concepteur de projets 19 | ' (allez dans les propriétés du projet ou double-cliquez sur le nœud My Project dans 20 | ' l'Explorateur de solutions), puis apportez vos modifications sous l'onglet Application. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = false 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = false 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.RcloneBrowserLauncher.MainForm 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | MainForm 5 | false 6 | 0 7 | true 8 | 0 9 | false 10 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' Les informations générales relatives à un assembly dépendent de 6 | ' l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations 7 | ' associées à un assembly. 8 | 9 | ' Vérifiez les valeurs des attributs de l'assembly 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM 21 | 22 | 23 | ' Les informations de version pour un assembly se composent des quatre valeurs suivantes : 24 | ' 25 | ' Version principale 26 | ' Version secondaire 27 | ' Numéro de build 28 | ' Révision 29 | ' 30 | ' Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut 31 | ' en utilisant '*', comme indiqué ci-dessous : 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' Ce code a été généré par un outil. 4 | ' Version du runtime :4.0.30319.42000 5 | ' 6 | ' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | ' le code est régénéré. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder 19 | 'à l'aide d'un outil, tel que ResGen ou Visual Studio. 20 | 'Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen 21 | 'avec l'option /str ou régénérez votre projet VS. 22 | ''' 23 | ''' Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Retourne l'instance ResourceManager mise en cache utilisée par cette classe. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("RcloneBrowserLauncher.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Remplace la propriété CurrentUICulture du thread actuel pour toutes 51 | ''' les recherches de ressources à l'aide de cette classe de ressource fortement typée. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | 63 | ''' 64 | ''' Recherche une ressource localisée de type System.Drawing.Bitmap. 65 | ''' 66 | Friend ReadOnly Property coded_by() As System.Drawing.Bitmap 67 | Get 68 | Dim obj As Object = ResourceManager.GetObject("coded_by", resourceCulture) 69 | Return CType(obj,System.Drawing.Bitmap) 70 | End Get 71 | End Property 72 | 73 | ''' 74 | ''' Recherche une ressource localisée de type System.Drawing.Bitmap. 75 | ''' 76 | Friend ReadOnly Property information_small_white() As System.Drawing.Bitmap 77 | Get 78 | Dim obj As Object = ResourceManager.GetObject("information_small_white", resourceCulture) 79 | Return CType(obj,System.Drawing.Bitmap) 80 | End Get 81 | End Property 82 | 83 | ''' 84 | ''' Recherche une ressource localisée de type System.Drawing.Icon semblable à (Icône). 85 | ''' 86 | Friend ReadOnly Property RcloneBrowserLauncher() As System.Drawing.Icon 87 | Get 88 | Dim obj As Object = ResourceManager.GetObject("RcloneBrowserLauncher", resourceCulture) 89 | Return CType(obj,System.Drawing.Icon) 90 | End Get 91 | End Property 92 | End Module 93 | End Namespace 94 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\resources\pictures\coded_by.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\resources\pictures\information-small_white.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\resources\pictures\rclonebrowserlauncher.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' Ce code a été généré par un outil. 4 | ' Version du runtime :4.0.30319.42000 5 | ' 6 | ' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si 7 | ' le code est régénéré. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) 24 | 25 | #Region "Fonctionnalité Enregistrement automatique My.Settings" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | 57 | _ 60 | Public Property sRcloneBrowserPath() As String 61 | Get 62 | Return CType(Me("sRcloneBrowserPath"),String) 63 | End Get 64 | Set 65 | Me("sRcloneBrowserPath") = value 66 | End Set 67 | End Property 68 | 69 | _ 72 | Public Property sRclonePwd() As String 73 | Get 74 | Return CType(Me("sRclonePwd"),String) 75 | End Get 76 | Set 77 | Me("sRclonePwd") = value 78 | End Set 79 | End Property 80 | 81 | _ 84 | Public Property iEndAction() As Integer 85 | Get 86 | Return CType(Me("iEndAction"),Integer) 87 | End Get 88 | Set 89 | Me("iEndAction") = value 90 | End Set 91 | End Property 92 | 93 | _ 96 | Public Property bActivatePwd() As Boolean 97 | Get 98 | Return CType(Me("bActivatePwd"),Boolean) 99 | End Get 100 | Set 101 | Me("bActivatePwd") = value 102 | End Set 103 | End Property 104 | 105 | _ 108 | Public Property bActivateEndAction() As Boolean 109 | Get 110 | Return CType(Me("bActivateEndAction"),Boolean) 111 | End Get 112 | Set 113 | Me("bActivateEndAction") = value 114 | End Set 115 | End Property 116 | End Class 117 | End Namespace 118 | 119 | Namespace My 120 | 121 | _ 124 | Friend Module MySettingsProperty 125 | 126 | _ 127 | Friend ReadOnly Property Settings() As Global.RcloneBrowserLauncher.My.MySettings 128 | Get 129 | Return Global.RcloneBrowserLauncher.My.MySettings.Default 130 | End Get 131 | End Property 132 | End Module 133 | End Namespace 134 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | C:\Program Files\Rclone Browser\RcloneBrowser.exe 7 | 8 | 9 | 10 | 11 | 12 | 0 13 | 14 | 15 | True 16 | 17 | 18 | True 19 | 20 | 21 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/RcloneBrowserLauncher.vbproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {6CFC5013-BB93-4B32-B58E-371DB9C0759B} 8 | WinExe 9 | RcloneBrowserLauncher.My.MyApplication 10 | RcloneBrowserLauncher 11 | RcloneBrowserLauncher 12 | 512 13 | WindowsForms 14 | v4.0 15 | true 16 | Client 17 | 18 | 19 | AnyCPU 20 | true 21 | full 22 | true 23 | true 24 | bin\Debug\ 25 | 26 | 27 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 28 | 29 | 30 | AnyCPU 31 | pdbonly 32 | false 33 | true 34 | true 35 | bin\Release\ 36 | 37 | 38 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 39 | 40 | 41 | On 42 | 43 | 44 | Binary 45 | 46 | 47 | Off 48 | 49 | 50 | On 51 | 52 | 53 | resources\pictures\RcloneBrowserLauncher.ico 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | About.vb 73 | 74 | 75 | Form 76 | 77 | 78 | EndAction.vb 79 | 80 | 81 | Form 82 | 83 | 84 | Form 85 | 86 | 87 | MainForm.vb 88 | Form 89 | 90 | 91 | 92 | True 93 | Application.myapp 94 | 95 | 96 | True 97 | True 98 | Resources.resx 99 | 100 | 101 | True 102 | Settings.settings 103 | True 104 | 105 | 106 | 107 | 108 | 109 | 110 | About.vb 111 | 112 | 113 | EndAction.vb 114 | 115 | 116 | MainForm.vb 117 | 118 | 119 | VbMyResourcesResXFileCodeGenerator 120 | Resources.Designer.vb 121 | My.Resources 122 | Designer 123 | 124 | 125 | 126 | 127 | 128 | MyApplicationCodeGenerator 129 | Application.Designer.vb 130 | 131 | 132 | SettingsSingleFileGenerator 133 | My 134 | Settings.Designer.vb 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/SharedCode.vb: -------------------------------------------------------------------------------- 1 | '----------------------------------------------------------------------------------------------------------------------------------------------- 2 | ' 3 | ' This program is free software; you can redistribute it and/or 4 | ' modify it under the terms of the GNU General Public License 5 | ' as published by the Free Software Foundation; either version 2 6 | ' of the License, or (at your option) any later version. 7 | ' 8 | ' This program is distributed in the hope that it will be useful, 9 | ' but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | ' GNU General Public License for more details. 12 | ' 13 | ' You should have received a copy of the GNU General Public License 14 | ' along with this program; if not, write to the Free Software Foundation, 15 | ' Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 | ' 17 | ' Name : 18 | ' RcloneBrowserLauncher 19 | ' Author : 20 | ' Paul RENARD 21 | ' 22 | '----------------------------------------------------------------------------------------------------------------------------------------------- 23 | 24 | Module SharedCode 25 | 26 | Function GetFileFromDialog(Optional ByVal dialogTitle As String = "Select a file", 27 | Optional ByVal initialDirectory As String = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}", 28 | Optional ByVal extensionFilters As String = "All files (*.*)|*.*|All files (*.*)|*.*", 29 | Optional ByVal restoreDirectory As Boolean = True 30 | ) As String 31 | Dim fd As OpenFileDialog = New OpenFileDialog() 32 | 33 | fd.Title = dialogTitle 34 | fd.InitialDirectory = initialDirectory 35 | fd.Filter = extensionFilters 36 | fd.FilterIndex = 2 37 | fd.RestoreDirectory = True 38 | 39 | If fd.ShowDialog() = DialogResult.OK Then 40 | Return fd.FileName 41 | Else 42 | Return String.Empty 43 | End If 44 | End Function 45 | 46 | Sub RunCmdCommand(ByVal command As String, Optional ByVal isVisible As Boolean = True, Optional ByVal workingDirectoryPath As String = "", 47 | Optional ByVal environmentVareName As String = "", Optional ByVal environmenVarValue As String = "") 48 | Dim p = New Process() 49 | If Not isVisible Then 50 | p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden 51 | p.StartInfo.CreateNoWindow = True 52 | End If 53 | p.StartInfo.FileName = "cmd.exe" 54 | p.StartInfo.Arguments = "/K " & """" & command & " && EXIT" & """" 55 | p.StartInfo.UseShellExecute = False 56 | If environmentVareName <> String.Empty And environmenVarValue <> String.Empty Then 57 | p.StartInfo.EnvironmentVariables(environmentVareName) = environmenVarValue 58 | End If 59 | If Not workingDirectoryPath = String.Empty Then 60 | p.StartInfo.WorkingDirectory = workingDirectoryPath 61 | End If 62 | p.Start() 63 | End Sub 64 | 65 | 'Hibernate computer 66 | Sub Hibernate(Optional ByVal timeInSeconds As Integer = 0) 67 | Call RunCmdCommand("Shutdown -h -f", False) 68 | End Sub 69 | 70 | 'Sleep computer 71 | Sub Sleep() 72 | Application.SetSuspendState(PowerState.Suspend, True, True) 73 | End Sub 74 | 75 | 'Shutdown computer 76 | Sub Shutdown(Optional ByVal timeInSeconds As Integer = 0) 77 | Call RunCmdCommand("Shutdown -s -f -t " & timeInSeconds, False) 78 | End Sub 79 | 80 | End Module 81 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/WindowsAPI.vb: -------------------------------------------------------------------------------- 1 | Public Class NativeMethods 2 | 3 | Private Declare Function FlashWindowEx Lib "User32" (ByRef fwInfo As FLASHWINFO) As Boolean 4 | 5 | 'As defined by: http://msdn.microsoft.com/en-us/library/ms679347(v=vs.85).aspx 6 | Public Enum FlashWindowFlags As UInt32 7 | 'Stop flashing. The system restores the window to its original state. 8 | FLASHW_STOP = 0 9 | 'Flash the window caption. 10 | FLASHW_CAPTION = 1 11 | 'Flash the taskbar button. 12 | FLASHW_TRAY = 2 13 | 'Flash both the window caption and taskbar button. 14 | 'This is equivalent to setting the FLASHW_CAPTION | FLASHW_TRAY flags. 15 | FLASHW_ALL = 3 16 | 'Flash continuously, until the FLASHW_STOP flag is set. 17 | FLASHW_TIMER = 4 18 | 'Flash continuously until the window comes to the foreground. 19 | FLASHW_TIMERNOFG = 12 20 | End Enum 21 | 22 | Public Structure FLASHWINFO 23 | Public cbSize As UInt32 24 | Public hwnd As IntPtr 25 | Public dwFlags As FlashWindowFlags 26 | Public uCount As UInt32 27 | Public dwTimeout As UInt32 28 | End Structure 29 | 30 | Public Shared Function FlashWindow(ByRef handle As IntPtr, ByVal FlashTitleBar As Boolean, ByVal FlashTray As Boolean, ByVal FlashCount As Integer) As Boolean 31 | If handle = Nothing Then Return False 32 | 33 | Try 34 | Dim fwi As New FLASHWINFO 35 | With fwi 36 | .hwnd = handle 37 | If FlashTitleBar Then .dwFlags = .dwFlags Or FlashWindowFlags.FLASHW_CAPTION 38 | If FlashTray Then .dwFlags = .dwFlags Or FlashWindowFlags.FLASHW_TRAY 39 | .uCount = CUInt(FlashCount) 40 | If FlashCount = 0 Then .dwFlags = .dwFlags Or FlashWindowFlags.FLASHW_TIMERNOFG 41 | .dwTimeout = 0 'Use the default cursor blink rate. 42 | .cbSize = CUInt(System.Runtime.InteropServices.Marshal.SizeOf(fwi)) 43 | End With 44 | 45 | Return FlashWindowEx(fwi) 46 | Catch 47 | Return False 48 | End Try 49 | End Function 50 | 51 | End Class -------------------------------------------------------------------------------- /RcloneBrowserLauncher/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | C:\Program Files\Rclone Browser\RcloneBrowser.exe 32 | 33 | 34 | 35 | 36 | 37 | 0 38 | 39 | 40 | True 41 | 42 | 43 | True 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/RcloneBrowserLauncher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/RcloneBrowserLauncher.ico -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/RcloneBrowserLauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/RcloneBrowserLauncher.png -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/coded_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/coded_by.png -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/demo_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/demo_1.PNG -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/demo_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/demo_2.PNG -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/demo_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/demo_3.PNG -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/demo_4.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/demo_4.GIF -------------------------------------------------------------------------------- /RcloneBrowserLauncher/resources/pictures/information-small_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoxP/RcloneBrowserLauncher/fca2c1798f2066805f38f8f4b9d8b7059d19b468/RcloneBrowserLauncher/resources/pictures/information-small_white.png -------------------------------------------------------------------------------- /RcloneBrowserLauncher_Setup/RcloneBrowserLauncher_Setup.vdproj: -------------------------------------------------------------------------------- 1 | "DeployProject" 2 | { 3 | "VSVersion" = "3:800" 4 | "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" 5 | "IsWebType" = "8:FALSE" 6 | "ProjectName" = "8:RcloneBrowserLauncher_Setup" 7 | "LanguageId" = "3:1033" 8 | "CodePage" = "3:1252" 9 | "UILanguageId" = "3:1033" 10 | "SccProjectName" = "8:" 11 | "SccLocalPath" = "8:" 12 | "SccAuxPath" = "8:" 13 | "SccProvider" = "8:" 14 | "Hierarchy" 15 | { 16 | "Entry" 17 | { 18 | "MsmKey" = "8:_8390667890B941A0BF1E11E05F865157" 19 | "OwnerKey" = "8:_UNDEFINED" 20 | "MsmSig" = "8:_UNDEFINED" 21 | } 22 | "Entry" 23 | { 24 | "MsmKey" = "8:_UNDEFINED" 25 | "OwnerKey" = "8:_8390667890B941A0BF1E11E05F865157" 26 | "MsmSig" = "8:_UNDEFINED" 27 | } 28 | } 29 | "Configurations" 30 | { 31 | "Debug" 32 | { 33 | "DisplayName" = "8:Debug" 34 | "IsDebugOnly" = "11:TRUE" 35 | "IsReleaseOnly" = "11:FALSE" 36 | "OutputFilename" = "8:Debug\\RcloneBrowserLauncher_setup.msi" 37 | "PackageFilesAs" = "3:2" 38 | "PackageFileSize" = "3:-2147483648" 39 | "CabType" = "3:1" 40 | "Compression" = "3:2" 41 | "SignOutput" = "11:FALSE" 42 | "CertificateFile" = "8:" 43 | "PrivateKeyFile" = "8:" 44 | "TimeStampServer" = "8:" 45 | "InstallerBootstrapper" = "3:2" 46 | "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" 47 | { 48 | "Enabled" = "11:TRUE" 49 | "PromptEnabled" = "11:TRUE" 50 | "PrerequisitesLocation" = "2:1" 51 | "Url" = "8:" 52 | "ComponentsUrl" = "8:" 53 | "Items" 54 | { 55 | "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.6.1" 56 | { 57 | "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)" 58 | "ProductCode" = "8:.NETFramework,Version=v4.6.1" 59 | } 60 | } 61 | } 62 | } 63 | "Release" 64 | { 65 | "DisplayName" = "8:Release" 66 | "IsDebugOnly" = "11:FALSE" 67 | "IsReleaseOnly" = "11:TRUE" 68 | "OutputFilename" = "8:Release\\RcloneBrowserLauncher_setup.msi" 69 | "PackageFilesAs" = "3:2" 70 | "PackageFileSize" = "3:-2147483648" 71 | "CabType" = "3:1" 72 | "Compression" = "3:2" 73 | "SignOutput" = "11:FALSE" 74 | "CertificateFile" = "8:" 75 | "PrivateKeyFile" = "8:" 76 | "TimeStampServer" = "8:" 77 | "InstallerBootstrapper" = "3:2" 78 | "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" 79 | { 80 | "Enabled" = "11:TRUE" 81 | "PromptEnabled" = "11:TRUE" 82 | "PrerequisitesLocation" = "2:1" 83 | "Url" = "8:" 84 | "ComponentsUrl" = "8:" 85 | "Items" 86 | { 87 | "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.6.1" 88 | { 89 | "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)" 90 | "ProductCode" = "8:.NETFramework,Version=v4.6.1" 91 | } 92 | } 93 | } 94 | } 95 | } 96 | "Deployable" 97 | { 98 | "CustomAction" 99 | { 100 | } 101 | "DefaultFeature" 102 | { 103 | "Name" = "8:DefaultFeature" 104 | "Title" = "8:" 105 | "Description" = "8:" 106 | } 107 | "ExternalPersistence" 108 | { 109 | "LaunchCondition" 110 | { 111 | "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_F3BC3635D4CD4B2E8D450F64BD99D733" 112 | { 113 | "Name" = "8:.NET Framework" 114 | "Message" = "8:[VSDNETMSG]" 115 | "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1" 116 | "AllowLaterVersions" = "11:FALSE" 117 | "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728" 118 | } 119 | } 120 | } 121 | "File" 122 | { 123 | } 124 | "FileType" 125 | { 126 | } 127 | "Folder" 128 | { 129 | "{3C67513D-01DD-4637-8A68-80971EB9504F}:_40E692D6B3E048DB9F77F43C5A23C656" 130 | { 131 | "DefaultLocation" = "8:[ProgramFilesFolder][ProductName]" 132 | "Name" = "8:#1925" 133 | "AlwaysCreate" = "11:FALSE" 134 | "Condition" = "8:" 135 | "Transitive" = "11:FALSE" 136 | "Property" = "8:TARGETDIR" 137 | "Folders" 138 | { 139 | } 140 | } 141 | "{1525181F-901A-416C-8A58-119130FE478E}:_B44A993849D946F686FC3CF976A9431D" 142 | { 143 | "Name" = "8:#1916" 144 | "AlwaysCreate" = "11:FALSE" 145 | "Condition" = "8:" 146 | "Transitive" = "11:FALSE" 147 | "Property" = "8:DesktopFolder" 148 | "Folders" 149 | { 150 | } 151 | } 152 | "{1525181F-901A-416C-8A58-119130FE478E}:_FF739DE065184C09AF73C8789210C468" 153 | { 154 | "Name" = "8:#1919" 155 | "AlwaysCreate" = "11:FALSE" 156 | "Condition" = "8:" 157 | "Transitive" = "11:FALSE" 158 | "Property" = "8:ProgramMenuFolder" 159 | "Folders" 160 | { 161 | "{9EF0B969-E518-4E46-987F-47570745A589}:_0FD9328B0DB54B70916BC62DAA8B90E4" 162 | { 163 | "Name" = "8:RcloneBrowserLauncher" 164 | "AlwaysCreate" = "11:FALSE" 165 | "Condition" = "8:" 166 | "Transitive" = "11:FALSE" 167 | "Property" = "8:_E660EAD6E78949F998537CD0A09CA0D2" 168 | "Folders" 169 | { 170 | } 171 | } 172 | } 173 | } 174 | } 175 | "LaunchCondition" 176 | { 177 | } 178 | "Locator" 179 | { 180 | } 181 | "MsiBootstrapper" 182 | { 183 | "LangId" = "3:1033" 184 | "RequiresElevation" = "11:FALSE" 185 | } 186 | "Product" 187 | { 188 | "Name" = "8:Microsoft Visual Studio" 189 | "ProductName" = "8:RcloneBrowserLauncher" 190 | "ProductCode" = "8:{608A369C-5561-4D34-AC60-ADADA12A79A9}" 191 | "PackageCode" = "8:{2382CEA8-D27A-4C20-A83A-7301701067DD}" 192 | "UpgradeCode" = "8:{A797C01C-272C-40FE-BC0E-3E95C6398F04}" 193 | "AspNetVersion" = "8:4.0.30319.0" 194 | "RestartWWWService" = "11:FALSE" 195 | "RemovePreviousVersions" = "11:FALSE" 196 | "DetectNewerInstalledVersion" = "11:TRUE" 197 | "InstallAllUsers" = "11:FALSE" 198 | "ProductVersion" = "8:1.0.1" 199 | "Manufacturer" = "8:Paul RENARD" 200 | "ARPHELPTELEPHONE" = "8:" 201 | "ARPHELPLINK" = "8:" 202 | "Title" = "8:RcloneBrowserLauncher_Setup" 203 | "Subject" = "8:" 204 | "ARPCONTACT" = "8:Paul RENARD" 205 | "Keywords" = "8:" 206 | "ARPCOMMENTS" = "8:" 207 | "ARPURLINFOABOUT" = "8:" 208 | "ARPPRODUCTICON" = "8:_8390667890B941A0BF1E11E05F865157" 209 | "ARPIconIndex" = "3:32512" 210 | "SearchPath" = "8:" 211 | "UseSystemSearchPath" = "11:TRUE" 212 | "TargetPlatform" = "3:0" 213 | "PreBuildEvent" = "8:" 214 | "PostBuildEvent" = "8:" 215 | "RunPostBuildEvent" = "3:0" 216 | } 217 | "Registry" 218 | { 219 | "HKLM" 220 | { 221 | "Keys" 222 | { 223 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_4673058631904558AE2D0820626E46D4" 224 | { 225 | "Name" = "8:Software" 226 | "Condition" = "8:" 227 | "AlwaysCreate" = "11:FALSE" 228 | "DeleteAtUninstall" = "11:FALSE" 229 | "Transitive" = "11:FALSE" 230 | "Keys" 231 | { 232 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_DCD5149E1DFA48D0B16AB7AD609CAF16" 233 | { 234 | "Name" = "8:[Manufacturer]" 235 | "Condition" = "8:" 236 | "AlwaysCreate" = "11:FALSE" 237 | "DeleteAtUninstall" = "11:FALSE" 238 | "Transitive" = "11:FALSE" 239 | "Keys" 240 | { 241 | } 242 | "Values" 243 | { 244 | } 245 | } 246 | } 247 | "Values" 248 | { 249 | } 250 | } 251 | } 252 | } 253 | "HKCU" 254 | { 255 | "Keys" 256 | { 257 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_E39812FCC81040839168645B722DB596" 258 | { 259 | "Name" = "8:Software" 260 | "Condition" = "8:" 261 | "AlwaysCreate" = "11:FALSE" 262 | "DeleteAtUninstall" = "11:FALSE" 263 | "Transitive" = "11:FALSE" 264 | "Keys" 265 | { 266 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2FF0F1E524C840A1A1E44FDEB1F8A01A" 267 | { 268 | "Name" = "8:[Manufacturer]" 269 | "Condition" = "8:" 270 | "AlwaysCreate" = "11:FALSE" 271 | "DeleteAtUninstall" = "11:FALSE" 272 | "Transitive" = "11:FALSE" 273 | "Keys" 274 | { 275 | } 276 | "Values" 277 | { 278 | } 279 | } 280 | } 281 | "Values" 282 | { 283 | } 284 | } 285 | } 286 | } 287 | "HKCR" 288 | { 289 | "Keys" 290 | { 291 | } 292 | } 293 | "HKU" 294 | { 295 | "Keys" 296 | { 297 | } 298 | } 299 | "HKPU" 300 | { 301 | "Keys" 302 | { 303 | } 304 | } 305 | } 306 | "Sequences" 307 | { 308 | } 309 | "Shortcut" 310 | { 311 | "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_1A3A43FB9FED48E98D1849A54173BED6" 312 | { 313 | "Name" = "8:Rclone Browser Launcher" 314 | "Arguments" = "8:" 315 | "Description" = "8:" 316 | "ShowCmd" = "3:1" 317 | "IconIndex" = "3:32512" 318 | "Transitive" = "11:FALSE" 319 | "Target" = "8:_8390667890B941A0BF1E11E05F865157" 320 | "Folder" = "8:_0FD9328B0DB54B70916BC62DAA8B90E4" 321 | "WorkingFolder" = "8:_40E692D6B3E048DB9F77F43C5A23C656" 322 | "Icon" = "8:_8390667890B941A0BF1E11E05F865157" 323 | "Feature" = "8:" 324 | } 325 | "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_237DAC911A8448FBAA8FB44F4E7A7F4A" 326 | { 327 | "Name" = "8:Rclone Browser Launcher" 328 | "Arguments" = "8:" 329 | "Description" = "8:" 330 | "ShowCmd" = "3:1" 331 | "IconIndex" = "3:32512" 332 | "Transitive" = "11:FALSE" 333 | "Target" = "8:_8390667890B941A0BF1E11E05F865157" 334 | "Folder" = "8:_B44A993849D946F686FC3CF976A9431D" 335 | "WorkingFolder" = "8:_40E692D6B3E048DB9F77F43C5A23C656" 336 | "Icon" = "8:_8390667890B941A0BF1E11E05F865157" 337 | "Feature" = "8:" 338 | } 339 | } 340 | "UserInterface" 341 | { 342 | "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1BE889EDC9474C578029C463CED218F3" 343 | { 344 | "UseDynamicProperties" = "11:FALSE" 345 | "IsDependency" = "11:FALSE" 346 | "SourcePath" = "8:\\VsdBasicDialogs.wim" 347 | } 348 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_30FA2394569C4E7DA9C3C4E54BF8F5E8" 349 | { 350 | "Name" = "8:#1900" 351 | "Sequence" = "3:1" 352 | "Attributes" = "3:1" 353 | "Dialogs" 354 | { 355 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_0C5CD203FB564DEBAC1B1CEA40643184" 356 | { 357 | "Sequence" = "3:100" 358 | "DisplayName" = "8:Bienvenue" 359 | "UseDynamicProperties" = "11:TRUE" 360 | "IsDependency" = "11:FALSE" 361 | "SourcePath" = "8:\\VsdWelcomeDlg.wid" 362 | "Properties" 363 | { 364 | "BannerBitmap" 365 | { 366 | "Name" = "8:BannerBitmap" 367 | "DisplayName" = "8:#1001" 368 | "Description" = "8:#1101" 369 | "Type" = "3:8" 370 | "ContextData" = "8:Bitmap" 371 | "Attributes" = "3:4" 372 | "Setting" = "3:1" 373 | "UsePlugInResources" = "11:TRUE" 374 | } 375 | "CopyrightWarning" 376 | { 377 | "Name" = "8:CopyrightWarning" 378 | "DisplayName" = "8:#1002" 379 | "Description" = "8:#1102" 380 | "Type" = "3:3" 381 | "ContextData" = "8:" 382 | "Attributes" = "3:0" 383 | "Setting" = "3:1" 384 | "Value" = "8:#1202" 385 | "DefaultValue" = "8:#1202" 386 | "UsePlugInResources" = "11:TRUE" 387 | } 388 | "Welcome" 389 | { 390 | "Name" = "8:Welcome" 391 | "DisplayName" = "8:#1003" 392 | "Description" = "8:#1103" 393 | "Type" = "3:3" 394 | "ContextData" = "8:" 395 | "Attributes" = "3:0" 396 | "Setting" = "3:1" 397 | "Value" = "8:#1203" 398 | "DefaultValue" = "8:#1203" 399 | "UsePlugInResources" = "11:TRUE" 400 | } 401 | } 402 | } 403 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2028D49B87EC49FD9949CD1ACE131EA4" 404 | { 405 | "Sequence" = "3:200" 406 | "DisplayName" = "8:Dossier d'installation" 407 | "UseDynamicProperties" = "11:TRUE" 408 | "IsDependency" = "11:FALSE" 409 | "SourcePath" = "8:\\VsdFolderDlg.wid" 410 | "Properties" 411 | { 412 | "BannerBitmap" 413 | { 414 | "Name" = "8:BannerBitmap" 415 | "DisplayName" = "8:#1001" 416 | "Description" = "8:#1101" 417 | "Type" = "3:8" 418 | "ContextData" = "8:Bitmap" 419 | "Attributes" = "3:4" 420 | "Setting" = "3:1" 421 | "UsePlugInResources" = "11:TRUE" 422 | } 423 | "InstallAllUsersVisible" 424 | { 425 | "Name" = "8:InstallAllUsersVisible" 426 | "DisplayName" = "8:#1059" 427 | "Description" = "8:#1159" 428 | "Type" = "3:5" 429 | "ContextData" = "8:1;True=1;False=0" 430 | "Attributes" = "3:0" 431 | "Setting" = "3:0" 432 | "Value" = "3:1" 433 | "DefaultValue" = "3:1" 434 | "UsePlugInResources" = "11:TRUE" 435 | } 436 | } 437 | } 438 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_4B3BE18DAE48459FB6DE131E7C0DBD74" 439 | { 440 | "Sequence" = "3:300" 441 | "DisplayName" = "8:Confirmer l'installation" 442 | "UseDynamicProperties" = "11:TRUE" 443 | "IsDependency" = "11:FALSE" 444 | "SourcePath" = "8:\\VsdConfirmDlg.wid" 445 | "Properties" 446 | { 447 | "BannerBitmap" 448 | { 449 | "Name" = "8:BannerBitmap" 450 | "DisplayName" = "8:#1001" 451 | "Description" = "8:#1101" 452 | "Type" = "3:8" 453 | "ContextData" = "8:Bitmap" 454 | "Attributes" = "3:4" 455 | "Setting" = "3:1" 456 | "UsePlugInResources" = "11:TRUE" 457 | } 458 | } 459 | } 460 | } 461 | } 462 | "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_38435626E9F049658062D823369950D6" 463 | { 464 | "UseDynamicProperties" = "11:FALSE" 465 | "IsDependency" = "11:FALSE" 466 | "SourcePath" = "8:\\VsdUserInterface.wim" 467 | } 468 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_3FD8759ED0ED4DA38847AA2527CBB9DF" 469 | { 470 | "Name" = "8:#1901" 471 | "Sequence" = "3:1" 472 | "Attributes" = "3:2" 473 | "Dialogs" 474 | { 475 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_09B38460E70E4CC6BFB7C133B25B1921" 476 | { 477 | "Sequence" = "3:100" 478 | "DisplayName" = "8:Progression" 479 | "UseDynamicProperties" = "11:TRUE" 480 | "IsDependency" = "11:FALSE" 481 | "SourcePath" = "8:\\VsdProgressDlg.wid" 482 | "Properties" 483 | { 484 | "BannerBitmap" 485 | { 486 | "Name" = "8:BannerBitmap" 487 | "DisplayName" = "8:#1001" 488 | "Description" = "8:#1101" 489 | "Type" = "3:8" 490 | "ContextData" = "8:Bitmap" 491 | "Attributes" = "3:4" 492 | "Setting" = "3:1" 493 | "UsePlugInResources" = "11:TRUE" 494 | } 495 | "ShowProgress" 496 | { 497 | "Name" = "8:ShowProgress" 498 | "DisplayName" = "8:#1009" 499 | "Description" = "8:#1109" 500 | "Type" = "3:5" 501 | "ContextData" = "8:1;True=1;False=0" 502 | "Attributes" = "3:0" 503 | "Setting" = "3:0" 504 | "Value" = "3:1" 505 | "DefaultValue" = "3:1" 506 | "UsePlugInResources" = "11:TRUE" 507 | } 508 | } 509 | } 510 | } 511 | } 512 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_5596D3BCEAAB4243B2D2561055FB1868" 513 | { 514 | "Name" = "8:#1902" 515 | "Sequence" = "3:1" 516 | "Attributes" = "3:3" 517 | "Dialogs" 518 | { 519 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DEF40B763CCC414E8E20DA9A7252BEF3" 520 | { 521 | "Sequence" = "3:100" 522 | "DisplayName" = "8:Terminé" 523 | "UseDynamicProperties" = "11:TRUE" 524 | "IsDependency" = "11:FALSE" 525 | "SourcePath" = "8:\\VsdFinishedDlg.wid" 526 | "Properties" 527 | { 528 | "BannerBitmap" 529 | { 530 | "Name" = "8:BannerBitmap" 531 | "DisplayName" = "8:#1001" 532 | "Description" = "8:#1101" 533 | "Type" = "3:8" 534 | "ContextData" = "8:Bitmap" 535 | "Attributes" = "3:4" 536 | "Setting" = "3:1" 537 | "UsePlugInResources" = "11:TRUE" 538 | } 539 | "UpdateText" 540 | { 541 | "Name" = "8:UpdateText" 542 | "DisplayName" = "8:#1058" 543 | "Description" = "8:#1158" 544 | "Type" = "3:15" 545 | "ContextData" = "8:" 546 | "Attributes" = "3:0" 547 | "Setting" = "3:1" 548 | "Value" = "8:#1258" 549 | "DefaultValue" = "8:#1258" 550 | "UsePlugInResources" = "11:TRUE" 551 | } 552 | } 553 | } 554 | } 555 | } 556 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_73DB74AFEC574FB59001E6A394DF33F9" 557 | { 558 | "Name" = "8:#1902" 559 | "Sequence" = "3:2" 560 | "Attributes" = "3:3" 561 | "Dialogs" 562 | { 563 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2A0258C68153406B82CF51F2D92F9735" 564 | { 565 | "Sequence" = "3:100" 566 | "DisplayName" = "8:Terminé" 567 | "UseDynamicProperties" = "11:TRUE" 568 | "IsDependency" = "11:FALSE" 569 | "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" 570 | "Properties" 571 | { 572 | "BannerBitmap" 573 | { 574 | "Name" = "8:BannerBitmap" 575 | "DisplayName" = "8:#1001" 576 | "Description" = "8:#1101" 577 | "Type" = "3:8" 578 | "ContextData" = "8:Bitmap" 579 | "Attributes" = "3:4" 580 | "Setting" = "3:1" 581 | "UsePlugInResources" = "11:TRUE" 582 | } 583 | } 584 | } 585 | } 586 | } 587 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B5D3E18C872041A69BAC33245E3BE989" 588 | { 589 | "Name" = "8:#1900" 590 | "Sequence" = "3:2" 591 | "Attributes" = "3:1" 592 | "Dialogs" 593 | { 594 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C2DD16DC64434A09B732120E9F51CB34" 595 | { 596 | "Sequence" = "3:300" 597 | "DisplayName" = "8:Confirmer l'installation" 598 | "UseDynamicProperties" = "11:TRUE" 599 | "IsDependency" = "11:FALSE" 600 | "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" 601 | "Properties" 602 | { 603 | "BannerBitmap" 604 | { 605 | "Name" = "8:BannerBitmap" 606 | "DisplayName" = "8:#1001" 607 | "Description" = "8:#1101" 608 | "Type" = "3:8" 609 | "ContextData" = "8:Bitmap" 610 | "Attributes" = "3:4" 611 | "Setting" = "3:1" 612 | "UsePlugInResources" = "11:TRUE" 613 | } 614 | } 615 | } 616 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F7B1C8D5D1F740D19F2375ABF28D2770" 617 | { 618 | "Sequence" = "3:200" 619 | "DisplayName" = "8:Dossier d'installation" 620 | "UseDynamicProperties" = "11:TRUE" 621 | "IsDependency" = "11:FALSE" 622 | "SourcePath" = "8:\\VsdAdminFolderDlg.wid" 623 | "Properties" 624 | { 625 | "BannerBitmap" 626 | { 627 | "Name" = "8:BannerBitmap" 628 | "DisplayName" = "8:#1001" 629 | "Description" = "8:#1101" 630 | "Type" = "3:8" 631 | "ContextData" = "8:Bitmap" 632 | "Attributes" = "3:4" 633 | "Setting" = "3:1" 634 | "UsePlugInResources" = "11:TRUE" 635 | } 636 | } 637 | } 638 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_FB2C8F44F5F94831BF88C12AB1A0B40F" 639 | { 640 | "Sequence" = "3:100" 641 | "DisplayName" = "8:Bienvenue" 642 | "UseDynamicProperties" = "11:TRUE" 643 | "IsDependency" = "11:FALSE" 644 | "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" 645 | "Properties" 646 | { 647 | "BannerBitmap" 648 | { 649 | "Name" = "8:BannerBitmap" 650 | "DisplayName" = "8:#1001" 651 | "Description" = "8:#1101" 652 | "Type" = "3:8" 653 | "ContextData" = "8:Bitmap" 654 | "Attributes" = "3:4" 655 | "Setting" = "3:1" 656 | "UsePlugInResources" = "11:TRUE" 657 | } 658 | "CopyrightWarning" 659 | { 660 | "Name" = "8:CopyrightWarning" 661 | "DisplayName" = "8:#1002" 662 | "Description" = "8:#1102" 663 | "Type" = "3:3" 664 | "ContextData" = "8:" 665 | "Attributes" = "3:0" 666 | "Setting" = "3:1" 667 | "Value" = "8:#1202" 668 | "DefaultValue" = "8:#1202" 669 | "UsePlugInResources" = "11:TRUE" 670 | } 671 | "Welcome" 672 | { 673 | "Name" = "8:Welcome" 674 | "DisplayName" = "8:#1003" 675 | "Description" = "8:#1103" 676 | "Type" = "3:3" 677 | "ContextData" = "8:" 678 | "Attributes" = "3:0" 679 | "Setting" = "3:1" 680 | "Value" = "8:#1203" 681 | "DefaultValue" = "8:#1203" 682 | "UsePlugInResources" = "11:TRUE" 683 | } 684 | } 685 | } 686 | } 687 | } 688 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F2A3B5DE93C14717A43379A91D48B1B4" 689 | { 690 | "Name" = "8:#1901" 691 | "Sequence" = "3:2" 692 | "Attributes" = "3:2" 693 | "Dialogs" 694 | { 695 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B513350D33B4414DA5EA6EB4C7BB35BE" 696 | { 697 | "Sequence" = "3:100" 698 | "DisplayName" = "8:Progression" 699 | "UseDynamicProperties" = "11:TRUE" 700 | "IsDependency" = "11:FALSE" 701 | "SourcePath" = "8:\\VsdAdminProgressDlg.wid" 702 | "Properties" 703 | { 704 | "BannerBitmap" 705 | { 706 | "Name" = "8:BannerBitmap" 707 | "DisplayName" = "8:#1001" 708 | "Description" = "8:#1101" 709 | "Type" = "3:8" 710 | "ContextData" = "8:Bitmap" 711 | "Attributes" = "3:4" 712 | "Setting" = "3:1" 713 | "UsePlugInResources" = "11:TRUE" 714 | } 715 | "ShowProgress" 716 | { 717 | "Name" = "8:ShowProgress" 718 | "DisplayName" = "8:#1009" 719 | "Description" = "8:#1109" 720 | "Type" = "3:5" 721 | "ContextData" = "8:1;True=1;False=0" 722 | "Attributes" = "3:0" 723 | "Setting" = "3:0" 724 | "Value" = "3:1" 725 | "DefaultValue" = "3:1" 726 | "UsePlugInResources" = "11:TRUE" 727 | } 728 | } 729 | } 730 | } 731 | } 732 | } 733 | "MergeModule" 734 | { 735 | } 736 | "ProjectOutput" 737 | { 738 | "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8390667890B941A0BF1E11E05F865157" 739 | { 740 | "SourcePath" = "8:..\\RcloneBrowserLauncher\\obj\\Release\\RcloneBrowserLauncher.exe" 741 | "TargetName" = "8:" 742 | "Tag" = "8:" 743 | "Folder" = "8:_40E692D6B3E048DB9F77F43C5A23C656" 744 | "Condition" = "8:" 745 | "Transitive" = "11:FALSE" 746 | "Vital" = "11:TRUE" 747 | "ReadOnly" = "11:FALSE" 748 | "Hidden" = "11:FALSE" 749 | "System" = "11:FALSE" 750 | "Permanent" = "11:FALSE" 751 | "SharedLegacy" = "11:FALSE" 752 | "PackageAs" = "3:1" 753 | "Register" = "3:1" 754 | "Exclude" = "11:FALSE" 755 | "IsDependency" = "11:FALSE" 756 | "IsolateTo" = "8:" 757 | "ProjectOutputGroupRegister" = "3:1" 758 | "OutputConfiguration" = "8:" 759 | "OutputGroupCanonicalName" = "8:Built" 760 | "OutputProjectGuid" = "8:{6CFC5013-BB93-4B32-B58E-371DB9C0759B}" 761 | "ShowKeyOutput" = "11:TRUE" 762 | "ExcludeFilters" 763 | { 764 | } 765 | } 766 | } 767 | } 768 | } 769 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman --------------------------------------------------------------------------------