Update some meta-data

New site url
New contact email
New year!
This commit is contained in:
Maxime Quandalle 2016-01-02 17:15:19 +01:00
parent 847780760a
commit 272f67f0c6
6 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
FROM meteorhacks/meteord:onbuild FROM meteorhacks/meteord:onbuild
MAINTAINER Maxime Quandalle <maxime@quandalle.com> MAINTAINER Maxime Quandalle <mquandalle@wekan.io>
# Run as you wish! # Run as you wish!
# docker run -d --name wekan-db mongo # docker run -d --name wekan-db mongo

View file

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2014-2015 Yasar Icli, Maxime Quandalle Copyright (c) 2014-2016 The Wekan Team
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -51,7 +51,7 @@ Attachments.files.before.insert((userId, doc) => {
// files that the browser will just execute if we don't serve them with the // files that the browser will just execute if we don't serve them with the
// appropriate `application/octet-stream` MIME header which can lead to user // appropriate `application/octet-stream` MIME header which can lead to user
// data leaks. I imagine other formats (like PDF) can also be attack vectors. // data leaks. I imagine other formats (like PDF) can also be attack vectors.
// See https://github.com/libreboard/libreboard/issues/99 // See https://github.com/wekan/wekan/issues/99
// XXX Should we use `beforeWrite` option of CollectionFS instead of // XXX Should we use `beforeWrite` option of CollectionFS instead of
// collection-hooks? // collection-hooks?
if (!file.isImage()) { if (!file.isImage()) {

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "Wekan",
"version": "1.0.0", "version": "0.10.1",
"description": "The open-source Trello-like kanban", "description": "The open-source Trello-like kanban",
"private": true, "private": true,
"scripts": { "scripts": {
@ -15,7 +15,7 @@
"bugs": { "bugs": {
"url": "https://github.com/wekan/wekan/issues" "url": "https://github.com/wekan/wekan/issues"
}, },
"homepage": "http://wekan.io", "homepage": "https://wekan.io",
"devDependencies": { "devDependencies": {
"babel-eslint": "4.1.3", "babel-eslint": "4.1.3",
"eslint": "1.7.3", "eslint": "1.7.3",

View file

@ -57,13 +57,13 @@ const pkgdef :Spk.PackageDefinition = (
market = (svg = embed "meta/icons/wekan-150.svg"), market = (svg = embed "meta/icons/wekan-150.svg"),
), ),
website = "http://libreboard.com", website = "https://wekan.io",
codeUrl = "https://github.com/wekan/wekan", codeUrl = "https://github.com/wekan/wekan",
license = (openSource = mit), license = (openSource = mit),
categories = [productivity, office], categories = [productivity, office],
author = ( author = (
contactEmail = "maxime@quandalle.com", contactEmail = "mquandalle@wekan.io",
pgpSignature = embed "meta/mquandalle-pgp-sig", pgpSignature = embed "meta/mquandalle-pgp-sig",
), ),

View file

@ -126,10 +126,10 @@ if (isSandstorm && Meteor.isServer) {
updateUserPermissions(doc._id, doc.services.sandstorm.permissions); updateUserPermissions(doc._id, doc.services.sandstorm.permissions);
}); });
// LibreBoard v0.8 didnt implement the Sandstorm sharing model and instead // Wekan v0.8 didnt implement the Sandstorm sharing model and instead kept
// kept the visibility setting (“public” or “private”) in the UI as does the // the visibility setting (“public” or “private”) in the UI as does the main
// main Meteor application. We need to enforce “public” visibility as the // Meteor application. We need to enforce “public” visibility as the sharing
// sharing is now handled by Sandstorm. // is now handled by Sandstorm.
// See https://github.com/wekan/wekan/issues/346 // See https://github.com/wekan/wekan/issues/346
Migrations.add('enforce-public-visibility-for-sandstorm', () => { Migrations.add('enforce-public-visibility-for-sandstorm', () => {
Boards.update('sandstorm', { $set: { permission: 'public' }}); Boards.update('sandstorm', { $set: { permission: 'public' }});