-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #184 from terreng/spanish
Spanish translations
- Loading branch information
Showing
22 changed files
with
2,430 additions
and
812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Simple Web Server | ||
|
||
[Download](https://simplewebserver.org/download/) • [Documentation](https://simplewebserver.org/docs/options.html) • [Build from source](https://simplewebserver.org/docs/build.html) | ||
|
||
Crear servidores web locales con solo unos pocos clicks, con una interfaz fácil de usar. | ||
|
||
Fácil de configurar | ||
Cambie las opciones del servidor con solo unos pocos clicks. | ||
|
||
Ejecute múltiples & en segundo plano | ||
Ejecute múltiples servidores web al mismo tiempo, incluso cuando la app esta cerrada. | ||
|
||
Aplicaciones de Una Página | ||
Active mod rewrite para SPAs con un solo click. | ||
|
||
![screenshots](https://user-images.githubusercontent.com/11605395/163694811-46e3b79c-a187-4c78-b622-6250a6d5d9d0.jpeg) | ||
|
||
Simple Web Server is a continuation of [Web Server for Chrome](https://github.com/kzahel/web-server-chrome). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
require('dotenv').config(); | ||
const { notarize } = require('electron-notarize'); | ||
const { notarize } = require('@electron/notarize'); | ||
|
||
exports.default = async function notarizing(context) { | ||
|
||
|
@@ -12,11 +11,10 @@ exports.default = async function notarizing(context) { | |
console.log("Notarizing..."); | ||
|
||
return await notarize({ | ||
appBundleId: 'org.simplewebserver.simplewebserver', | ||
tool: "notarytool", | ||
appPath: `${appOutDir}/${appName}.app`, | ||
appleId: process.env.APPLEID, | ||
appleIdPassword: "@keychain:ElectronSigningAppleID", | ||
teamId: process.env.TEAMID, | ||
ascProvider: process.env.TEAMID | ||
keychainProfile: "SWS_Electron_Signing" | ||
}); | ||
|
||
// xcrun notarytool store-credentials "SWS_Electron_Signing" --apple-id "[email protected]" --team-id "RXXXXXXXXX" --password "foos-bars-bazz-bang" | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.