Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | v2.0.2 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | origin/1.2.x | origin/1.1.x | origin/1.5 | media-uploading | v2.0.2 |
Files: | files | file ages | folders |
SHA3-256: |
6b99252bf8a15f3c1d4c95b5bd335e70 |
User & Date: | develop@senooken.jp 2023-08-21 14:31:53 |
Context
2023-09-04
| ||
15:03 | Merge branch 'main' of tak4/gnusocial-jp into main check-in: e72f9e9600 user: gogitservice@gmail.com tags: trunk, origin/1.2.x, origin/1.1.x, origin/1.5, media-uploading, main | |
2023-09-03
| ||
10:18 | Fix duplicate notice on 'unlike', and fix 'unlike' related problems. check-in: 814af2129a user: tak4@mx.bibi.moe tags: trunk, origin/1.2.x, origin/1.1.x, origin/1.5, media-uploading, main | |
2023-08-28
| ||
04:32 | PHP 8.2対応 check-in: 279fe83c38 user: suwako@076.moe tags: trunk, origin/1.2.x, origin/1.1.x, origin/1.5, media-uploading, suwako/main | |
2023-08-21
| ||
14:31 | v2.0.2 Leaf check-in: 6b99252bf8 user: develop@senooken.jp tags: trunk, origin/1.2.x, origin/1.1.x, origin/1.5, media-uploading, v2.0.2 | |
13:48 | Merge branch 'fix-duplicate-and-tree' of tak4/gnusocial-jp into main check-in: 9f9b4b09c5 user: gogitservice@gmail.com tags: trunk, origin/1.2.x, origin/1.1.x, origin/1.5, media-uploading | |
Changes
Changes to CHANGELOG.md.
1 2 3 4 5 6 7 8 9 | # GNU social - Log of Changes ## 2.0.0 - THIS. IS. GNU SOCIAL!!! [WIP] Release name chosen after 300 by Frank Miller where the main protagonist Leonidas, King of Sparta, declines peace with the Persians, after being disrespected, by shouting at the Persian Messenger "This is Sparta!" and kicking him into a large well proceeded by the killing of the other Persian messengers. ### Major changes from previous release: | > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # GNU social - Log of Changes ## 2.0.2 - 2023-08-21 ### Added - Docker for local development. ### Fixed - Duplicated post with activity (like/reply/repost) between remote GNU social server and keep conversation tree ((URL)[https://notabug.org/gnusocialjp/gnusocial/issues/10)]). ## 2.0.0 - THIS. IS. GNU SOCIAL!!! [WIP] Release name chosen after 300 by Frank Miller where the main protagonist Leonidas, King of Sparta, declines peace with the Persians, after being disrespected, by shouting at the Persian Messenger "This is Sparta!" and kicking him into a large well proceeded by the killing of the other Persian messengers. ### Major changes from previous release: |
︙ | ︙ |
Changes to CREDITS.md.
1 2 3 4 | Credits for GNU social ====================== The following is an incomplete list of developers who've worked on GNU social, or its predecessors | | < < < > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | Credits for GNU social ====================== The following is an incomplete list of developers who've worked on GNU social, or its predecessors StatusNet and Free Social. Credits for GNU social v2.0.0 ------- * Diogo Cordeiro * Alexei Sorokin * Bruno Casteleiro Credits for GNU social v1 ------------------------ |
︙ | ︙ |
Changes to README.md.
︙ | ︙ | |||
110 111 112 113 114 115 116 | * The #social IRC channel at irc.libera.chat <https://libera.chat/>. * The #social:libera.chat Matrix room * The bridged XMPP room at <xmpp:gnusocial@conference.bka.li?join> * The GNU social website <https://gnusocial.rocks/> * GNU social has a bug tracker for any defects you may find, or ideas for | | | < < < < < < < | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | * The #social IRC channel at irc.libera.chat <https://libera.chat/>. * The #social:libera.chat Matrix room * The bridged XMPP room at <xmpp:gnusocial@conference.bka.li?join> * The GNU social website <https://gnusocial.rocks/> * GNU social has a bug tracker for any defects you may find, or ideas for making things better. <https://notabug.org/gnusocialjp/gnusocial/issues> * Patches are welcome, preferably to our repository on notabug.org. <https://notabug.org/gnusocialjp/gnusocial> ## Credits An incomplete list of developers who've worked on GNU social, or its predecessors StatusNet and Free Social has been made available in `CREDITS.md`. |
Changes to lib/util/framework.php.
︙ | ︙ | |||
30 31 32 33 34 35 36 | defined('GNUSOCIAL') || die(); define('GNUSOCIAL_ENGINE', 'GNU social'); define('GNUSOCIAL_ENGINE_URL', 'https://gnusocial.rocks/'); define('GNUSOCIAL_ENGINE_REPO_URL', 'https://notabug.org/diogo/gnu-social/'); // Change to https://git.gnu.io/gnu/gnu-social | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | defined('GNUSOCIAL') || die(); define('GNUSOCIAL_ENGINE', 'GNU social'); define('GNUSOCIAL_ENGINE_URL', 'https://gnusocial.rocks/'); define('GNUSOCIAL_ENGINE_REPO_URL', 'https://notabug.org/diogo/gnu-social/'); // Change to https://git.gnu.io/gnu/gnu-social define('GNUSOCIAL_BASE_VERSION', '2.0.2'); define('GNUSOCIAL_LIFECYCLE', 'beta0'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE); define('GNUSOCIAL_CODENAME', 'THIS. IS. GNU social!!!!'); define('AVATAR_PROFILE_SIZE', 96); |
︙ | ︙ |