7 Commits

Author SHA1 Message Date
6b59b0ca4a update gitlab-ci.yml 2022-04-29 18:41:21 +00:00
74cc1ebc26 update readme 2022-04-29 18:40:15 +00:00
e182198349 Fix content module 2022-04-29 16:00:15 +02:00
8f44c75e9a Update swade fr content 2022-04-29 15:30:12 +02:00
1d10fadeed Merge branch 'LeRatierBretonnien-master-patch-97866' into 'master'
Update module/module.json

See merge request sasmira/swade-fr-content!19
2022-04-29 13:26:57 +00:00
e2e9c62cc1 Update module/module.json 2022-04-29 13:26:40 +00:00
3634fe0ebf Use another server for measures 2022-02-19 09:30:35 +01:00
4 changed files with 19 additions and 20 deletions

View File

@ -10,13 +10,13 @@ stages:
build:
stage: build
script:
- zip swade-fr.zip -r module -x ".*"
- zip swade-fr-content.zip -r module -x ".*"
artifacts:
expire_in: never
name: swade-fr
name: swade-fr-content
when: on_success
paths:
- swade-fr.zip
- swade-fr-content.zip
when: on_success
only:
- tags

View File

@ -8,7 +8,7 @@ Module pour système de jeu SWADE pour [Foundry Virtual Tabletop](https://foundr
## Installer avec le manifeste
Copier ce lien et chargez-le dans le menu module de Foundry.
> https://gitlab.com/sasmira/swade-fr/-/raw/master/module/module.json
> https://gitlab.com/sasmira/swade-fr-content/-/raw/master/module/module.json
### Modules requis pour le français
Pour traduire les éléments de base de FoundryVTT (interface), il vous faut installer et activer le module suivant :

View File

@ -1,6 +1,6 @@
{
"name": "swade-fr",
"title": "SWADE Core Rules en Français - *NON-OFFICIEL*",
"name": "swade-fr-content",
"title": "SWADE Content en Français - *NON-OFFICIEL*",
"description": "Traduction française du système SWADE <p>*** Join the official Discord server: <a href=\"https://discord.gg/foundryvtt\"> Official Discord</a></p><p>*** Rejoignez la communauté Francophone: <a href=\"https://discord.gg/pPSDNJk\">Francophone Discord</a></p>",
"author": "Team Swade, La Fonderie",
"authors": [
@ -42,7 +42,7 @@
],
"url": "https://gitlab.com/sasmira/swade-fr",
"flags": {},
"version": "0.19.0.3",
"version": "0.20.0.0",
"minimumCoreVersion": "0.7.9",
"compatibleCoreVersion": "9",
"scripts": [],
@ -52,13 +52,7 @@
"styles": [
"swade-fr.css"
],
"languages": [
{
"lang": "fr",
"name": "French (FRANCE)",
"path": "fr.json"
}
],
"languages": [],
"packs": [],
"system": [],
"dependencies": [
@ -71,6 +65,10 @@
"name": "swade",
"type": "system"
},
{
"name": "swade-fr",
"type": "module"
},
{
"name": "dice-so-nice",
"type": "module",
@ -78,9 +76,9 @@
}
],
"socket": false,
"manifest": "https://gitlab.com/sasmira/swade-fr/-/raw/master/module/module.json",
"download": "https://gitlab.com/sasmira/swade-fr/-/jobs/artifacts/v0.19.0.3/raw/swade-fr.zip?job=build",
"manifest": "https://gitlab.com/sasmira/swade-fr-content/-/raw/master/module/module.json",
"download": "https://gitlab.com/sasmira/swade-fr-content/-/jobs/artifacts/v0.20.0.0/raw/swade-fr-content.zip?job=build",
"protected": false,
"coreTranslation": false,
"library": false
}
}

View File

@ -50,7 +50,7 @@ Hooks.once('init', () => {
console.log("BABELE LOADED !!!");
Babele.get().register({
module: 'swade-fr',
module: 'swade-fr-content',
lang: 'fr',
dir: 'compendiums'
});
@ -152,7 +152,8 @@ function registerUsageCount( registerKey ) {
game.settings.set(registerKey, "world-key", worldKey )
}
// Simple API counter
$.ajax(`https://jdr.lahiette.com/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.data.version}"`)
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.data.version}"`
$.ajax(regURL)
/* -------------------------------------------- */
}
}
@ -161,7 +162,7 @@ function registerUsageCount( registerKey ) {
Hooks.once('ready', () => {
//FolderTranslate.translateFolders()
registerUsageCount("swade-fr")
registerUsageCount("swade-fr-content")
});